Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions et_replay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
To install `et_replay`, use the following commands:

```bash
$ git clone --recurse-submodules git@github.com:facebookresearch/param.git
$ git clone https://github.com/pytorch-labs/chakra_replay/
$ conda create -n et_replay python=3.10
$ conda activate et_replay
$ cd param
$ cd chakra_replay
$ pip3 install -r requirements.txt
$ cd et_replay
$ pip3 install .
```

Expand Down
3 changes: 0 additions & 3 deletions et_replay/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
from et_replay.execution_trace import ExecutionTrace

__all__ = ["ExecutionTrace"]
2 changes: 1 addition & 1 deletion et_replay/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
]

[tool.setuptools.package-dir]
"et_replay" = "."
"et_replay" = "et_replay"

[project.scripts]
comm_replay = "et_replay.tools.comm_replay:main"
Expand Down
2 changes: 1 addition & 1 deletion et_replay/tests/test_execution_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import unittest

from et_replay import ExecutionTrace
from et_replay.execution_trace import ExecutionTrace
from et_replay.tools.validate_trace import TraceValidator

CURR_DIR = os.path.dirname(os.path.realpath(__file__))
Expand Down
Loading