"src/vscode:/vscode.git/clone" did not exist on "59f1b7b1c8b4a0b8a655ef43db79f731c4bb09c2"
Unverified Commit c1e2095c authored by Andrey Talman's avatar Andrey Talman Committed by GitHub
Browse files

[Python 3.12] Fix for, Dynamo is not supported on Python 3.12+ error (#8137)

parent 1fda0e85
......@@ -90,7 +90,10 @@ def main() -> None:
if torch.cuda.is_available():
smoke_test_torchvision_decode_jpeg("cuda")
smoke_test_torchvision_resnet50_classify("cuda")
smoke_test_compile()
# TODO: remove once pytorch/pytorch#110436 is resolved
if sys.version_info < (3, 12, 0):
smoke_test_compile()
if torch.backends.mps.is_available():
smoke_test_torchvision_resnet50_classify("mps")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment