From e687d6af855aa5475c95094d43ea1d08497a739f Mon Sep 17 00:00:00 2001 From: offline893 <158537145+offline893@users.noreply.github.com> Date: Fri, 7 Nov 2025 17:41:56 +0800 Subject: [PATCH] [BugFix]Fix group list type of mc2. (#4047) ### What this PR does / why we need it? Fix accrucy problem of eplb because of PTA upgrade. ### How was this patch tested? Main: baseline: | dataset | version | metric | mode | vllm-api-general-chat | |----- | ----- | ----- | ----- | -----| | aime2024 | 604a78 | accuracy | gen | 87.50 | EPLB: | dataset | version | metric | mode | vllm-api-general-chat | |----- | ----- | ----- | ----- | -----| | aime2024 | 604a78 | accuracy | gen | 87.50 | - vLLM version: v0.11.0 - vLLM main: https://github.com/vllm-project/vllm/commit/83f478bb19489b41e9d208b47b4bb5a95ac171ac Signed-off-by: offline0806 <3337230449@qq.com> Co-authored-by: offline0806 <3337230449@qq.com> --- vllm_ascend/ops/fused_moe/token_dispatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm_ascend/ops/fused_moe/token_dispatcher.py b/vllm_ascend/ops/fused_moe/token_dispatcher.py index 077163c5..c6bdfe4d 100644 --- a/vllm_ascend/ops/fused_moe/token_dispatcher.py +++ b/vllm_ascend/ops/fused_moe/token_dispatcher.py @@ -225,7 +225,7 @@ class TokenDispatcherWithMC2(MoETokenDispatcher): "expand_scales": expand_scales } - group_list_type = 1 if dynamic_eplb else 0 + group_list_type = 0 return { "group_list_type": group_list_type,