From 8f8a19565b18dc24967af91c547ad38bebc2fa82 Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Thu, 28 Nov 2024 17:06:34 +0000 Subject: [PATCH] Revert "Update smoke_test.py - temporary disable torch.compile tests" (#8765) --- test/smoke_test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/smoke_test.py b/test/smoke_test.py index 647e2f45c8f..3a44ae3efe9 100644 --- a/test/smoke_test.py +++ b/test/smoke_test.py @@ -102,9 +102,8 @@ def main() -> None: smoke_test_torchvision_resnet50_classify("cuda") # TODO: remove once pytorch/pytorch#110436 is resolved - # Temporary Disabling compile test. Untill triton with Manylinux2014 is available - # if sys.version_info < (3, 12, 0): - # smoke_test_compile() + if sys.version_info < (3, 12, 0): + smoke_test_compile() if torch.backends.mps.is_available(): smoke_test_torchvision_resnet50_classify("mps")