[NPU] support llama-3.2-11B-vision-instruct mode for NPU (#17492)

Co-authored-by: McZyWu <zhuoyun.wu.23@ucl.ac.uk>
Co-authored-by: chenyang08056032 <chenyang08056032@163.com>
Co-authored-by: Hexq0210 <893781835@qq.com>
This commit is contained in:
JiaruiChang5268
2026-01-31 08:49:38 +08:00
committed by GitHub
co-authored by McZyWu chenyang08056032 Hexq0210
parent 578b119bc6
commit e86476acfc
4 changed files with 296 additions and 13 deletions
@@ -0,0 +1,29 @@
import unittest
from sglang.test.ascend.vlm_utils import TestVLMModels
from sglang.test.ci.ci_register import register_npu_ci
register_npu_ci(est_time=400, suite="nightly-1-npu-a3", nightly=True)
class TestLlama3211BVisionInstruct(TestVLMModels):
model = (
"/root/.cache/modelscope/hub/models/LLM-Research/Llama-3.2-11B-Vision-Instruct"
)
mmmu_accuracy = 0.2
other_args = [
"--trust-remote-code",
"--mem-fraction-static",
"0.8",
"--attention-backend",
"ascend",
"--disable-cuda-graph",
"--disable-radix-cache",
]
def test_vlm_mmmu_benchmark(self):
self._run_vlm_mmmu_test()
if __name__ == "__main__":
unittest.main()