Signed-off-by: UranusSeven <109661872+UranusSeven@users.noreply.github.com> Co-authored-by: Kevin-XiongC <kevin_xiong1997@outlook.com> Co-authored-by: Mingyi Jin <jinmingyi1998@sina.cn>
457 lines
14 KiB
Python
457 lines
14 KiB
Python
from __future__ import annotations
|
|
|
|
import functools
|
|
import os
|
|
from dataclasses import dataclass
|
|
from typing import TYPE_CHECKING, List, Optional
|
|
|
|
import torch
|
|
import triton.language as tl
|
|
|
|
from sglang.srt.layers.moe.moe_runner.base import (
|
|
MoeQuantInfo,
|
|
MoeRunnerConfig,
|
|
MoeRunnerCore,
|
|
RunnerInput,
|
|
RunnerOutput,
|
|
register_fused_func,
|
|
register_post_permute,
|
|
register_pre_permute,
|
|
)
|
|
from sglang.srt.layers.moe.utils import MoeRunnerBackend
|
|
from sglang.srt.utils import cpu_has_amx_support, is_cpu, is_cuda, is_hip
|
|
|
|
if TYPE_CHECKING:
|
|
from sglang.srt.layers.moe.token_dispatcher.standard import (
|
|
StandardCombineInput,
|
|
StandardDispatchOutput,
|
|
)
|
|
|
|
|
|
_is_hip = is_hip()
|
|
_is_cuda = is_cuda()
|
|
_is_cpu_amx_available = cpu_has_amx_support()
|
|
_is_cpu = is_cpu()
|
|
_use_aiter = bool(int(os.getenv("SGLANG_MOE_USE_AITER", "0")))
|
|
_MOE_PADDING_SIZE = 128 if bool(int(os.getenv("SGLANG_MOE_PADDING", "0"))) else 0
|
|
|
|
|
|
if _is_cuda:
|
|
from sgl_kernel import gelu_and_mul, silu_and_mul
|
|
elif _is_cpu and _is_cpu_amx_available:
|
|
pass
|
|
elif _is_hip:
|
|
from vllm import _custom_ops as vllm_ops # gelu_and_mul, silu_and_mul
|
|
|
|
if _use_aiter:
|
|
try:
|
|
from aiter import moe_sum
|
|
except ImportError:
|
|
raise ImportError("aiter is required when SGLANG_USE_AITER is set to True")
|
|
|
|
|
|
if _is_cuda or _is_hip:
|
|
from sgl_kernel import ( # noqa: F401
|
|
moe_align_block_size as sgl_moe_align_block_size,
|
|
)
|
|
|
|
|
|
@dataclass
|
|
class TritonRunnerInput(RunnerInput):
|
|
|
|
hidden_states: torch.Tensor
|
|
topk_weights: torch.Tensor
|
|
topk_ids: torch.Tensor
|
|
sorted_token_ids: torch.Tensor
|
|
expert_ids: torch.Tensor
|
|
num_tokens_post_padded: torch.Tensor
|
|
|
|
@property
|
|
def runner_backend(self) -> MoeRunnerBackend:
|
|
return MoeRunnerBackend.TRITON
|
|
|
|
|
|
@dataclass
|
|
class TritonRunnerOutput(RunnerOutput):
|
|
|
|
hidden_states: torch.Tensor
|
|
|
|
@property
|
|
def runner_backend(self) -> MoeRunnerBackend:
|
|
return MoeRunnerBackend.TRITON
|
|
|
|
|
|
@dataclass
|
|
class TritonMoeQuantInfo(MoeQuantInfo):
|
|
w13_weight: torch.Tensor
|
|
w2_weight: torch.Tensor
|
|
b13: Optional[torch.Tensor] = None
|
|
b2: Optional[torch.Tensor] = None
|
|
use_fp8_w8a8: bool = False
|
|
use_int8_w8a8: bool = False
|
|
use_int8_w8a16: bool = False
|
|
use_int4_w4a16: bool = False
|
|
per_channel_quant: bool = False
|
|
w13_scale: Optional[torch.Tensor] = None
|
|
w2_scale: Optional[torch.Tensor] = None
|
|
w13_zp: Optional[torch.Tensor] = None
|
|
w2_zp: Optional[torch.Tensor] = None
|
|
a13_scale: Optional[torch.Tensor] = None
|
|
a2_scale: Optional[torch.Tensor] = None
|
|
block_shape: Optional[List[int]] = None
|
|
|
|
|
|
class TritonRunnerCore(MoeRunnerCore):
|
|
|
|
def __init__(self, config: MoeRunnerConfig):
|
|
super().__init__(config)
|
|
|
|
def run(
|
|
self,
|
|
runner_input: TritonRunnerInput,
|
|
quant_info: TritonMoeQuantInfo,
|
|
running_state: dict,
|
|
) -> TritonRunnerOutput:
|
|
|
|
# TODO: move these functions to the triton runner
|
|
from sglang.srt.layers.moe.fused_moe_triton.fused_moe import (
|
|
invoke_fused_moe_kernel,
|
|
moe_sum_reduce_torch_compile,
|
|
moe_sum_reduce_triton,
|
|
swiglu_with_alpha_and_limit,
|
|
)
|
|
|
|
hidden_states = runner_input.hidden_states
|
|
topk_weights = runner_input.topk_weights
|
|
topk_ids = runner_input.topk_ids
|
|
sorted_token_ids = runner_input.sorted_token_ids
|
|
expert_ids = runner_input.expert_ids
|
|
num_tokens_post_padded = runner_input.num_tokens_post_padded
|
|
|
|
w13 = quant_info.w13_weight
|
|
w2 = quant_info.w2_weight
|
|
b13 = quant_info.b13
|
|
b2 = quant_info.b2
|
|
a13_scale = quant_info.a13_scale
|
|
a2_scale = quant_info.a2_scale
|
|
w13_scale = quant_info.w13_scale
|
|
w2_scale = quant_info.w2_scale
|
|
w13_zp = quant_info.w13_zp
|
|
w2_zp = quant_info.w2_zp
|
|
block_shape = quant_info.block_shape
|
|
per_channel_quant = quant_info.per_channel_quant
|
|
use_fp8_w8a8 = quant_info.use_fp8_w8a8
|
|
use_int8_w8a8 = quant_info.use_int8_w8a8
|
|
use_int8_w8a16 = quant_info.use_int8_w8a16
|
|
use_int4_w4a16 = quant_info.use_int4_w4a16
|
|
|
|
activation = self.config.activation
|
|
no_combine = self.config.no_combine
|
|
inplace = self.config.inplace
|
|
gemm1_alpha = self.config.gemm1_alpha
|
|
gemm1_limit = self.config.gemm1_clamp_limit
|
|
routed_scaling_factor = self.config.routed_scaling_factor
|
|
apply_router_weight_on_input = self.config.apply_router_weight_on_input
|
|
|
|
assert self.config.is_gated, "Only gated MoEs are supported for Triton runner"
|
|
|
|
M = hidden_states.shape[0]
|
|
E, N, _ = w13.shape
|
|
compute_type = (
|
|
tl.bfloat16 if hidden_states.dtype == torch.bfloat16 else tl.float16
|
|
)
|
|
|
|
intermediate_cache1 = torch.empty(
|
|
(M, topk_ids.shape[1], N),
|
|
device=hidden_states.device,
|
|
dtype=hidden_states.dtype,
|
|
)
|
|
|
|
invoke_fused_moe_kernel(
|
|
hidden_states,
|
|
w13,
|
|
b13,
|
|
intermediate_cache1,
|
|
a13_scale,
|
|
w13_scale,
|
|
w13_zp,
|
|
topk_weights,
|
|
topk_ids,
|
|
sorted_token_ids,
|
|
expert_ids,
|
|
num_tokens_post_padded,
|
|
apply_router_weight_on_input,
|
|
topk_ids.shape[1],
|
|
running_state["config"],
|
|
compute_type=compute_type,
|
|
use_fp8_w8a8=use_fp8_w8a8,
|
|
use_int8_w8a8=use_int8_w8a8,
|
|
use_int8_w8a16=use_int8_w8a16,
|
|
use_int4_w4a16=use_int4_w4a16,
|
|
per_channel_quant=per_channel_quant,
|
|
block_shape=block_shape,
|
|
)
|
|
|
|
intermediate_cache2 = torch.empty(
|
|
(M * topk_ids.shape[1], N // 2),
|
|
device=hidden_states.device,
|
|
dtype=hidden_states.dtype,
|
|
)
|
|
|
|
if activation == "silu":
|
|
if gemm1_alpha is not None:
|
|
assert gemm1_limit is not None
|
|
intermediate_cache2 = swiglu_with_alpha_and_limit(
|
|
intermediate_cache1.view(-1, N),
|
|
gemm1_alpha,
|
|
gemm1_limit,
|
|
)
|
|
elif _is_cuda:
|
|
silu_and_mul(intermediate_cache1.view(-1, N), intermediate_cache2)
|
|
else:
|
|
vllm_ops.silu_and_mul(
|
|
intermediate_cache2, intermediate_cache1.view(-1, N)
|
|
)
|
|
elif activation == "gelu":
|
|
assert gemm1_alpha is None, "gemm1_alpha is not supported for gelu"
|
|
assert gemm1_limit is None, "gemm1_limit is not supported for gelu"
|
|
if _is_cuda:
|
|
gelu_and_mul(intermediate_cache1.view(-1, N), intermediate_cache2)
|
|
else:
|
|
vllm_ops.gelu_and_mul(
|
|
intermediate_cache2, intermediate_cache1.view(-1, N)
|
|
)
|
|
else:
|
|
raise ValueError(f"Unsupported activation: {activation=}")
|
|
|
|
intermediate_cache3 = torch.empty(
|
|
(M, topk_ids.shape[1], w2.shape[1]),
|
|
device=hidden_states.device,
|
|
dtype=hidden_states.dtype,
|
|
)
|
|
|
|
if no_combine:
|
|
assert not inplace
|
|
out_hidden_states = torch.empty(
|
|
(M, topk_ids.shape[1], w2.shape[1]),
|
|
device=hidden_states.device,
|
|
dtype=hidden_states.dtype,
|
|
)
|
|
elif inplace:
|
|
out_hidden_states = hidden_states
|
|
else:
|
|
out_hidden_states = torch.empty_like(hidden_states)
|
|
|
|
invoke_fused_moe_kernel(
|
|
intermediate_cache2,
|
|
w2,
|
|
b2,
|
|
(
|
|
intermediate_cache3
|
|
if not no_combine and topk_ids.shape[1] != 1
|
|
else out_hidden_states.unsqueeze(0)
|
|
),
|
|
a2_scale,
|
|
w2_scale,
|
|
w2_zp,
|
|
topk_weights,
|
|
topk_ids,
|
|
sorted_token_ids,
|
|
expert_ids,
|
|
num_tokens_post_padded,
|
|
not apply_router_weight_on_input,
|
|
1,
|
|
running_state["config"],
|
|
compute_type=compute_type,
|
|
use_fp8_w8a8=use_fp8_w8a8,
|
|
use_int8_w8a8=use_int8_w8a8,
|
|
use_int8_w8a16=use_int8_w8a16,
|
|
use_int4_w4a16=use_int4_w4a16,
|
|
per_channel_quant=per_channel_quant,
|
|
block_shape=block_shape,
|
|
)
|
|
|
|
if routed_scaling_factor is None:
|
|
routed_scaling_factor = 1.0
|
|
|
|
if no_combine:
|
|
pass
|
|
elif _is_cuda:
|
|
if topk_ids.shape[1] == 1 and routed_scaling_factor == 1.0:
|
|
pass # we write directly into out_hidden_states
|
|
elif topk_ids.shape[1] == 2 and routed_scaling_factor == 1.0:
|
|
torch.add(
|
|
intermediate_cache3[:, 0],
|
|
intermediate_cache3[:, 1],
|
|
out=out_hidden_states,
|
|
).squeeze(dim=1)
|
|
else:
|
|
# According to micro benchmark results, torch.compile can get better performance for small token.
|
|
if M <= 32:
|
|
moe_sum_reduce_torch_compile(
|
|
intermediate_cache3.view(*intermediate_cache3.shape),
|
|
out_hidden_states,
|
|
routed_scaling_factor,
|
|
)
|
|
else:
|
|
moe_sum_reduce_triton(
|
|
intermediate_cache3.view(*intermediate_cache3.shape),
|
|
out_hidden_states,
|
|
routed_scaling_factor,
|
|
)
|
|
elif _is_hip:
|
|
if _use_aiter:
|
|
moe_sum(
|
|
intermediate_cache3.view(*intermediate_cache3.shape),
|
|
out_hidden_states,
|
|
)
|
|
else:
|
|
vllm_ops.moe_sum(
|
|
intermediate_cache3.view(*intermediate_cache3.shape),
|
|
out_hidden_states,
|
|
)
|
|
else:
|
|
vllm_ops.moe_sum(
|
|
intermediate_cache3.view(*intermediate_cache3.shape),
|
|
out_hidden_states,
|
|
)
|
|
|
|
return TritonRunnerOutput(
|
|
hidden_states=out_hidden_states,
|
|
)
|
|
|
|
@property
|
|
def runner_backend(self) -> MoeRunnerBackend:
|
|
return MoeRunnerBackend.TRITON
|
|
|
|
|
|
@register_fused_func("none", "triton")
|
|
def fused_experts_none_to_triton(
|
|
dispatch_output: StandardDispatchOutput,
|
|
quant_info: TritonMoeQuantInfo,
|
|
runner_config: MoeRunnerConfig,
|
|
) -> StandardCombineInput:
|
|
from sglang.srt.layers.moe.fused_moe_triton.fused_moe import fused_experts
|
|
from sglang.srt.layers.moe.token_dispatcher.standard import StandardCombineInput
|
|
|
|
output = fused_experts(
|
|
hidden_states=dispatch_output.hidden_states,
|
|
w1=quant_info.w13_weight,
|
|
w2=quant_info.w2_weight,
|
|
topk_output=dispatch_output.topk_output,
|
|
moe_runner_config=runner_config,
|
|
b1=quant_info.b13,
|
|
b2=quant_info.b2,
|
|
use_fp8_w8a8=quant_info.use_fp8_w8a8,
|
|
use_int8_w8a8=quant_info.use_int8_w8a8,
|
|
use_int8_w8a16=quant_info.use_int8_w8a16,
|
|
use_int4_w4a16=quant_info.use_int4_w4a16,
|
|
per_channel_quant=quant_info.per_channel_quant,
|
|
w1_scale=quant_info.w13_scale,
|
|
w2_scale=quant_info.w2_scale,
|
|
w1_zp=quant_info.w13_zp,
|
|
w2_zp=quant_info.w2_zp,
|
|
a1_scale=quant_info.a13_scale,
|
|
a2_scale=quant_info.a2_scale,
|
|
block_shape=quant_info.block_shape,
|
|
)
|
|
|
|
return StandardCombineInput(
|
|
hidden_states=output,
|
|
)
|
|
|
|
|
|
@register_pre_permute("standard", "triton")
|
|
def pre_permute_standard_to_triton(
|
|
dispatch_output: StandardDispatchOutput,
|
|
quant_info: TritonMoeQuantInfo,
|
|
runner_config: MoeRunnerConfig,
|
|
running_state: dict,
|
|
) -> TritonRunnerInput:
|
|
|
|
# NOTE: this is dead code as a fused func for standard format is registered.
|
|
# This is left here for testing and examples.
|
|
|
|
from sglang.srt.layers.moe.fused_moe_triton.fused_moe import (
|
|
get_config_dtype_str,
|
|
moe_align_block_size,
|
|
try_get_optimal_moe_config,
|
|
)
|
|
from sglang.srt.layers.moe.topk import TopKOutputChecker
|
|
|
|
hidden_states, topk_output = (
|
|
dispatch_output.hidden_states,
|
|
dispatch_output.topk_output,
|
|
)
|
|
|
|
assert TopKOutputChecker.format_is_standard(topk_output)
|
|
|
|
num_tokens = hidden_states.shape[0]
|
|
num_local_experts = runner_config.num_local_experts
|
|
|
|
if (
|
|
not (quant_info.use_fp8_w8a8 or quant_info.use_int8_w8a8)
|
|
or quant_info.block_shape is not None
|
|
or _use_aiter
|
|
):
|
|
padding_size = 0
|
|
else:
|
|
padding_size = _MOE_PADDING_SIZE
|
|
|
|
config_dtype = get_config_dtype_str(
|
|
use_fp8_w8a8=quant_info.use_fp8_w8a8,
|
|
use_int8_w8a8=quant_info.use_int8_w8a8,
|
|
use_int8_w8a16=quant_info.use_int8_w8a16,
|
|
use_int4_w4a16=quant_info.use_int4_w4a16,
|
|
dtype=hidden_states.dtype,
|
|
)
|
|
|
|
get_config_func = functools.partial(
|
|
try_get_optimal_moe_config,
|
|
quant_info.w13_weight.shape,
|
|
(
|
|
num_local_experts,
|
|
quant_info.w2_weight.shape[1],
|
|
quant_info.w2_weight.shape[2] - padding_size,
|
|
),
|
|
topk_output.topk_ids.shape[1],
|
|
config_dtype,
|
|
block_shape=quant_info.block_shape,
|
|
per_channel_quant=quant_info.per_channel_quant,
|
|
)
|
|
|
|
config = get_config_func(num_tokens)
|
|
|
|
sorted_token_ids, expert_ids, num_tokens_post_padded = moe_align_block_size(
|
|
topk_output.topk_ids, config["BLOCK_SIZE_M"], num_local_experts
|
|
)
|
|
|
|
running_state["config"] = config
|
|
|
|
return TritonRunnerInput(
|
|
hidden_states=hidden_states,
|
|
topk_weights=topk_output.topk_weights,
|
|
topk_ids=topk_output.topk_ids,
|
|
sorted_token_ids=sorted_token_ids,
|
|
expert_ids=expert_ids,
|
|
num_tokens_post_padded=num_tokens_post_padded,
|
|
)
|
|
|
|
|
|
@register_post_permute("triton", "standard")
|
|
def post_permute_triton_to_standard(
|
|
runner_output: TritonRunnerOutput,
|
|
quant_info: TritonMoeQuantInfo,
|
|
runner_config: MoeRunnerConfig,
|
|
running_state: dict,
|
|
) -> StandardCombineInput:
|
|
|
|
# NOTE: this is dead code as a fused func for standard format is registered.
|
|
# This is left here for testing and examples.
|
|
|
|
from sglang.srt.layers.moe.token_dispatcher.standard import StandardCombineInput
|
|
|
|
return StandardCombineInput(
|
|
hidden_states=runner_output.hidden_states,
|
|
)
|