Unverified Commit 1b25f1fe authored by Shu Wang's avatar Shu Wang Committed by GitHub
Browse files

Update flashinfer CUTLASS MoE Kernel (#21408)


Signed-off-by: default avatarShu Wang. <shuw@nvidia.com>
parent e8cb0d04
...@@ -11,7 +11,7 @@ from vllm.forward_context import get_forward_context ...@@ -11,7 +11,7 @@ from vllm.forward_context import get_forward_context
from vllm.model_executor.layers.fused_moe.config import FusedMoEQuantConfig from vllm.model_executor.layers.fused_moe.config import FusedMoEQuantConfig
from vllm.model_executor.layers.fused_moe.utils import ( from vllm.model_executor.layers.fused_moe.utils import (
extract_required_args, moe_kernel_quantize_input) extract_required_args, moe_kernel_quantize_input)
from vllm.utils.flashinfer import block_scale_interleave from vllm.utils.flashinfer import nvfp4_block_scale_interleave
def get_local_sizes(local_tokens): def get_local_sizes(local_tokens):
...@@ -92,7 +92,7 @@ class FlashInferCutlassMoEPrepareAndFinalize(mk.FusedMoEPrepareAndFinalize): ...@@ -92,7 +92,7 @@ class FlashInferCutlassMoEPrepareAndFinalize(mk.FusedMoEPrepareAndFinalize):
dim=0, dim=0,
sizes=get_local_sizes(local_tokens)) sizes=get_local_sizes(local_tokens))
a1_m, a1_n = a1q.shape a1_m, a1_n = a1q.shape
a1q_scale = block_scale_interleave(a1q_scale) a1q_scale = nvfp4_block_scale_interleave(a1q_scale)
return a1q, a1q_scale, None, topk_ids, topk_weights return a1q, a1q_scale, None, topk_ids, topk_weights
......
...@@ -1254,8 +1254,8 @@ class ModelOptNvFp4FusedMoE(FusedMoEMethodBase): ...@@ -1254,8 +1254,8 @@ class ModelOptNvFp4FusedMoE(FusedMoEMethodBase):
x, layer.w13_weight, layer.w2_weight), ( x, layer.w13_weight, layer.w2_weight), (
"Flashinfer CUTLASS Fused MoE not applicable!") "Flashinfer CUTLASS Fused MoE not applicable!")
a1_gscale = torch.min(layer.w13_input_scale_quant) a1_gscale = layer.w13_input_scale_quant
a2_gscale = torch.min(layer.w2_input_scale_quant) a2_gscale = layer.w2_input_scale_quant
extra_expert_args = { extra_expert_args = {
'g1_alphas': layer.g1_alphas, 'g1_alphas': layer.g1_alphas,
'g2_alphas': layer.g2_alphas, 'g2_alphas': layer.g2_alphas,
......
...@@ -69,8 +69,8 @@ flashinfer_trtllm_fp8_block_scale_moe = _lazy_import_wrapper( ...@@ -69,8 +69,8 @@ flashinfer_trtllm_fp8_block_scale_moe = _lazy_import_wrapper(
flashinfer_cutlass_fused_moe = _lazy_import_wrapper("flashinfer.fused_moe", flashinfer_cutlass_fused_moe = _lazy_import_wrapper("flashinfer.fused_moe",
"cutlass_fused_moe") "cutlass_fused_moe")
fp4_quantize = _lazy_import_wrapper("flashinfer", "fp4_quantize") fp4_quantize = _lazy_import_wrapper("flashinfer", "fp4_quantize")
block_scale_interleave = _lazy_import_wrapper("flashinfer", nvfp4_block_scale_interleave = _lazy_import_wrapper(
"block_scale_interleave") "flashinfer", "nvfp4_block_scale_interleave")
# Special case for autotune since it returns a context manager # Special case for autotune since it returns a context manager
autotune = _lazy_import_wrapper( autotune = _lazy_import_wrapper(
...@@ -95,7 +95,7 @@ def has_flashinfer_cutlass_fused_moe() -> bool: ...@@ -95,7 +95,7 @@ def has_flashinfer_cutlass_fused_moe() -> bool:
required_functions = [ required_functions = [
("flashinfer.fused_moe", "cutlass_fused_moe"), ("flashinfer.fused_moe", "cutlass_fused_moe"),
("flashinfer", "fp4_quantize"), ("flashinfer", "fp4_quantize"),
("flashinfer", "block_scale_interleave"), ("flashinfer", "nvfp4_block_scale_interleave"),
] ]
for module_name, attr_name in required_functions: for module_name, attr_name in required_functions:
...@@ -110,7 +110,7 @@ __all__ = [ ...@@ -110,7 +110,7 @@ __all__ = [
"flashinfer_trtllm_fp8_block_scale_moe", "flashinfer_trtllm_fp8_block_scale_moe",
"flashinfer_cutlass_fused_moe", "flashinfer_cutlass_fused_moe",
"fp4_quantize", "fp4_quantize",
"block_scale_interleave", "nvfp4_block_scale_interleave",
"autotune", "autotune",
"has_flashinfer_moe", "has_flashinfer_moe",
"has_flashinfer_cutlass_fused_moe", "has_flashinfer_cutlass_fused_moe",
......
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