Skip to content

Commit 809b617

Browse files
authored
Update intermediate_source/torch_export_tutorial.py
Small change to re-kick the build.
1 parent 2b5779d commit 809b617

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
@@ -653,7 +653,7 @@ def forward(self, x):
653653
# Compile the exported program to a .so using AOTInductor
654654
with torch.no_grad():
655655
so_path = torch._inductor.aot_compile(ep.module(), [inp])
656-
# Load and run the .so in Python.
656+
# Load and run the .so file in Python.
657657
# To load and run it in a C++ environment, please take a look at
658658
# https://pytorch.org/docs/main/torch.compiler_aot_inductor.html
659659
res = torch._export.aot_load(so_path, device="cuda")(inp)

0 commit comments

Comments
 (0)