-
Notifications
You must be signed in to change notification settings - Fork 73
Update HolisticTraceAnalysis dependency to the traceinsight package #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,12 +28,7 @@ jobs: | |
| - name: Install HTA | ||
| run: | | ||
| git clone https://github.com/facebookresearch/HolisticTraceAnalysis.git | ||
| cd HolisticTraceAnalysis | ||
| git checkout d731cc2e2249976c97129d409a83bd53d93051f6 | ||
| git submodule update --init | ||
| pip install -r requirements.txt | ||
| pip install -e . | ||
| pip install traceinsight | ||
|
Comment on lines
29
to
+31
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ibid |
||
| - name: Install Dependencies | ||
| run: | | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,15 +36,10 @@ $ pip install . | |
| ``` | ||
|
|
||
| ### Step 4: Install Holistic Trace Analysis | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, similar to above comments, just remove this? |
||
| Installing Holistic Trace Analysis is necessary for Trace link. | ||
| Installing Holistic Trace Analysis (published on PyPI as `traceinsight`) is necessary for Trace link. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's clarify: "published on PyPI as |
||
|
|
||
| ```bash | ||
| $ git clone https://github.com/facebookresearch/HolisticTraceAnalysis.git | ||
| $ cd HolisticTraceAnalysis | ||
| $ git checkout d731cc2e2249976c97129d409a83bd53d93051f6 | ||
| $ git submodule update --init | ||
| $ pip install -r requirements.txt | ||
| $ pip install -e . | ||
| $ pip install traceinsight | ||
| ``` | ||
|
|
||
| ### Step 5: Uninstalling Chakra | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ dependencies = [ | |
| "graphviz", | ||
| "networkx", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we add >=3.6.1? |
||
| "pydot", | ||
| "HolisticTraceAnalysis @ git+https://github.com/facebookresearch/HolisticTraceAnalysis.git@d731cc2e2249976c97129d409a83bd53d93051f6" | ||
| "traceinsight" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's add a comment here clarifying this is HTA |
||
| ] | ||
|
|
||
| [project.urls] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is now fixed to be a one-liner and is now represented in the requirements list in pyproject, perhaps we can remove this 'run item' altogether