From 4e443e81b519d2844bdbb440d94fec1de558b1cb Mon Sep 17 00:00:00 2001 From: Jason Ansel Date: Thu, 16 Oct 2025 09:20:44 -0700 Subject: [PATCH] Skip test_differential_evolution_search due to slowness stack-info: PR: https://github.com/pytorch/helion/pull/968, branch: jansel/stack/205 --- test/test_autotuner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_autotuner.py b/test/test_autotuner.py index 1e2ad9da7..2badcb59d 100644 --- a/test/test_autotuner.py +++ b/test/test_autotuner.py @@ -282,6 +282,7 @@ def test_random_search(self): torch.testing.assert_close(fn(*args), args[0] @ args[1], rtol=1e-2, atol=1e-1) @skipIfRocm("too slow on rocm") + @skip("too slow") def test_differential_evolution_search(self): args = ( torch.randn([512, 512], device=DEVICE),