From 84eb6dd32a42702e255239f8df26def2ad723907 Mon Sep 17 00:00:00 2001 From: Yixiang Gao Date: Wed, 3 Jan 2024 07:07:21 -0800 Subject: [PATCH] skip GPU cause opencl on intel can't compile half --- test/models/test_real_world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/models/test_real_world.py b/test/models/test_real_world.py index e255676a9b..4b8b7af5b6 100644 --- a/test/models/test_real_world.py +++ b/test/models/test_real_world.py @@ -135,7 +135,7 @@ class TestRealWorld(unittest.TestCase): #Device.DEFAULT = old_default @unittest.skipIf(Device.DEFAULT == "LLVM", "LLVM segmentation fault") - # @unittest.skipIf(Device.DEFAULT in ["LLVM", "CLANG"] and CI, "too long on CI LLVM and CLANG") + @unittest.skipIf(Device.DEFAULT in ["GPU"] and CI, "opencl on intel can't compile half") def test_train_cifar_hyp(self): dtypes.default_float = dtypes.float16 with Tensor.train():