[ci] fix llama4 ci error (#5126)

This commit is contained in:
Xiaoyu Zhang
2025-04-07 21:15:46 +08:00
committed by GitHub
parent 57f99608f4
commit db452760e5

View File

@@ -285,6 +285,7 @@ class CompressedTensorsW8A8Fp8MoEMethod(CompressedTensorsMoEMethod):
activation: str = "silu",
inplace: bool = True,
no_combine: bool = False,
apply_router_weight_on_input: bool = False,
) -> torch.Tensor:
from sglang.srt.layers.moe.fused_moe_triton import fused_experts
from sglang.srt.layers.moe.topk import select_experts
@@ -314,6 +315,7 @@ class CompressedTensorsW8A8Fp8MoEMethod(CompressedTensorsMoEMethod):
w2_scale=layer.w2_weight_scale,
a1_scale=layer.w13_input_scale,
a2_scale=layer.w2_input_scale,
apply_router_weight_on_input=apply_router_weight_on_input,
)