Skip to content

Commit e8c75df

Browse files
authored
Update intermediate_source/torch_export_tutorial.py
1 parent a7d24ce commit e8c75df

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
@@ -647,7 +647,7 @@ def forward(self, x):
647647

648648
# Compile the exported program to a .so using AOTInductor
649649
so_path = torch._export.aot_compile(ep.module(), (inp,))
650-
# Load and run the .so in python.
650+
# Load and run the .so in Python.
651651
# To load and run it in a C++ environment, please take a look at
652652
# https://pytorch.org/docs/main/torch.compiler_aot_inductor.html
653653
res = torch._export.aot_load(so_path, device="cuda")(inp)

0 commit comments

Comments
 (0)