Skip to content

Commit 37c804d

Browse files
briancoutinhofacebook-github-bot
authored andcommitted
add toml and readme changes (#210)
Summary: Pull Request resolved: #210 As above X-link: meta-pytorch/chakra_replay#3 Reviewed By: shengfukevin Differential Revision: D75995926 Pulled By: briancoutinho fbshipit-source-id: 85289666b10d3654cf26c022cdea55677f88eb31
1 parent b5ea35f commit 37c804d

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

et_replay/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
To install `et_replay`, use the following commands:
66

77
```bash
8-
$ git clone --recurse-submodules git@github.com:facebookresearch/param.git
8+
$ git clone https://github.com/pytorch-labs/chakra_replay/
99
$ conda create -n et_replay python=3.10
1010
$ conda activate et_replay
11-
$ cd param
11+
$ cd chakra_replay
1212
$ pip3 install -r requirements.txt
13-
$ cd et_replay
1413
$ pip3 install .
1514
```
1615

et_replay/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from et_replay.execution_trace import ExecutionTrace
2-
3-
__all__ = ["ExecutionTrace"]

et_replay/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
]
1313

1414
[tool.setuptools.package-dir]
15-
"et_replay" = "."
15+
"et_replay" = "et_replay"
1616

1717
[project.scripts]
1818
comm_replay = "et_replay.tools.comm_replay:main"

et_replay/tests/test_execution_trace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import unittest
55

6-
from et_replay import ExecutionTrace
6+
from et_replay.execution_trace import ExecutionTrace
77
from et_replay.tools.validate_trace import TraceValidator
88

99
CURR_DIR = os.path.dirname(os.path.realpath(__file__))

0 commit comments

Comments
 (0)