[CI] Remove stale Ascend suite entries from test/srt/run_suite.py (#21978)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Baizhou Zhang
2026-04-02 16:47:19 -07:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 34ddf135fd
commit 29d8e959d7
+3 -37
View File
@@ -13,7 +13,9 @@ from sglang.test.ci.ci_utils import TestFile, run_unittest_files
suites = {
# quantization_test suite migrated to test/registered/quant/
# All CUDA tests migrated to test/registered/
"__not_in_ci__": [],
"__not_in_ci__": [
TestFile("ascend/test_embed_interpolate_unittest.py"),
],
}
# Add AMD tests
@@ -81,44 +83,8 @@ suite_xpu = {
],
}
# Add Ascend NPU tests
# TODO: Set accurate estimate time
# NOTE: please sort the test cases alphabetically by the test file name
suite_ascend = {
"per-commit-1-npu-a2": [
TestFile("ascend/test_ascend_autoround_dense.py", 400),
TestFile("ascend/test_ascend_autoround_moe.py", 400),
TestFile("ascend/test_ascend_gptq_moe.py", 400),
TestFile("ascend/test_ascend_graph_tp1_bf16.py", 400),
TestFile("ascend/test_ascend_piecewise_graph_prefill.py", 400),
TestFile("ascend/test_ascend_hicache_mha.py", 400),
TestFile("ascend/test_ascend_sampling_backend.py", 400),
TestFile("ascend/test_ascend_tp1_bf16.py", 400),
TestFile("ascend/test_ascend_compile_graph_tp1_bf16.py", 400),
TestFile("ascend/test_ascend_w8a8_quantization.py", 400),
TestFile("ascend/test_embed_interpolate_unittest.py", 400),
],
"per-commit-2-npu-a2": [
TestFile("ascend/test_ascend_graph_tp2_bf16.py", 400),
TestFile("ascend/test_ascend_mla_fia_w8a8int8.py", 400),
TestFile("ascend/test_ascend_tp2_bf16.py", 400),
TestFile("ascend/test_ascend_tp2_fia_bf16.py", 400),
],
"per-commit-4-npu-a3": [
TestFile("ascend/test_ascend_mla_w8a8int8.py", 400),
TestFile("ascend/test_ascend_hicache_mla.py", 400),
TestFile("ascend/test_ascend_tp4_bf16.py", 400),
TestFile("ascend/test_ascend_w4a4_quantization.py", 600),
TestFile("ascend/test_llada2_mini_ascend.py", 800),
],
"per-commit-16-npu-a3": [
TestFile("ascend/test_ascend_deepep.py", 3600),
],
}
suites.update(suite_amd)
suites.update(suite_xeon)
suites.update(suite_ascend)
suites.update(suite_xpu)