Unverified Commit 4b3803d1 authored by Dezhan's avatar Dezhan Committed by GitHub
Browse files

[BugFix] DPMetadata raises assert error for dense model (#32739)


Co-authored-by: default avatarDezhan Tu <dztu@meta.com>
parent 5019c59d
......@@ -339,8 +339,10 @@ def set_forward_context(
forward_start_time = time.perf_counter()
dp_metadata: DPMetadata | None = None
if vllm_config.parallel_config.data_parallel_size > 1 and (
attn_metadata is not None or num_tokens is not None
if (
vllm_config.parallel_config.data_parallel_size > 1
and vllm_config.parallel_config.is_moe_model is not False
and (attn_metadata is not None or num_tokens is not None)
):
# If num_tokens_across_dp hasn't already been initialized, then
# initialize it here. Both DP padding and Microbatching will be
......
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