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
f002e9a8
Unverified
Commit
f002e9a8
authored
Jul 23, 2025
by
Michael Goin
Committed by
GitHub
Jul 23, 2025
Browse files
[Cleanup] Only log MoE DP setup warning if DP is enabled (#21315)
Signed-off-by:
mgoin
<
mgoin64@gmail.com
>
parent
a1f3610f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
vllm/model_executor/layers/fused_moe/config.py
vllm/model_executor/layers/fused_moe/config.py
+5
-4
No files found.
vllm/model_executor/layers/fused_moe/config.py
View file @
f002e9a8
...
...
@@ -464,10 +464,11 @@ class FusedMoEConfig:
)
else
:
_quant_config
=
FusedMoEQuantConfig
()
logger
.
warning_once
(
"MoE DP setup unable to determine "
"quantization scheme or unsupported "
"quantization type. This model will "
"not run with DP enabled."
)
if
moe_parallel_config
.
dp_size
>
1
:
logger
.
warning_once
(
"MoE DP setup unable to determine "
"quantization scheme or unsupported "
"quantization type. This model will "
"not run with DP enabled."
)
else
:
_quant_config
=
quant_config
...
...
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