Unverified Commit f0f4de8f authored by Nick Hill's avatar Nick Hill Committed by GitHub
Browse files

[Misc] Fix duplicate FusedMoEConfig debug messages (#21455)


Signed-off-by: default avatarNick Hill <nhill@redhat.com>
parent fc5f756d
...@@ -325,8 +325,8 @@ class FusedMoEConfig: ...@@ -325,8 +325,8 @@ class FusedMoEConfig:
def __post_init__(self): def __post_init__(self):
if self.dp_size > 1: if self.dp_size > 1:
logger.debug("Using FusedMoEConfig::max_num_tokens=%d", logger.debug_once("Using FusedMoEConfig::max_num_tokens=%d",
self.max_num_tokens) self.max_num_tokens)
assert self.max_num_tokens > 0 assert self.max_num_tokens > 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment