[Feature]: Support 310P device run qwen2.5/3 dense and qwen2.5vl models (#5776)

### What this PR does / why we need it?
Add basic 310p support. Only dense models work with eager mode now.

- vLLM version: v0.13.0
- vLLM main:
2f4e6548ef

---------

Signed-off-by: Tflowers-0129 <2906339855@qq.com>
Signed-off-by: Shaoxu Cheng <2906339855@qq.com>
This commit is contained in:
Shaoxu Cheng
2026-01-17 11:49:18 +08:00
committed by GitHub
parent 7feb74590b
commit 1ffca8673f
17 changed files with 682 additions and 23 deletions

View File

@@ -36,7 +36,9 @@ def test_llm_models(dtype: str, max_tokens: int) -> None:
vllm_model.generate_greedy(example_prompts, max_tokens)
def test_multimodal_vl():
@pytest.mark.skip(reason="310P: multimodal test skipped, offline is ok")
@pytest.mark.parametrize("dtype", ["float16"])
def test_multimodal_vl(dtype: str):
image = ImageAsset("cherry_blossom").pil_image.convert("RGB")
img_questions = [
@@ -60,6 +62,7 @@ def test_multimodal_vl():
"max_pixels": 1280 * 28 * 28,
"fps": 1,
},
dtype=dtype,
max_model_len=8192,
enforce_eager=True,
limit_mm_per_prompt={"image": 1}) as vllm_model: