Skip to content

Commit ed9248f

Browse files
authored
Update intermediate_source/torch_export_tutorial.py
1 parent 809b617 commit ed9248f

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

0 commit comments

Comments
 (0)