Skip to content

Commit 6dc9601

Browse files
committed
Fix qwen3 vl moe execution failure
Signed-off-by: Seunghyuk Park <separk@habana.ai>
1 parent 1e012ec commit 6dc9601

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

vllm_gaudi/models/qwen3_vl_moe.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@ def __init__(self, *, vllm_config: VllmConfig, prefix: str = ""):
1313
super().__init__(vllm_config=vllm_config, prefix=prefix)
1414

1515
quant_config = getattr(self, "quant_config", None)
16-
multimodal_config = getattr(vllm_config.model_config, "multimodal_config", None)
1716

1817
if hasattr(self, "visual") and self.visual is not None:
1918
self.visual = HPUQwen3_VisionTransformer(
2019
self.config.vision_config,
2120
norm_eps=getattr(self.config, "rms_norm_eps", 1e-6),
2221
quant_config=quant_config,
23-
multimodal_config=multimodal_config,
2422
prefix=maybe_prefix(prefix, "visual"),
2523
)
2624

0 commit comments

Comments
 (0)