From c20fcebee095968fa9b50269f548e58e09a59572 Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Thu, 28 Nov 2024 11:42:38 -0500 Subject: [PATCH] Revert "Update smoke_test.py - temporary disable torch.compile tests (#8763)" This reverts commit 22e86bd3ef3d297ef2e1ce84bbc0602a6f8a9b28. --- 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")