Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
42488dae
Unverified
Commit
42488dae
authored
Sep 24, 2025
by
Roger Wang
Committed by
GitHub
Sep 24, 2025
Browse files
[Bugfix] Fix dummy video number of frames calculation (#25553)
Signed-off-by:
Roger Wang
<
hey@rogerw.io
>
parent
b67dece2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vllm/v1/worker/gpu_model_runner.py
vllm/v1/worker/gpu_model_runner.py
+1
-1
vllm/v1/worker/tpu_model_runner.py
vllm/v1/worker/tpu_model_runner.py
+1
-1
No files found.
vllm/v1/worker/gpu_model_runner.py
View file @
42488dae
...
@@ -2807,7 +2807,7 @@ class GPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
...
@@ -2807,7 +2807,7 @@ class GPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
dummy_decoder_data
=
self
.
mm_registry
.
get_decoder_dummy_data
(
dummy_decoder_data
=
self
.
mm_registry
.
get_decoder_dummy_data
(
model_config
=
self
.
model_config
,
model_config
=
self
.
model_config
,
seq_len
=
self
.
max_
num_tok
en
s
,
seq_len
=
self
.
max_
model_l
en
,
mm_counts
=
{
modality
:
1
},
mm_counts
=
{
modality
:
1
},
cache
=
self
.
mm_budget
.
cache
,
cache
=
self
.
mm_budget
.
cache
,
)
)
...
...
vllm/v1/worker/tpu_model_runner.py
View file @
42488dae
...
@@ -1795,7 +1795,7 @@ class TPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
...
@@ -1795,7 +1795,7 @@ class TPUModelRunner(LoRAModelRunnerMixin, KVConnectorModelRunnerMixin):
dummy_decoder_data
=
self
.
mm_registry
.
get_decoder_dummy_data
(
dummy_decoder_data
=
self
.
mm_registry
.
get_decoder_dummy_data
(
model_config
=
self
.
model_config
,
model_config
=
self
.
model_config
,
seq_len
=
self
.
max_
num_tok
en
s
,
seq_len
=
self
.
max_
model_l
en
,
mm_counts
=
{
modality
:
1
},
mm_counts
=
{
modality
:
1
},
cache
=
self
.
mm_budget
.
cache
,
cache
=
self
.
mm_budget
.
cache
,
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment