[AMD] Fix MoRI EP warmup hang by restoring deepep_mode=normal default (#19498)

This commit is contained in:
Bingxu Chen
2026-03-01 14:05:22 +08:00
committed by GitHub
parent dcf462cfba
commit 5fa6633485

View File

@@ -2266,6 +2266,9 @@ class ServerArgs:
if self.moe_a2a_backend == "mori":
self.ep_size = self.tp_size
if self.deepep_mode == "auto":
self.deepep_mode = "normal"
logger.warning("auto set deepep_mode=`normal` for MORI EP")
logger.warning(
f"MoRI MoE is enabled. The expert parallel size is adjusted to be the same as the tensor parallel size[{self.tp_size}]."
)