From 013a199bc6da430f26766e37115b83d5e863e792 Mon Sep 17 00:00:00 2001 From: Xiaoyu Zhang <35585791+BBuf@users.noreply.github.com> Date: Fri, 13 Feb 2026 15:49:30 +0800 Subject: [PATCH] [CI] Skip cutedsl gdn performance test in jit_kernel ci (#18783) --- python/sglang/jit_kernel/tests/test_cutedsl_gdn.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/sglang/jit_kernel/tests/test_cutedsl_gdn.py b/python/sglang/jit_kernel/tests/test_cutedsl_gdn.py index a956557a6..3831ac2e0 100644 --- a/python/sglang/jit_kernel/tests/test_cutedsl_gdn.py +++ b/python/sglang/jit_kernel/tests/test_cutedsl_gdn.py @@ -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])