[NPU] enhance accuracy for model minimaxm2 from 16.5% to 95.5% (#17695)

This commit is contained in:
McZyWu
2026-03-23 19:06:38 +08:00
committed by GitHub
parent 2d288ba8c9
commit 4641e5a3d2
3 changed files with 45 additions and 1 deletions
@@ -0,0 +1,43 @@
import unittest
from sglang.test.ascend.gsm8k_ascend_mixin import GSM8KAscendMixin
from sglang.test.ascend.test_ascend_utils import MINIMAX_M2_WEIGHTS_PATH
from sglang.test.ci.ci_register import register_npu_ci
from sglang.test.test_utils import CustomTestCase
register_npu_ci(
est_time=400,
suite="nightly-8-npu-a3",
nightly=True,
)
class TestMiniMaxM2(GSM8KAscendMixin, CustomTestCase):
"""Testcase: Verify that the inference accuracy of the cyankiwi/MiniMax-M2-BF16 model on the GSM8K dataset is no less than 0.9.
[Test Category] Model
[Test Target] cyankiwi/MiniMax-M2-BF16
"""
model = MINIMAX_M2_WEIGHTS_PATH
accuracy = 0.9
other_args = [
"--trust-remote-code",
"--mem-fraction-static",
"0.9",
"--attention-backend",
"ascend",
"--tp-size",
"8",
"--disable-cuda-graph",
"--disable-radix-cache",
"--disable-overlap-schedule",
"--max-running-requests",
"64",
"--chunked-prefill-size",
"-1",
]
if __name__ == "__main__":
unittest.main()