Skip to content

Commit a5d38cf

Browse files
authored
Fix spellcheck
1 parent f4bb0fd commit a5d38cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intermediate_source/torch_compile_tutorial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def outer_function(x, y):
118118

119119
######################################################################
120120
# In the same fashion, when compiling a module all sub-modules and methods
121-
# within it, that are not in a skiplist, are also compiled.
121+
# within it, that are not in a skip list, are also compiled.
122122

123123
class OuterModule(torch.nn.Module):
124124
def __init__(self):
@@ -172,7 +172,7 @@ def outer_function():
172172
#
173173
# When you use ``torch.compile``, the compiler will try to recursively compile
174174
# every function call inside the target function or module inside the target
175-
# function or module that is not in a skiplist (e.g. builtins, some functions in
175+
# function or module that is not in a skip list (such as built-ins, some functions in
176176
# the torch.* namespace).
177177
#
178178
# **Best Practices:**

0 commit comments

Comments
 (0)