From 69ac8b58f7030cd758a9f659037fd9f69f980a5d Mon Sep 17 00:00:00 2001 From: Even Zhou Date: Fri, 23 Jan 2026 15:17:31 +0800 Subject: [PATCH] [NPU] [CI] temporarily disable mtp test (#17614) --- .../ascend/test_ascend_deepseek_mtp.py | 0 test/srt/ascend/test_ascend_tp2_fia_bf16.py | 22 ------------------- test/srt/run_suite.py | 2 +- 3 files changed, 1 insertion(+), 23 deletions(-) rename test/{srt => manual}/ascend/test_ascend_deepseek_mtp.py (100%) diff --git a/test/srt/ascend/test_ascend_deepseek_mtp.py b/test/manual/ascend/test_ascend_deepseek_mtp.py similarity index 100% rename from test/srt/ascend/test_ascend_deepseek_mtp.py rename to test/manual/ascend/test_ascend_deepseek_mtp.py diff --git a/test/srt/ascend/test_ascend_tp2_fia_bf16.py b/test/srt/ascend/test_ascend_tp2_fia_bf16.py index bdd1c5733..6e2f0d8d0 100644 --- a/test/srt/ascend/test_ascend_tp2_fia_bf16.py +++ b/test/srt/ascend/test_ascend_tp2_fia_bf16.py @@ -9,9 +9,7 @@ from sglang.test.test_utils import ( DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH, DEFAULT_URL_FOR_TEST, CustomTestCase, - is_in_ci, popen_launch_server, - run_bench_offline_throughput, ) TEST_MODEL_MATRIX = { @@ -76,26 +74,6 @@ class TestAscendTp2Bf16(CustomTestCase): finally: kill_process_tree(process.pid) - def test_b_throughput(self): - for model in self.models: - with self.subTest(model=model): - print(f"##=== Testing throughput: {model} ===##") - - output_throughput = run_bench_offline_throughput( - model, - [ - *self.common_args, - ], - ) - - print(f"##=== {model} throughput: {output_throughput} ===##") - - if is_in_ci(): - self.assertGreater( - output_throughput, - TEST_MODEL_MATRIX[model]["output_throughput"], - ) - if __name__ == "__main__": unittest.main() diff --git a/test/srt/run_suite.py b/test/srt/run_suite.py index 305266525..72e685cd4 100644 --- a/test/srt/run_suite.py +++ b/test/srt/run_suite.py @@ -153,7 +153,7 @@ suite_ascend = { ], "per-commit-16-npu-a3": [ TestFile("ascend/test_ascend_deepep.py", 3600), - TestFile("ascend/test_ascend_deepseek_mtp.py", 2800), + # TestFile("ascend/test_ascend_deepseek_mtp.py", 2800), TestFile("ascend/test_ascend_w4a4_quantization.py", 600), ], }