[CI] Skip cutedsl gdn performance test in jit_kernel ci (#18783)

This commit is contained in:
Xiaoyu Zhang
2026-02-13 15:49:30 +08:00
committed by GitHub
parent 1f39bf6523
commit 013a199bc6

View File

@@ -98,6 +98,10 @@ def test_cutedsl_gdn_precision(B: int):
assert fail_rate < 1.0, f"Fail rate {fail_rate:.2f}% >= 1%"
@pytest.mark.skipif(
True,
reason="Skip the performance test because the speedup ratio is highly unstable in the CI environment. ",
)
@pytest.mark.skipif(not CUTEDSL_AVAILABLE, reason="CuTe DSL not available")
@pytest.mark.skipif(not TRITON_AVAILABLE, reason="Triton kernel not available")
@pytest.mark.parametrize("B", [1, 128])