[NPU]support model MiniCPM3-4B for npu (#16866)

This commit is contained in:
McZyWu
2026-01-24 08:25:12 +08:00
committed by GitHub
parent 4c7136bb36
commit 8a5ed2434f
5 changed files with 125 additions and 45 deletions
@@ -0,0 +1,30 @@
import unittest
from sglang.test.ascend.gsm8k_ascend_mixin import GSM8KAscendMixin
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-1-npu-a3", nightly=True)
class TestMiniCPM3(GSM8KAscendMixin, CustomTestCase):
model = "/root/.cache/modelscope/hub/models/OpenBMB/MiniCPM3-4B"
accuracy = 0.69
other_args = [
"--trust-remote-code",
"--mem-fraction-static",
"0.8",
"--attention-backend",
"ascend",
"--disable-cuda-graph",
"--disable-radix-cache",
"--disable-overlap-schedule",
"--max-running-requests",
"128",
"--chunked-prefill-size",
"-1",
]
if __name__ == "__main__":
unittest.main()