Skip to content

Commit

Permalink
2025-01-24 nightly release (867521e)
Browse files Browse the repository at this point in the history
  • Loading branch information
pytorchbot committed Jan 24, 2025
1 parent f6c6643 commit 5f05fb1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import sys
import sysconfig
from pathlib import Path

import torch
Expand Down Expand Up @@ -134,8 +135,8 @@ def main() -> None:
smoke_test_torchvision_decode_jpeg("cuda")
smoke_test_torchvision_resnet50_classify("cuda")

# TODO: remove once pytorch/pytorch#110436 is resolved
if sys.version_info < (3, 12, 0):
# torch.compile is not supported on Python 3.14+ and Python built with GIL disabled
if sys.version_info < (3, 14, 0) and not sysconfig.get_config_var("Py_GIL_DISABLED"):
smoke_test_compile()

if torch.backends.mps.is_available():
Expand Down

0 comments on commit 5f05fb1

Please sign in to comment.