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
f63ed7b5
Unverified
Commit
f63ed7b5
authored
Mar 17, 2026
by
Benjamin Chislett
Committed by
GitHub
Mar 17, 2026
Browse files
[Bugfix] Fix DP MTP Dummy Run (#35243)
Signed-off-by:
Benjamin Chislett
<
bchislett@nvidia.com
>
parent
c9e50962
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/v1/worker/gpu_worker.py
vllm/v1/worker/gpu_worker.py
+2
-1
No files found.
vllm/v1/worker/gpu_worker.py
View file @
f63ed7b5
...
@@ -903,7 +903,8 @@ class Worker(WorkerBase):
...
@@ -903,7 +903,8 @@ class Worker(WorkerBase):
self
.
profiler
.
stop
()
self
.
profiler
.
stop
()
def
execute_dummy_batch
(
self
)
->
None
:
def
execute_dummy_batch
(
self
)
->
None
:
self
.
model_runner
.
_dummy_run
(
1
,
uniform_decode
=
True
)
num_tokens
=
getattr
(
self
.
model_runner
,
"uniform_decode_query_len"
,
1
)
self
.
model_runner
.
_dummy_run
(
num_tokens
,
uniform_decode
=
True
)
def
add_lora
(
self
,
lora_request
:
LoRARequest
)
->
bool
:
def
add_lora
(
self
,
lora_request
:
LoRARequest
)
->
bool
:
return
self
.
model_runner
.
add_lora
(
lora_request
)
return
self
.
model_runner
.
add_lora
(
lora_request
)
...
...
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