You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix broken links in flight recorder tutorial (#3656)
Updated all references from tools/flight_recorder to the correct path
torch/distributed/flight_recorder and ensured links point to the main
branch.
Fixes#3654
cc @svekars@sekyondaMeta@AlannaBurke
Copy file name to clipboardExpand all lines: unstable_source/flight_recorder_tutorial.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Flight Recorder consists of two core parts:
44
44
45
45
- The collection portion: when enabled, information about collectives is recorded in an in-memory circular buffer. Upon job timeout, or on demand, the in-memory buffer can be retrieved or dumped to file.
46
46
47
-
- An analyzer script is available in the `tools/flight_recorder <https://github.com/pytorch/pytorch/tree/main/tools/flight_recorder>`__ directory (details below).
47
+
- An analyzer script is available in the `torch/distributed/flight_recorder <https://github.com/pytorch/pytorch/tree/main/torch/distributed/flight_recorder>`__ directory (details below).
48
48
The analyzer script runs known heuristics using the collected data and attempts to automatically identify the underlying issue that caused the job to stall.
49
49
50
50
Enabling Flight Recorder
@@ -169,7 +169,7 @@ The contents of a Flight Recorder ``unpickled`` file are shown below:
169
169
Analyzing Flight Recorder Dumps
170
170
-------------------------------
171
171
172
-
We have convenient scripts available in `pytorch/tools/flight_recorder` directory for analyzing captured
172
+
We have convenient scripts available in `pytorch/torch/distributed/flight_recorder<https://github.com/pytorch/pytorch/tree/main/torch/distributed/flight_recorder>`__ directory for analyzing captured
173
173
data.
174
174
175
175
To run the convenience script, follow these steps:
@@ -300,5 +300,5 @@ Conclusion
300
300
In this tutorial, we have learned about a new PyTorch diagnostic tool called Flight Recorder.
301
301
We have discussed how to enable Flight Recorder to collect diagnostic data from a machine.
302
302
Additionally, we explored how to analyze the data captured from the Flight Recorder using a
303
-
convenience script located in the `tools/flight_recorder <https://github.com/pytorch/pytorch/tree/main/tools/flight_recorder>`__
303
+
convenience script located in the `torch/distributed/flight_recorder <https://github.com/pytorch/pytorch/tree/main/torch/distributed/flight_recorder>`__
0 commit comments