Skip to content

Commit 7be9ffc

Browse files
authored
[Misc] Fix Qwen3-VL video_grid_thw typing (vllm-project#25646)
Signed-off-by: Roger Wang <hey@rogerw.io>
1 parent 393de22 commit 7be9ffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/model_executor/models/qwen3_vl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ def _process_video_input(
12491249
rope_type="rope_3d")
12501250
else:
12511251
video_embeds = self.visual(pixel_values_videos,
1252-
grid_thw=grid_thw)
1252+
grid_thw=grid_thw_list)
12531253

12541254
# Split concatenated embeddings for each video item.
12551255
# Using prod on grid_thw_list instead of grid_thw.prod avoids CUDA sync

0 commit comments

Comments
 (0)