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
561f38dc
Unverified
Commit
561f38dc
authored
Sep 09, 2025
by
Tyler Michael Smith
Committed by
GitHub
Sep 10, 2025
Browse files
[Bugfix] Improve EPLB config validation error message (#24524)
Signed-off-by:
Tyler Michael Smith
<
tyler@neuralmagic.com
>
parent
73e688cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
vllm/config/parallel.py
vllm/config/parallel.py
+4
-2
No files found.
vllm/config/parallel.py
View file @
561f38dc
...
...
@@ -368,8 +368,10 @@ class ParallelConfig:
else
:
if
self
.
eplb_config
.
num_redundant_experts
!=
0
:
raise
ValueError
(
"num_redundant_experts should be used with EPLB."
f
"
{
self
.
eplb_config
.
num_redundant_experts
}
."
)
"num_redundant_experts is set to "
f
"
{
self
.
eplb_config
.
num_redundant_experts
}
but EPLB is not "
"enabled. Either enable EPLB or unset "
"num_redundant_experts."
)
if
self
.
distributed_executor_backend
is
None
and
self
.
world_size
>
1
:
# We use multiprocessing by default if world_size fits on the
# current node and we aren't in a ray placement group.
...
...
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