We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89275af commit 9193ce2Copy full SHA for 9193ce2
test/smoke_test.py
@@ -39,6 +39,8 @@ def smoke_test_compile() -> None:
39
except RuntimeError:
40
if platform == "win32":
41
print("Successfully caught torch.compile RuntimeError on win")
42
+ elif sys.version_info >= (3, 11, 0):
43
+ print("Successfully caught torch.compile RuntimeError on Python 3.11")
44
else:
45
raise
46
0 commit comments