mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-13 14:35:00 +08:00
[Cleanup] Only log MoE DP setup warning if DP is enabled (#21315)
Signed-off-by: mgoin <mgoin64@gmail.com>
This commit is contained in:
parent
a1f3610fc6
commit
f002e9a870
@ -464,10 +464,11 @@ class FusedMoEConfig:
|
|||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
_quant_config = FusedMoEQuantConfig()
|
_quant_config = FusedMoEQuantConfig()
|
||||||
logger.warning_once("MoE DP setup unable to determine "
|
if moe_parallel_config.dp_size > 1:
|
||||||
"quantization scheme or unsupported "
|
logger.warning_once("MoE DP setup unable to determine "
|
||||||
"quantization type. This model will "
|
"quantization scheme or unsupported "
|
||||||
"not run with DP enabled.")
|
"quantization type. This model will "
|
||||||
|
"not run with DP enabled.")
|
||||||
else:
|
else:
|
||||||
_quant_config = quant_config
|
_quant_config = quant_config
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user