Commit 389ebcf7 authored by zhuwenwen's avatar zhuwenwen
Browse files

[fix]修复fused_moe.py中fused_moe接口未初始化moe_ep_size导致的deekseek等模型报错

parent 18c2244b
......@@ -1679,7 +1679,7 @@ def fused_moe(
a2_scale: Optional[torch.Tensor] = None,
block_shape: Optional[List[int]] = None,
use_nn_moe: Optional[bool] = False,
moe_ep_size: Optional[int] = None,
moe_ep_size: Optional[int] = 1,
start_expert: Optional[int] = None,
end_expert: Optional[int] = None,
) -> torch.Tensor:
......
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