skip CI CPU test_data_parallel_resnet_train_step (#9685)

flaky
This commit is contained in:
chenyu
2025-04-02 01:04:54 -04:00
committed by GitHub
parent bb94f13e58
commit bca0c85193
+1 -1
View File
@@ -362,7 +362,7 @@ class TestMultiTensor(unittest.TestCase):
shard_output_np = shard_output.numpy()
np.testing.assert_allclose(real_output, shard_output_np, atol=1e-6, rtol=1e-6)
@unittest.skipIf(CI and Device.DEFAULT in ("CUDA", "NV", "LLVM"), "slow, and flaky on LLVM")
@unittest.skipIf(CI and Device.DEFAULT in ("CUDA", "NV", "LLVM", "CPU"), "slow, and flaky on LLVM/CPU")
@unittest.skipIf(Device.DEFAULT == "WEBGPU" and not OSX, "WEBGPU Vulkan can only run kernels with up to 10 buffers")
def test_data_parallel_resnet_train_step(self):
from extra.models.resnet import ResNet18