Skip to content

Commit

Permalink
Merge branch 'main' into redirect-tracing-based-selective-build
Browse files Browse the repository at this point in the history
  • Loading branch information
svekars authored Jan 7, 2025
2 parents ca0739d + dea4673 commit 171ac5e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion beginner_source/onnx/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ONNX

1. intro_onnx.py
Introduction to ONNX
https://pytorch.org/tutorials/onnx/intro_onnx.html
https://pytorch.org/tutorials/beginner/onnx/intro_onnx.html

2. export_simple_model_to_onnx_tutorial.py
Exporting a PyTorch model to ONNX
Expand Down
2 changes: 2 additions & 0 deletions en-wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,8 @@ FlexAttention
fp
frontend
functionalized
functionalizes
functionalization
functorch
fuser
geomean
Expand Down
6 changes: 3 additions & 3 deletions intermediate_source/inductor_debug_cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#
# Meanwhile, you may also find related tutorials about ``torch.compile``
# around `basic usage <https://pytorch.org/tutorials/intermediate/torch_compile_tutorial.html>`_,
# comprehensive `troubleshooting <https://pytorch.org/docs/stable/dynamo/troubleshooting.html>`_
# and GPU-specific knowledge like `GPU performance profiling <https://github.com/pytorch/pytorch/blob/main/docs/source/compile/profiling_torch_compile.rst>`_.
# comprehensive `troubleshooting <https://pytorch.org/docs/stable/torch.compiler_troubleshooting.html>`_
# and GPU-specific knowledge like `GPU performance profiling <https://pytorch.org/docs/stable/torch.compiler_inductor_profiling.html>`_.
#
# We will start debugging with a motivating example that triggers compilation issues and accuracy problems
# by demonstrating the process of debugging to pinpoint the problems.
Expand Down Expand Up @@ -343,7 +343,7 @@ def forward2(self, arg0_1):
return (neg,)

######################################################################
# For more usage details about Minifier, please refer to `Troubleshooting <https://pytorch.org/docs/stable/dynamo/troubleshooting.html>`_.
# For more usage details about Minifier, please refer to `Troubleshooting <https://pytorch.org/docs/stable/torch.compiler_troubleshooting.html>`_.


######################################################################
Expand Down
2 changes: 1 addition & 1 deletion recipes_source/distributed_device_mesh.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ DeviceMesh allows users to slice child mesh from the parent mesh and re-use the
# Users can access the underlying process group thru `get_group` API.
replicate_group = hsdp_mesh["replicate"].get_group()
shard_group = hsdp_mesh["Shard"].get_group()
shard_group = hsdp_mesh["shard"].get_group()
tp_group = tp_mesh.get_group()
Expand Down

0 comments on commit 171ac5e

Please sign in to comment.