Skip to content

Commit 9a28c7a

Browse files
committed
Merge branch 'torch-export-tutorial' of github.com:pytorch/tutorials into torch-export-tutorial
2 parents b0e67fa + 14016f7 commit 9a28c7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate_source/torch_export_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def forward(self, x, y):
6262
# that is, the computation graph of all PyTorch operations.
6363
# The FX graph has some important properties:
6464
# - The operations are "ATen-level" operations.
65-
# - The graph is "functionalized", meaning that no operations are mutatations.
65+
# - The graph is "functionalized", meaning that no operations are mutations.
6666
#
6767
# The ``graph_module`` attribute is the ``GraphModule`` that wraps the ``graph`` attribute
6868
# so that it can be ran as a ``torch.nn.Module``.

0 commit comments

Comments
 (0)