[CI] Add CI test for DeepSeek V3.2 MTP (#11835)

This commit is contained in:
Baizhou Zhang
2025-10-19 19:00:25 -05:00
committed by GitHub
parent 53fb229f53
commit cbb5fc2edc
4 changed files with 112 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ from sglang.test.test_utils import (
DEEPSEEK_V32_MODEL_PATH = "deepseek-ai/DeepSeek-V3.2-Exp"
class TestDeepseekV3Basic(CustomTestCase):
class TestDeepseekV32Basic(CustomTestCase):
@classmethod
def setUpClass(cls):
cls.model = DEEPSEEK_V32_MODEL_PATH
@@ -57,7 +57,7 @@ class TestDeepseekV3Basic(CustomTestCase):
if is_in_ci():
write_github_step_summary(
f"### test_gsm8k (deepseek-v3)\n" f'{metrics["accuracy"]=:.3f}\n'
f"### test_gsm8k (deepseek-v32)\n" f'{metrics["accuracy"]=:.3f}\n'
)
self.assertGreater(metrics["accuracy"], 0.935)
@@ -69,7 +69,7 @@ class TestDeepseekV3Basic(CustomTestCase):
if is_in_ci():
write_github_step_summary(
f"### test_bs_1_speed (deepseek-v3)\n" f"{speed=:.2f} token/s\n"
f"### test_bs_1_speed (deepseek-v32)\n" f"{speed=:.2f} token/s\n"
)
self.assertGreater(speed, 50)