[NPU] solve accuracy problem for stablelm-2-1-6b for npu (#17470)

This commit is contained in:
McZyWu
2026-01-24 08:27:38 +08:00
committed by GitHub
parent 8a5ed2434f
commit b4a611fb33
2 changed files with 51 additions and 8 deletions

View File

@@ -0,0 +1,27 @@
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 TestStablelm(GSM8KAscendMixin, CustomTestCase):
model = "/root/.cache/modelscope/hub/models/stabilityai/stablelm-2-1_6b"
accuracy = 0.195
other_args = [
"--trust-remote-code",
"--mem-fraction-static",
"0.8",
"--attention-backend",
"ascend",
"--disable-cuda-graph",
"--tp-size",
1,
"--enable-torch-compile",
]
if __name__ == "__main__":
unittest.main()