docs/contrib_ops/cuda/moe_qmoe.md
This document describes the design, schema, kernel dispatch, weight formats, and current
implementation status of the MoE (com.microsoft::MoE) and QMoE
(com.microsoft::QMoE) operators on the CUDA execution provider.
The CUTLASS kernels are derived from TensorRT-LLM (CUTLASS 4.4.2, commit 346018db87)
and have been significantly modified for ONNX Runtime — see
§16 Differences vs. TensorRT-LLM.
Two contrib ops are registered in the com.microsoft domain:
| Operator | Purpose | Source |
|---|---|---|
MoE | Standard (non-quantized) Mixture-of-Experts. FP16/BF16/FP32 weights. | onnxruntime/contrib_ops/cuda/moe/moe.cc |
QMoE | Quantized Mixture-of-Experts. INT4/INT8/FP8/MXFP4 weights, FP16/BF16/FP8 activations. | onnxruntime/contrib_ops/cuda/moe/moe_quantization.cc |
Both ops share the same CUTLASS-based runner (CutlassMoeFCRunner), routing engine, and sort/permute infrastructure. They differ only in how the weight tensors are interpreted.
The execution pipeline is:
input tokens → router (top-k softmax) → permute by expert
→ GEMM1 (per-expert) → activation (SiLU/GeLU/ReLU/SwiGLU)
→ GEMM2 (per-expert) → un-permute → weighted sum
| Attribute | Type | Default | Description |
|---|---|---|---|
k | int | 1 | Top-K experts selected per token. |
activation_type | string | "relu" | One of "relu", "gelu", "silu", "swiglu", "identity". These are the only values accepted end-to-end (attribute parsing); other kernel-internal types are not reachable from ONNX. |
normalize_routing_weights | int | 0 | Re-normalize the top-k weights to sum to 1. |
use_sparse_mixer | int | 0 | Enable sparse-mixer routing variant. |
swiglu_fusion | int | 0 | 0=no fusion, 1=interleaved (Gate/Value), 2=block (Gate;Value). See §8. |
activation_alpha | float | 1.0 | SwiGLU alpha. Default 1.0 (Standard SwiGLU); GPT-OSS uses 1.702. |
activation_beta | float | 0.0 | SwiGLU beta. Default 0.0 (Standard SwiGLU); GPT-OSS uses 1.0. |
swiglu_limit | float | unset (+inf) | SwiGLU clamp limit. Unset means no clamp (Standard SwiGLU); GPT-OSS uses 7.0. |
expert_weight_bits (QMoE only) | int | 4 | 4 (INT4/MXFP4) or 8 (INT8/FP8). |
block_size (QMoE only) | int | -1 | Group size for INT4/INT8 group-wise quantization. -1 = per-output-channel. |
quant_type (QMoE only) | string | "int" | "int", "fp4", "fp8", "wfp4afp8". See §3. |
| Constraint | Allowed Types | Used By |
|---|---|---|
T | float, float16, bfloat16 | input, output, biases, router |
T1 | uint8, float8e4m3fn | quantized weights and zero points: INT4/INT8/FP4 weights use uint8; FP8 weights use float8e4m3fn |
T2 | float, float16, bfloat16, uint8 | INT4/INT8 weight scales use floating-point tensors; MXFP block scales use uint8 storage |
T4 | float | per-expert global scales, FP8 activation scales |
The schema is unified across all quant_type values. Inputs that are not relevant
to the selected quant_type are simply omitted (most are Optional).
| Idx | Name | Type | Shape | Used by quant_type |
|---|---|---|---|---|
| 0 | input | T | (num_tokens, hidden_size) | all |
| 1 | router_probs | T | (num_tokens, num_experts) | all |
| 2 | fc1_experts_weights | T1 | (E, fusion×inter, hidden/pack) | all |
| 3 | fc1_scales | T2 (Opt) | varies — see §2.4 | int, fp4, wfp4afp8 |
| 4 | fc1_experts_bias | T (Opt) | (E, fusion×inter) | optional |
| 5 | fc2_experts_weights | T1 | (E, hidden, inter/pack) | all |
| 6 | fc2_scales | T2 (Opt) | varies | int, fp4, wfp4afp8 |
| 7 | fc2_experts_bias | T (Opt) | (E, hidden) | optional |
| 8 | fc3_experts_weights | T1 (Opt) | (E, inter, hidden/pack) | optional (SwiGLU split-weight) |
| 9 | fc3_scales | T2 (Opt) | varies | optional |
| 10 | fc3_experts_bias | T (Opt) | (E, inter) | optional |
| 11 | fc1_zero_points | T1 (Opt) | matches fc1_scales | int only |
| 12 | fc2_zero_points | T1 (Opt) | matches fc2_scales | int only |
| 13 | fc3_zero_points | T1 (Opt) | matches fc3_scales | optional, int only |
| 14 | router_weights | T (Opt) | (num_tokens, num_experts) | optional (DeepSeek noaux_tc) |
| 15 | fc1_global_scale | T4 (Opt) | (num_experts,) | fp4, fp8, wfp4afp8 |
| 16 | fc2_global_scale | T4 (Opt) | (num_experts,) | fp4, fp8, wfp4afp8 |
| 17 | fc1_act_scale | T4 (Opt) | (1,) or (num_experts,) | wfp4afp8 (Variant A) |
| 18 | fc2_act_scale | T4 (Opt) | (1,) or (num_experts,) | wfp4afp8 (Variant A) |
| 19 | fc1_act_block_scale | T2 (Opt, float8e8m0) | (E, M_pad, K/32) | wfp4afp8 (Variant B) |
| 20 | fc2_act_block_scale | T2 (Opt, float8e8m0) | (E, M_pad, inter/32) | wfp4afp8 (Variant B) |
E = num_experts. pack = 8 / expert_weight_bits for INT/MXFP4 weights; pack = 1
for FP8 weights. fusion = 2 for swiglu_fusion=1, otherwise 1.
router_weights (input 14) enables DeepSeek-style routing where router_probs
is used only for top-K selection and router_weights provides the mixing
weights gathered at the selected expert indices. When omitted, router_probs
is used for both (backward compatible).
quant_typequant_type | dtype | Shape | Semantics |
|---|---|---|---|
"int" (group-wise) | float / fp16 / bf16 | (E, N, K/block_size) | w_float = w_int × scale (+ zero) |
"int" (per-channel) | float / fp16 / bf16 | (E, N) | per-output-channel scale |
"fp4" | uint8 (float_ue8m0_t) | (E, N, K/32) | MXFP4 block scale, group=32 |
"fp8" | — | — | not used; only the per-expert global scale (input 15/16/17) is needed |
"wfp4afp8" | uint8 (float_ue8m0_t) | (E, N, K/32) | MXFP4 block scale, group=32 |
Inputs 11/12/13 (fc*_zero_points) are valid only for "int". FP8 e4m3 and
FP4 e2m1 are symmetric formats with no zero-point.
quant_type | Notation | Activation | Weight | Native SM | Fallback | Build gate |
|---|---|---|---|---|---|---|
"int" (4-bit) | W4A16 | FP16/BF16 | INT4 group-wise | SM75+ (Ampere GemmGrouped) | — | always |
"int" (8-bit) | W8A16 | FP16/BF16 | INT8 group-wise | SM75+ | — | always |
"fp8" | W8A16-fp8 | BF16/FP16 | FP8 e4m3 (no packing) | SM90+ native | dequant→A16 on SM<90 | ENABLE_FP8 (CUDA ≥ 11.8) |
"fp4" | W4A16-MXFP4 | BF16/FP16 | MXFP4 e2m1, group=32 | SM120+ native | dequant→A16 on SM<120 | ENABLE_FP4 + USE_FP4_QMOE (CUDA ≥ 12.8) |
"wfp4afp8" | W4A8-MXFP4×FP8 | FP8 e4m3 (quantized in-runner) | MXFP4 e2m1, group=32 | SM100+ native | dequant→A16 on SM<100 | ENABLE_FP4 + USE_FP4_QMOE + ENABLE_FP8 |
Selection logic (see moe_quantization.cc):
if (quant_type_ == "fp4") use_fp4_dequant_fallback_ = (sm_ < 120);
if (quant_type_ == "wfp4afp8") use_wfp4afp8_dequant_fallback_ = (sm_ < 100);
if (quant_type_ == "fp8") use_fp8_dequant_fallback_ = (sm_ < 90);
expert_weight_bits validation:
int → 4 or 8fp4, wfp4afp8 → must be 4fp8 → must be 8When the build is configured without the corresponding flags, quant_type
values that require them are rejected at construction time:
#if !defined(ENABLE_FP4) || !defined(USE_FP4_QMOE)
ORT_ENFORCE(quant_type_ != "fp4",
"QMoE quant_type='fp4' requires USE_FP4_QMOE with CUDA 12.8 or newer.");
ORT_ENFORCE(quant_type_ != "wfp4afp8", ...);
#endif
#if !defined(ENABLE_FP8)
ORT_ENFORCE(quant_type_ != "wfp4afp8", "...");
#endif
The runner selects between three CUTLASS kernel families and one small-row GEMV
fast path at runtime. The choice is
made by CutlassMoeFCRunner::supportsTmaWarpSpecialized() and the dispatch headers
under onnxruntime/contrib_ops/cuda/llm/moe_gemm/.
| Path | CUTLASS class | Used for | SM range |
|---|---|---|---|
| MoE GEMV fast path | fpA_intB_gemv-based custom kernel | INT4/INT8 per-column WA16 and symmetric INT4/INT8 block-wise WA16 with FP16 or BF16 activations and true decode row counts | SM80+ |
| Ampere GemmGrouped | cutlass::gemm::kernel::GemmGrouped | INT4/INT8 W*A16, FP8 W8A16 dequant fallback, FP32 | SM75–SM89, plus all mixed-input on SM90/SM120 |
| TMA Warp-Specialized (mixed-input) | CollectiveBuilderMixedInput | Same-type FP16×FP16 / BF16×BF16, native MXFP4 W4A16 | SM90 (same-type), SM120 (FP4 W4A16) |
| Block-Scaled Tensor Op | OpClassBlockScaledTensorOp | Native FP8×MXFP4 (wfp4afp8) | SM100+ (Blackwell) |
The MoE GEMV fast path is selected before the Ampere grouped GEMM for integer QMoE when all of the following are true:
block_size <= 0 for per-column INT4/INT8, or block_size is 32, 64, or 128 for block-wise INT4/INT8;expanded_num_rows = num_tokens * top_k is in (0, 8];N >= 512 and K >= 512;expanded_num_rows > 4, the logical MoE intermediate size is at least 512;N is divisible by the column-interleaved tile width (32 for INT4, 16 for INT8),
and K satisfies the kernel step and, for block-wise scales, complete-block alignment.Asymmetric block-wise quantization, broader row counts, and dimensions outside the profiled gate stay on grouped GEMM until profile data shows an end-to-end GEMV win. FP16 and BF16 share the same dispatch gate and custom kernels; for a given shape, BF16 routes to GEMV exactly where FP16 does and shows comparable latency.
Set ORT_DISABLE_MOE_GEMV=1 before process start to force the grouped GEMM
fallback for debugging, benchmarking, or bisecting numerical differences. The
switch is cached on first use.
| Mode | SM75-89 (Ampere/Ada) | SM90 (Hopper) | SM100 (Blackwell) | SM120 (RTX 5090) |
|---|---|---|---|---|
| INT4/INT8 W*A16 | Ampere GemmGrouped | Ampere GemmGrouped (TMA WS rejects mixed-type INT) | Ampere GemmGrouped | Ampere GemmGrouped |
| FP16/BF16 (no quant, MoE op) | Ampere GemmGrouped | TMA WS (same-type) | TMA WS / valid Blackwell spec | TMA WS / Ampere fallback |
| FP8 W8A16 native | dequant fallback | TMA WS | TMA WS | SM89 FP8 kernel redirect |
| FP4 W4A16 native | dequant fallback | dequant fallback | dequant fallback | TMA WS mixed-input FP4 |
| WFP4AFP8 native | dequant fallback | dequant fallback | Block-scaled tensor op | Block-scaled tensor op |
| FP32 | Ampere GemmGrouped (forced) | same | same | same |
min_dim)hidden_size and inter_size must be ≥ 16.When the requested native path is not available on the running GPU, the QMoE op decodes the quantized weights into FP16/BF16 once and feeds them to the dense A16 runner. Helper kernels:
LaunchQMoEDequantizeFp4Weights — MXFP4 → FP16/BF16LaunchQMoEDequantizeFp8Weights — FP8 e4m3 → FP16/BF16The decoded buffers are owned by the QMoE op for the lifetime of the session.
RTX 3090 (SM86), RTX 4090 (SM89), H200 (SM90), GB200/B200 (SM100), RTX 5090 (SM120).
QMoE::PrePack (moe_quantization.cc)
copies constant inputs to GPU once and, for INT4/INT8, derives a pre-scaled bias
from the zero points so the kernel can apply asymmetric quantization with no
extra subtraction.
Not transformed at runtime. INT4/INT8 weights must already be packed offline by
pack_weights_for_cuda_mixed_gemm (see §6). MXFP4 weights
must be packed by pack_fp4_weights_for_cuda_moe_gemm. FP8 weights are stored
as raw e4m3 bytes (no packing).
The kernels use a pre-calculated additive bias to avoid the per-element zero-point subtraction.
uint8 → int8 (− 128). Bias compensates:
bias = (128 − ZP) × scale
(W_stored + 128 − ZP) × scale = (W_orig − ZP) × scale.bias = (8 − ZP) × scale
(W − (ZP − 8)) × scale.fc*_zero_points): bias = 0.Kernels: LaunchQMoEPrePackOffsetBias, LaunchQMoEPrePackPacked4BitZPKernel.
Output buffer (packed_bias) has the scale dtype (float16 / bfloat16 / float).
For floating-point quantization modes, PrePack simply copies constant tensors
to GPU memory:
| Input idx | Member | Used by |
|---|---|---|
| 15/16/17 | packed_fc{1,2,3}_global_scale_ | fp4, fp8, wfp4afp8 |
| 18/19 | packed_fc{1,2}_act_scale_ | wfp4afp8 (Variant A) |
Block scales (inputs 3/6/9 for fp4/wfp4afp8 and 20/21 for wfp4afp8 Variant B)
that are constant initializers are also copied to GPU; otherwise they are
read directly from context->Input at runtime.
This section covers the five distinct weight encodings supported by QMoE.
quant_type="int", expert_weight_bits=4)| Tensor | Logical | Packed storage |
|---|---|---|
| FC1 weight | [E, N, K] (N = fusion × inter) | [E, N, K/2] bytes |
| FC1 scales | — | [E, N, K/group_size] (T2) |
| FC1 zero-points (asymmetric) | — | [E, N, K/group_size/2] packed (T1) |
INT4 packing layout within a byte: [high_nibble | low_nibble] = [elt_1 | elt_0].
Each INT4 element is in [-8, 7] (signed) before bias, [0, 15] after the +8 bias.
pack_weights_for_cuda_mixed_gemm)INT MoE/QMoE CUDA kernels, including the small-row MoE GEMV path, consume the
SM80 ColumnMajorTileInterleave<64, 4> layout. Pack INT4/INT8 MoE weights with
the SM80 target layout even when the runtime GPU is Hopper or newer.
[N, K] per expert (Out × In), 2 elements per byte for INT4.uint4 [0, 15] → subtract 8 → int8 [-8, 7].[K, N] → column-major [N, K] with nibble-level swaps.{0, 1, 8, 9, 16, 17, 24, 25, 2, 3, 10, 11, 18, 19, 26, 27,
4, 5, 12, 13, 20, 21, 28, 29, 6, 7, 14, 15, 22, 23, 30, 31}
kPerm_W4_A16 in fpA_intB_gemm_preprocessors_impl.h).ColumnMajorTileInterleave<64, 4> on Ampere/Ada/Blackwell.
RowsPerTile=64 (K direction), ColumnsInterleaved=4 (N direction).uint8),
reorder elements within a 32-bit word from [7,6,5,4,3,2,1,0] to
[7,5,3,1,6,4,2,0] to minimize shift/mask cost in the kernel
(add_bias_and_interleave_int8s_inplace_kernel).// Symmetric (no zero-point): W_stored is uint8 in [0, 15]
float W = (float)(W_stored - 8) * scale;
// Asymmetric (with zero tensor):
float W = (float)W_stored * scale + zero; // zero is the scaled bias from PrePack
quant_type="int", expert_weight_bits=8)| Tensor | Logical | Packed storage |
|---|---|---|
| FC1 weight | [E, N, K] | [E, N, K] (no packing) |
| FC1 scales | — | [E, N, K/group_size] (T2) |
Preprocessing pipeline differences from INT4:
{0, 1, 8, 9, 2, 3, 10, 11, 4, 5, 12, 13, 6, 7, 14, 15}
(kPerm_W8_A16).ColumnMajorTileInterleave<64, 2> (RowsPerTile=64,
ColumnsInterleaved=2).[-128,127] → unsigned [0,255]).[3, 1, 2, 0] per 32-bit word.Dequantization (symmetric): W = (W_stored - 128) * scale.
| Aspect | INT4 | INT8 |
|---|---|---|
| Elements per byte | 2 | 1 |
| Elements per int32 word | 8 | 4 |
| Value range (signed) | [-8, 7] | [-128, 127] |
| Bias offset | +8 | +128 |
| Row permutation size | 32 rows | 16 rows |
| Packed shape | [E, N, K/2] | [E, N, K] |
| Column interleave | <64, 4> | <64, 2> |
quant_type="fp8")[E, N, K] float8e4m3fn (Float8E4M3FN in ORT; __nv_fp8_e4m3 in CUDA), 1 byte per value.pack_size = 1 — no offline packing required.fc1_global_scale (input 15) of shape (E,),
T4 float32. No block scales (inputs 3/6/9 omitted).W_bf16 = fp8_to_bf16(W_fp8) × global_scale.quant_type="fp4" and "wfp4afp8")[E, N, K/2] uint8, reinterpreted as __nv_fp4_e2m1 (2 values per byte).pack_fp4_weights_for_cuda_moe_gemm (Python binding in
onnxruntime_pybind_quant.cc).
No Ampere-style row permutation or column interleaving — SM90+ TMA-based FP4
kernels expect a simpler column-major packed layout:
[N, K/2] FP4 (2 per byte along K, row-major per expert)[N, K] → [K, N][K, N/2] bytes (2 per byte along N, column-major packed)fc1_scales (input 3) — (E, N, K/32) uint8 storage,
semantically float_ue8m0_t (8-bit power-of-2 exponent).fc1_global_scale (input 15) — (E,) float32.W_float ≈ fp4_to_float(W_fp4) × ue8m0_to_float(block_scale) × global_scale.| Architecture | Activation | Supported block_size |
|---|---|---|
| SM75–89 (Turing/Ampere/Ada) | FP16/BF16 | 32, 64, 128 |
| SM90 (Hopper) | FP16/BF16 | falls back to Ampere — 32, 64, 128 |
| SM100/120 (Blackwell) | FP16/BF16 | falls back to Ampere — 32, 64, 128 |
For MXFP4, the block size is fixed at 32 by the format.
Weight packing is architecture-aware. The following table summarizes which packed weights are interchangeable across SMs:
| Target SM | Compatible packed weights from… | Notes |
|---|---|---|
| SM70 (Volta) | — | Not supported (no INT8 LDSM). |
| SM75 (Turing) | SM75/80/86/89/100/120 | LDSM permutation + column interleaving. |
| SM80 (Ampere) | SM75/80/86/89/100/120 | Same. |
| SM86/89 (Ada/Lovelace) | SM75/80/86/89/100/120 | Same. |
| SM90 (Hopper) | SM90 only | Hopper skips column interleaving (uses Permuted-Linear). |
| SM100/120 (Blackwell) | SM75/80/86/89/100/120 | Falls back to SM80 packing for INT4/INT8. |
Summary groups
pack_weights_for_cuda_mixed_gemm.SwiGLU formula:
SwiGLU(x) = G × Sigmoid(alpha × G) × (L + beta)
G = clamp(Gate, max=limit)
L = clamp(Value, min=-limit, max=limit)
Gate and Value are the two halves of the FC1 output. The behavior is controlled
by activation_alpha (alpha), activation_beta (beta) and swiglu_limit (limit).
| Parameter | Attribute | Default | Standard SwiGLU | GPT-OSS SwiGLU |
|---|---|---|---|---|
| alpha | activation_alpha | 1.0 | 1.0 | 1.702 |
| beta | activation_beta | 0.0 | 0.0 | 1.0 |
| limit | swiglu_limit | unset → +inf (no clamp) | unset / +inf | 7.0 |
The attribute defaults are exactly Standard SwiGLU, which reduces to:
SwiGLU(x) = Gate × Sigmoid(Gate) × Value = SiLU(Gate) × Value
This is the activation used by Llama- and Gemma-style MoE. GPT-OSS SwiGLU instead
uses alpha=1.702, beta=1.0, limit=7.0. Both variants run on the same CUDA
kernel; when alpha=1.0, beta=0.0 and limit=+inf, the kernel takes the plain
SiLU(Gate) × Value path (no clamping).
The operator supports three fusion modes via the swiglu_fusion attribute:
swiglu_fusion | Inputs | FC1 layout | Notes |
|---|---|---|---|
| 0 | fc1, fc2, fc3 | separate Gate / Value / Up | Conceptually three GEMMs. |
| 1 (interleaved) | fc1, fc2 | [Gate_0, Value_0, Gate_1, Value_1, …] — [E, 2×inter, hidden] | GPT-OSS layout. |
| 2 (block) | fc1, fc2 | `[Gate_0…Gate_N | Value_0…Value_N]—[E, 2×inter, hidden]` |
CPU note: The CPU MoE/QMoE implementation only supports the interleaved SwiGLU layout (
swiglu_fusion=1). The concatenated layout (swiglu_fusion=2) throwsORT_NOT_IMPLEMENTEDon CPU; use the CUDA EP for concatenated SwiGLU.
The non-quantized MoE operator (not QMoE) accepts an optional fc3_experts_weights
input. When present, the op allocates a temporary buffer and concatenates fc1 (Gate)
with fc3 (Value) per expert at runtime, simulating swiglu_fusion=2. This makes it
easy to feed Mixtral-style models without offline fusion.
Note: This runtime fusion is only in standard MoE. For QMoE, weights must be fused offline before quantization+packing.
The QMoE operator supports MXFP4 quantized weights with FP16/BF16 activations
(W4A16) via quant_type="fp4". The kernel path is the mixed-input TMA
warp-specialized CUTLASS kernel.
Block-scaled tensor ops (OpClassBlockScaledTensorOp) require both operands to use
block scaling (FP4×FP4 or FP8×FP4). W4A16 has full-precision activations paired with
narrow FP4 weights — that is the mixed-input configuration. The dispatch flips on the
use_wfp4a16 flag in moe_gemm_kernels.h:
static constexpr bool use_wfp4a16 = weight_fp4 &&
(std::is_same_v<T, half> || std::is_same_v<T, __nv_bfloat16>);
CutlassMoeFCRunner<half, __nv_fp4_e2m1, half>::dispatchToArch()
└─ use_wfp4a16 == true
└─ select fusion from hopper_inputs.fusion (NONE or FINALIZE)
└─ select K tile: inputs.k % 256 == 0 → PackedScalesNum=1 (K=256)
else → PackedScalesNum=2 (K=128)
└─ sm90_dispatch_moe_mixed_dtype_gemm_to_cutlass<..., FUSION, PackedScalesNum>()
└─ Ktile = PackedScalesNum==2 ? 128 : 256
└─ dispatch on tile_config_sm90 enum (M×N from heuristic)
└─ sm90_dispatch_moe_mixed_dtype_gemm_config<..., FUSION, Shape<M, N, Ktile>>()
└─ dispatch on cluster_shape
└─ sm90_dispatch_mainloop_schedules<..., FUSION>()
└─ sm90_generic_mixed_moe_gemm_kernelLauncher()
├─ ElementA = cutlass::half_t (activation)
├─ ElementB = cutlass::float_e2m1_t (weight, stored as FP4)
├─ group_size = 32 (mxfp4_group_size)
├─ ElementScale = cutlass::float_ue8m0_t
├─ CollectiveBuilderMixedInput (FP4→FP16 upconvert in registers)
└─ Epilogue: NONE (per-expert output) or FINALIZE (fused scatter+scale)
Note: H100/H200 (SM90) does not have native FP4 tensor core instructions. The kernel uses FP4 purely
as a compressed storage format — weights are loaded via TMA and upconverted to FP16/BF16 in shared
memory/registers by CollectiveBuilderMixedInput before the actual MMA runs on FP16 tensor cores. This
is a memory bandwidth optimization (4x compression), not a compute throughput feature. Native FP4 MMA
is available on Blackwell (SM100+) via the separate block-scaled tensor op path (see §11).
Native FP4 path triggers when sm_ >= 120 (use_fp4_dequant_fallback_ = sm_ < 120).
On older SMs, MXFP4 weights are decoded via LaunchQMoEDequantizeFp4Weights and
fed to the dense A16 runner.
| Property | W4A16 (MXFP4) | W4A8-INT4 |
|---|---|---|
ElementA | half_t / bfloat16_t | float_e4m3_t |
ElementB | float_e2m1_t | int4b_t |
| Group size | 32 (MXFP4) | 128 (INT4) |
ElementScale | float_ue8m0_t | __nv_bfloat16 (SFA) |
| Epilogue α | 1 (no per-group α) | 0 (uses alpha_ptr_array) |
| Epilogue fusion | NONE or FINALIZE | NONE or FINALIZE |
| M tiles | 64, 128 | 64, 128 |
| N tiles | 16, 32, 64, 128 | 16, 32, 64, 128 |
| K tiles | 128, 256 | 128 × PackedScalesNum / sizeof(T) |
| Cluster shapes | (1,1), (2,1), (1,2), (2,2) | (1,1), (2,1), (1,2), (2,2) |
| Mainloop schedules | Pingpong, Cooperative | Pingpong, Cooperative |
The CUTLASS collective mainloop uses a type-dependent group size:
static constexpr bool IsMXFP4 = cute::is_same_v<ElementA, cutlass::float_e2m1_t>;
static constexpr int ScalingGroupSize = IsMXFP4 ? detail::mxfp4_group_size
: detail::int4_group_size;
This affects scale_k = K / ScalingGroupSize, NumMMAsPerChunk, and
NumChunksPerTileK calculations.
// QuantParams::FP4Inputs (moe_kernels.h)
struct FP4Inputs {
struct GemmInputs {
bool use_per_expert_act_scale = false;
float const* act_global_scale = nullptr; // nullptr for W4A16
NVFP4ElementSF const* weight_block_scale; // (E, N, K/32) ue8m0 bytes
float const* global_scale; // (E,) float
};
GemmInputs fc1, fc2;
};
// Block scaling type (moe_gemm_kernels.h)
enum class FpXBlockScalingType { MXFPX /*32*/, NVFP4 /*16*/, NONE };
// Constructor (sm_ >= 120, ENABLE_FP4 + USE_FP4_QMOE)
m_moe_runner = std::make_unique<CutlassMoeFCRunner<half, __nv_fp4_e2m1, half>>(
sm_, activation_type_, has_fc3_, normalize_routing_weights_, use_sparse_mixer_);
// ComputeInternal
quant_params = QuantParams::FP4(
/*fc1_act_global_scale*/ nullptr,
fc1_block_scales, fc1_global_scale,
/*fc2_act_global_scale*/ nullptr,
fc2_block_scales, fc2_global_scale);
| File | Template |
|---|---|
moe_gemm/moe_gemm_kernels_fp16_fp4.cu | MoeGemmRunner<half, __nv_fp4_e2m1, half> |
moe_gemm/moe_gemm_kernels_bf16_fp4.cu | MoeGemmRunner<__nv_bfloat16, __nv_fp4_e2m1, __nv_bfloat16> |
moe_gemm/launchers/moe_gemm_tma_ws_sm90_fp4_instantiation.cuh | Instantiation macros: ORT_MOE_GEMM_TMA_WS_SM90_FP4_INST_{PP,CO} (NONE fusion), ORT_MOE_GEMM_TMA_WS_SM90_FP4_INST_{PP,CO}_FINALIZE |
moe_gemm/launchers/generate_moe_gemm_tma_ws_sm90_fp4.py | Python generator: produces 320 .generated.cu files across FP16/BF16, M={64,128}, N={16,32,64,128}, K={128,256}, 4 cluster shapes, PP/CO schedules, NONE/FINALIZE fusion |
moe_gemm/launchers/moe_gemm_tma_ws_sm90_fp4_*.generated.cu | 320 generated SM90 mixed-input FP4 launcher instantiations (built when onnxruntime_USE_FP4_QMOE=ON) |
moe_gemm/launchers/moe_gemm_tma_ws_sm120_fp4_*.generated.cu | SM120 mixed-input FP4 launcher |
moe_gemm/launchers/moe_gemm_tma_ws_sm120_fp8_fp4.generated.cu | SM120 block-scaled FP8×FP4 launcher (WFP4AFP8) |
Build note: When
onnxruntime_USE_FP4_QMOEis OFF, the stub is also excluded and allmoe_gemm_kernels_*_fp4.cu/moe_gemm_tma_ws_sm{90,120}_fp4_*.generated.cufiles are filtered out. CUDA 13 PTXAS does not complete the FP4 M=128/N=64 pingpong specializations, so those specific generated units are also excluded (the dispatcher routes that tile through cooperative variants instead). See §14.
This subsection documents the expanded SM90 W4A16 mixed-input FP4 MoE GEMM configuration that closes the gap with TRT-LLM.
| Gap | Before | After |
|---|---|---|
| K tiles | 256 only | {128, 256} — selected at runtime based on inputs.k % 256 |
| Epilogue fusion | NONE only | NONE + FINALIZE — routed from hopper_inputs.fusion |
| N tiles accessible | Only CtaShape128x32x128B + ClusterShape_1x1x1 | All instantiated tiles (N={16,32,64,128}, clusters=(1,1),(2,1),(1,2),(2,2)) |
| Generated .cu files | ~80 | 320 |
| Mainloop schedules | Pingpong only (for most tiles) | Pingpong + Cooperative (for M=128 tiles) |
The CutlassTileConfigSM90 enum encodes K as "128B" (128 bytes), but for FP4 mixed-input the actual K tile
in elements differs. The dispatch uses a PackedScalesNum encoding trick:
PackedScalesNum = 1 → K = 256 elements (selected when inputs.k % 256 == 0)PackedScalesNum = 2 → K = 128 elements (selected otherwise)Inside sm90_dispatch_moe_mixed_dtype_gemm_to_cutlass:
constexpr int Ktile = is_wfp4a16 ? (PackedScalesNum == 2 ? 128 : 256) : 128 * PackedScalesNum / sizeof(T);
The mixed-input launcher now supports two epilogue modes, matching the same-type launcher pattern:
EpilogueMoeFusedFinalizeBuilderThe fusion is routed at runtime in dispatchToArch:
switch (hopper_inputs.fusion) {
case EpilogueFusion::FINALIZE:
sm90_dispatch_moe_mixed_dtype_gemm_to_cutlass<..., FINALIZE, PackedScalesNum>(...);
break;
case EpilogueFusion::NONE:
default:
sm90_dispatch_moe_mixed_dtype_gemm_to_cutlass<..., NONE, PackedScalesNum>(...);
break;
}
| File | Changes |
|---|---|
launchers/moe_gemm_tma_ws_mixed_input_launcher.h | Added EpilogueFusion FUSION template parameter |
launchers/moe_gemm_tma_ws_mixed_input_launcher.inl | Added FINALIZE epilogue support (CollectiveEpilogueFinalize, make_epilogue_scalars/args lambdas) |
launchers/moe_gemm_tma_ws_sm90_fp4_instantiation.cuh | Added _PP_FINALIZE and _CO_FINALIZE macros |
launchers/generate_moe_gemm_tma_ws_sm90_fp4.py | Added k and fusion fields; generates K={128,256} × NONE/FINALIZE |
moe_gemm_template_dispatch_tma_ws_mixed_dtype.h | FUSION param throughout; PackedScalesNum-based K tile; direct N tile mapping; workspace calc with Ntile=128 |
moe_gemm_template_dispatch.h | FUSION routing in dispatchToArch; removed restrictive wfp4a16 config filter |
quant_type="fp8" supplies FP8 e4m3 weights with BF16/FP16 activations. This was
added so H200 (SM90) has a working narrow-weight QMoE path that does not require
the FP4 launcher.
// Constructor — sm_ >= 90 with ENABLE_FP8
m_moe_runner = std::make_unique<CutlassMoeFCRunner<half, __nv_fp8_e4m3, half>>(...);
// or BF16 variant
m_moe_runner = std::make_unique<CutlassMoeFCRunner<__nv_bfloat16, __nv_fp8_e4m3, __nv_bfloat16>>(...);
The SM80 specialization in moe_gemm_template_dispatch.h
is intentionally left uninstantiated for W8A16-FP8; the implementation comment
states that the SM80 path is not supported and the native path is SM90 TMA WS.
On Hopper, use_wfp8a16 is routed through the TMA warp-specialized dispatcher,
which enforces inputs.gemm_config.is_tma_warp_specialized and applies the
per-expert global scale via alpha_scale_ptr_array in the epilogue. On SM120,
the code redirects W8A16-FP8 to the SM89 FP8 kernel implementations.
QuantParams::FP8::dequant_fc1 (float*, num_experts)
│
▼
computeFP8DequantScale() → alpha_scale_ptr_array[e] = &dequant_fc1[e]
│
▼
GroupedGemm with EpilogueOpDefault:
output[i] = fp8_to_bf16(gemm_accum[i]) * (*alpha_scale_ptr_array[expert])
computeFP8DequantScale and the Ampere FP8 epilogue already exist
(moe_kernels.cu) — the
QMoE op only needs to construct QuantParams::FP8(dequant_fc1, nullptr, dequant_fc2)
from the per-expert global scales (inputs 15/16).
LaunchQMoEDequantizeFp8Weights decodes weights into BF16/FP16 and the dense
A16 runner is used.
| File | Template |
|---|---|
moe_gemm/moe_gemm_kernels_fp16_fp8.cu | MoeGemmRunner<half, __nv_fp8_e4m3, half> |
moe_gemm/moe_gemm_kernels_bf16_fp8.cu | MoeGemmRunner<__nv_bfloat16, __nv_fp8_e4m3, __nv_bfloat16> |
Model input (BF16/FP16)
│
▼
Router → top-k → permute
│
▼ (still BF16/FP16 — no activation quantization)
GEMM1: bf16_act × fp8_weight → bf16_out (×dequant_fc1 in epilogue)
│
▼
Activation (SwiGLU / SiLU / ReLU / …)
│
▼
GEMM2: bf16_act × fp8_weight → bf16_out (×dequant_fc2 in epilogue)
│
▼
Un-permute → weighted sum → output
quant_type="wfp4afp8" pairs MXFP4 weights with FP8 e4m3 activations. Unlike
W4A16, both operands use block scaling, so this path uses CUTLASS's
block-scaled tensor op primitive (OpClassBlockScaledTensorOp) — natively
supported only on SM100+ (Blackwell).
// Constructor — sm_ >= 100 with ENABLE_FP4 + USE_FP4_QMOE + ENABLE_FP8
m_moe_runner = std::make_unique<
CutlassMoeFCRunner<__nv_fp8_e4m3, __nv_fp4_e2m1, half, half>>(...);
// or BF16 output:
m_moe_runner = std::make_unique<
CutlassMoeFCRunner<__nv_fp8_e4m3, __nv_fp4_e2m1, __nv_bfloat16, __nv_bfloat16>>(...);
The runner is constructed with T = __nv_fp8_e4m3, WeightType = __nv_fp4_e2m1,
OutputType = half/bf16, InputType = half/bf16. The user-facing input is
BF16/FP16; the runner quantizes it to MXFP8 (FP8 + per-block ue8m0 scales)
inside expandInputRowsKernel (MXFP8 branch). The MXFP8 branch is triggered
when quant_params.mxfp8_mxfp4.fc{1,2}.weight_block_scale is non-null.
| Variant | QuantParams factory | Activation scaling | Used inputs |
|---|---|---|---|
| A — global-scaled FP8 act | QuantParams::FP8MXFP4 | per-tensor or per-expert float scale | weight side (3,15) + (6,16); act 18, 19 |
| B — MXFP8 block-scaled act | QuantParams::MXFP8MXFP4 | per-block ue8m0 scales | weight side (3,15) + (6,16); act 20, 21 |
The current build uses Variant B (QuantParams::MXFP8MXFP4) for the native
SM100+ path; activation block scales are produced inside the runner by
expandInputRowsKernel. The act_scale inputs (18/19) are validated and
pre-packed for forward compatibility with Variant A but are not consumed by the
current native plumbing.
use_wfp4afp8_dequant_fallback_ = (sm_ < 100);
When the fallback is selected, MXFP4 weights are decoded with
LaunchQMoEDequantizeFp4Weights and fed into the dense BF16/FP16 MoE runner —
exactly the same path used by quant_type="fp4" on SM<120. Verified working
on SM90 (H200) using the bundled Python parity test.
| File | Template |
|---|---|
moe_gemm/moe_gemm_kernels_fp8_fp4.cu | MoeGemmRunner<__nv_fp8_e4m3, __nv_fp4_e2m1, half> and BF16 variant |
moe_gemm/launchers/moe_gemm_tma_ws_sm120_fp8_fp4.generated.cu | SM120 block-scaled tensor op launcher (FP8×FP4, 128×128×128 tile) |
Built only when onnxruntime_USE_FP4_QMOE=ON (which implies
ENABLE_FP4+ENABLE_FP8). The SM120 launcher additionally requires
COMPILE_BLACKWELL_SM120_TMA_GROUPED_GEMMS (set by cmake when SM120 is
in CMAKE_CUDA_ARCHITECTURES).
W4A16 : FP16 act (full precision) × FP4 weight (block scaled)
→ mixed-input (CollectiveBuilderMixedInput, group=32, ue8m0 scales)
W4A8 : FP8 act (block scaled) × FP4 weight (block scaled)
→ block-scaled tensor op (OpClassBlockScaledTensorOp — native FP4×FP8 in tensor cores)
The block-scaled tensor op path is fundamentally more efficient because the hardware fuses dequantization with the matrix multiply, vs. the in-register software dequant of the mixed-input path.
MSVC note: Native SM90/SM120 TMA grouped MoE kernels are disabled in Windows/MSVC builds because CUDA 13 generates host stubs that MSVC rejects for over-aligned TMA parameters. See §14.1.
| Mode | Notation | Activation | Weight | Status |
|---|---|---|---|---|
| W4AFP8 | INT4 weight + FP8 activation | FP8 e4m3 | INT4 (uint4b_t) | Deferred — fast path is gated to SM89 only in TRT-LLM (moe_gemm_template_dispatch.h); falls back to Ampere dequant on SM90+ which offers no advantage over W4A16-int. A proper SM90 W4AFP8 TMA WS kernel would be needed. |
| W8A8-fp8 | FP8 act + FP8 weight | FP8 e4m3 | FP8 e4m3 | Not implemented. Targeted for SM89 (RTX 4090). |
| WFP4AFP8 native validation | (above) | — | — | Native path implemented; end-to-end validation requires SM100+ hardware. |
| WFP4AFP8 Variant A | global-scaled FP8 activation | — | — | Requires QMoE op to accept pre-quantized FP8 input or wire a separate global-scaled BF16→FP8 prologue. |
The schema reserves the necessary input slots (18–21) so adding these modes will not change the operator interface.
The MoE GEMV work targets decode-sized integer QMoE workloads where grouped GEMM launch overhead, prologue overhead, and intermediate traffic dominate the FC compute. Detailed measurements are recorded in qmoe_gemv_experiments.md. This section is the implementation summary and current backlog.
Per-column here means the original INT4 W4A16 path with one scale per output
column: scale tensors are [E, N], and block_size <= 0.
| Area | What is implemented | Result |
|---|---|---|
| Benchmarking | Added profile_qmoe_gemv.py and profile_qmoe_gemv.sh to run GEMV-enabled and ORT_DISABLE_MOE_GEMV=1 grouped-GEMM profiles in separate processes. | Stable A/B profiles with the benchmark NVTX range; use parse_nsys.py --pattern '%' so fallback CUTLASS kernels are visible. |
| Route policy | Dispatch is data-gated to FP16/BF16 integer QMoE decode shapes, expanded_num_rows <= 8, N >= 512, K >= 512, and profiled alignment constraints. | Keeps tiny shapes and unprofiled row counts on grouped GEMM. |
| Row-to-expert lookup | The prologue materializes the local expert id for each permuted row and passes it to the GEMV kernels. | Removes repeated prefix-offset scans inside each N-tile CTA; GPT-OSS and Gemma model-shape kernels improved. |
| FC1 interleaved SwiGLU | The FC1 GEMV path can apply interleaved SwiGLU in the GEMV epilogue for the profiled FP16/BF16 INT4 path. | Removes the separate activation launch and FC1 intermediate traffic; GPT-OSS and Gemma improved end-to-end. |
| One-row finalize | num_rows == 1, top_k <= 4 has a static top-k finalize specialization. | Modest GPT-OSS finalize improvement while preserving the existing FC2 GEMV parallelism. |
| End-to-end GPT-OSS | The final per-column GEMV path was validated in ORT GenAI on GPT-OSS-20B INT4. | About 15% faster than the grouped-GEMM baseline and about 8% faster than the FasterTransformer reference at batch 1. |
Per-column INT8 means W8A16 with one symmetric scale per output column: scale
tensors are [E, N] and block_size <= 0. The per-column path previously
required block_size == 0 exactly in is_moe_gemv_supported, but the QMoE
runtime carries per-column scales as group_size = -1 (the QuantParams::Int
default), so per-column INT4 and INT8 silently fell back to grouped GEMM. The
gate now treats any group_size <= 0 as the per-column case, matching the GEMV
launcher dispatch that already mapped group_size <= 0 to the GroupSize == 0
kernel.
| Area | What is implemented | Result |
|---|---|---|
| Gate fix | is_moe_gemv_supported accepts group_size <= 0 (per-column) alongside 32/64/128 block-wise group sizes. | Per-column INT4 and INT8 now reach the GEMV kernels, and block-wise INT4/INT8 includes block_size=32. |
| INT8 details | The existing (half, uint8_t) and (__nv_bfloat16, uint8_t) GEMV kernel details cover per-column INT8 with no new instantiation. | FC1 interleaved-SwiGLU and FC2 per-column INT8 GEMV run for FP16 and BF16. |
| Profiling | int8_per_column_*_1024x4096_e8 and gpt_oss_20b_*_int8_2880x2880_e32 cases profiled in GEMV and ORT_DISABLE_MOE_GEMV=1 modes. | Real moe_gemv_kernel / moe_gemv_interleaved_swiglu_kernel confirmed; about 1.2x–1.4x lower benchmark latency than grouped GEMM with valid output. |
Block-wise here means quant_type="int" with block_size 32, 64, or 128 and scales
provided as [E, N, K / block_size]. QMoE prepack/runtime transposes those
scales to [E, K_blocks, N], and the GEMV kernels consume that same layout.
| Area | What is implemented | Result |
|---|---|---|
| INT4 and INT8 details | The GEMV kernel details support (half, cutlass::uint4b_t), (half, uint8_t), and the matching __nv_bfloat16 weight-type pairs. | Both weight types use the SM80 column-interleaved fpA_intB layout on all GPUs, matching the grouped-GEMM path, for FP16 and BF16 activations. |
| Group-size dispatch | GEMV templates now cover GroupSize == 0, 32, 64, and 128. | Per-column and block-wise paths share the same kernel structure while preserving complete-block checks. |
| Scale indexing | Block-wise scale loads use real_offset_k / GroupSize * n + real_offset_n with a K-loop scale step. | Reuses QMoE's existing [E, K_blocks, N] runtime scale layout; no new scale pack format is needed. |
| Symmetric-only gate | Block-wise GEMV runs only when zero-point compensation is absent. | Asymmetric block-wise models stay on grouped GEMM until a zero-point GEMV path is implemented and profiled. |
| Model-shape b64 profile | GPT-OSS-20B and Qwen3.6-35B-A3B were profiled with block_size=64. | Both use real GEMV kernels under the current 512 threshold and show about 1.4x lower benchmark latency than grouped GEMM fallback. |
BF16 activations now share the exact dispatch gate and custom GEMV kernels with
FP16. The runtime gate relaxes from T == half to T == half || T == __nv_bfloat16, and __nv_bfloat16 template instantiations were added for the
per-column INT4, block-wise INT4/INT8, and interleaved-SwiGLU GEMV kernels.
| Area | What is implemented | Result |
|---|---|---|
| Gate relaxation | tryLaunchMoeGemvIntSymmetric and the interleaved-SwiGLU variant accept __nv_bfloat16 activations with ScaleBiasType == T. | For a given shape, BF16 routes to GEMV exactly where FP16 does. |
| Kernel instantiation | moe_gemv.cu adds __nv_bfloat16 details/instantiations (group sizes 0/32/64/128, INT4/INT8, bias on/off) under ENABLE_BF16. | The custom FC1/FC2 GEMV kernels run for BF16; no grouped-GEMM fallback when the FP16 gate would route. |
| Profiling | GPT-OSS-20B, Qwen3.6-35B-A3B, and Gemma model shapes profiled with block_size=64 for both dtypes. | BF16 matches FP16 routing and latency within noise (about 1.3x–1.5x faster than grouped GEMM); SwiGLU BF16 parity tests pass. |
| Experiment | Why it was rejected |
|---|---|
| Broad GEMV enablement for tiny 128x256 cases | Raw GEMV compute kernels were faster, but end-to-end ORT loop latency was worse than grouped GEMM. |
| Expanded rows 8/16 for 1024x4096 before model-specific tuning | GEMV compute stayed competitive, but total latency regressed for larger expanded-row counts. |
CtaN=16, Threads=128 | Fewer N-tile CTAs did not offset lower per-CTA efficiency; GPT and Gemma kernels slowed down. |
CtaN=8, Threads=64 | Lower thread count slowed both profiled model-size cases. |
| Map-specialized launch | Avoiding the runtime map/prefix branch was neutral or slightly worse and added code size. |
| Naive FC2 GEMV + finalize fusion | Serialized top-k expert GEMVs inside one CTA; GPT-OSS FC2/finalize kernel time regressed sharply. |
| One-row finalize with 128 threads | Underutilized the 2880-wide GPT-OSS output; the 256-thread static top-k variant was better. |
| Asymmetric block-size-128 fallback stress cases | Existing grouped-GEMM parity tolerance was exceeded in this environment; they were not kept in the GEMV-focused matrix. |
block_size=128, INT8, and
end-to-end GenAI runs for models that ship block-wise QMoE weights.Keep ORT_DISABLE_MOE_GEMV=1 available. It is useful for A/B testing, fallback
validation, and bisecting numerical or performance regressions. For quick
profiling, use
profile_qmoe_gemv.sh:
onnxruntime/test/python/transformers/profile_qmoe_gemv.sh \
--case gpt_oss_20b_m1_top4_fp16_2880x2880_e32 \
--block-size 64 --warmup 5 --repeat 100
| Test file | Coverage |
|---|---|
| test_moe_cuda.py | Standard MoE on CUDA: FP16/BF16, SiLU/GeLU/SwiGLU, routing, GEMM parity. SwiGLU coverage includes both GPT-OSS (TestSwigluMoE: interleaved, alpha=1.702/beta=1.0/limit=7.0) and Standard/Llama-Gemma (TestStandardSwigluMoE: concatenated swiglu_fusion=2, alpha=1.0/beta=0.0/no limit → SiLU(Gate)×Value). |
| test_moe_cpu.py | Standard MoE on CPU (smoke). |
| test_qmoe_cuda.py | INT4/INT8 QMoE — primary regression signal for the production QMoE path. Exercises pack_weights_for_cuda_mixed_gemm and dequant-then-matmul reference. |
| test_qmoe_cpu.py | INT4/INT8 QMoE on CPU (smoke). |
| test_qmoe_fp4_cuda.py | MXFP4 QMoE: quantization utilities, packing, FP16/BF16, SiLU/SwiGLU, top-k and expert-count variants. End-to-end runs on SM120; on SM<120 the dequant fallback is exercised. |
| test_qmoe_fp8_cuda.py | FP8 W8A16 QMoE on SM90+ native path and SM<90 dequant fallback. |
| test_qmoe_wfp4afp8_cuda.py | WFP4AFP8 — native Blackwell path requires SM100+; SM<100 exercises the dequant fallback. |
The "ground truth" is computed by dequantizing weights to FP16 in Python:
dequantized = (q_weight - zero_point) * scale # INT
# or
dequantized = fp4_to_float(W) * ue8m0_to_float(block_scale) * global_scale # FP4
reference = input @ dequantized.T
This validates the numerical correctness of the dequantization fusion.
CMake gates relevant to MoE/QMoE (see cmake/CMakeLists.txt and cmake/onnxruntime_providers_cpu.cmake):
| Define | Set when | Effect |
|---|---|---|
ENABLE_BF16 | CUDA ≥ 11.0 | BF16 weight/activation paths. |
ENABLE_FP8 | CUDA ≥ 11.8 | FP8 e4m3 instantiations and QuantParams::FP8. |
ENABLE_FP4 | CUDA ≥ 12.8 | FP4 e2m1 type (__nv_fp4_e2m1) and FP4 traits. |
onnxruntime_USE_FP4_QMOE | user opt-in (requires ENABLE_FP4) | Enables FP4 / WFP4AFP8 kernel instantiations and CUTLASS launchers. |
EXCLUDE_SM_100, EXCLUDE_SM_120 | architecture exclusion | Drops the corresponding generated kernels. |
CUDA architecture defaults:
60;70;75;80;86;89;90;100;12075;80;86;89;90;100;120-a suffix (enables WGMMA, TMA, setmaxnreg).cmake/onnxruntime_cuda_source_filters.cmake:
if(NOT onnxruntime_USE_FP4_QMOE)
list(FILTER … EXCLUDE REGEX "moe_gemm_tma_ws_sm90_fp4_.*\\.generated\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_tma_ws_sm120_fp4_.*\\.generated\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_tma_ws_sm120_fp8_fp4\\.generated\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_kernels_(fp16|bf16)_fp4\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_kernels_fp4_fp4\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_kernels_fp8_fp4\\.cu")
else()
# CUDA 13 PTXAS does not complete the FP4 M=128/N=64 pingpong specializations
# in this build configuration. The dispatcher routes that tile through
# cooperative mainloop variants instead, so exclude only those unused units.
list(FILTER … EXCLUDE REGEX
"moe_gemm_tma_ws_sm90_fp4_(fp16|bf16)_m128_n64_k[0-9]+_cm[12]_cn[12]_pp(_finalize)?\\.generated\\.cu")
endif()
if(NOT onnxruntime_USE_FP8_QMOE)
list(FILTER … EXCLUDE REGEX "moe_gemm_tma_ws_sm90_wfp8_.*\\.generated\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_tma_ws_sm120_fp4_fp8_.*\\.generated\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_tma_ws_sm120_fp8_fp4\\.generated\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_kernels_(fp16|bf16)_fp8\\.cu")
list(FILTER … EXCLUDE REGEX "moe_gemm_kernels_fp8_fp4\\.cu")
endif()
Windows/MSVC builds intentionally do not define the grouped TMA MoE compile switches:
COMPILE_HOPPER_TMA_GROUPED_GEMMSCOMPILE_BLACKWELL_SM120_TMA_GROUPED_GEMMSThe generated grouped TMA launchers pass CUTLASS TMA descriptor types through
NVCC-generated host stubs. With CUDA 13 and MSVC, those stubs contain formal
parameters with 128-byte alignment requirements, which triggers MSVC C2719:
the requested alignment for a by-value formal parameter cannot be guaranteed.
This affects the generated SM90/SM120 grouped MoE TMA launcher translation units,
including the native SM120 QMoE FP4 / FP8×FP4 launchers.
The source files are still present in the build graph, but the generated launcher bodies are guarded by the compile switches above, so they become empty units on MSVC. Runtime dispatch mirrors this build-time choice:
fp4, wfp4afp8,
and other TMA-only mixed quantized paths. They fail with a clear error saying
the required TMA grouped MoE GEMM was not compiled.wfp4a16 on SM120 normally routes through the SM90 mixed-input TMA kernel set
for forward compatibility, but it is also unavailable when the Hopper grouped
TMA switch is disabled by MSVC.The intent is to keep Windows CUDA packaging builds working while avoiding a misleading or invalid fallback for QMoE configurations whose data layout requires TMA/block-scaled kernels. Re-enable these switches for MSVC only after the CUDA host-stub alignment issue is fixed or the launcher ABI is changed to avoid over-aligned by-value parameters.
block_size <= 0): does not currently support
zero points in the QMoE operator.block_size >= 64.hidden_size and inter_size must be ≥ 16 (and aligned
to 128 bits — multiples of 8 for FP16). See §4.2.sm_ >= 120 through the native FP4
runner. SM90/SM100 fall back to dequantization. (Remove sm_ < 120 and
rebuild to enable native FP4 on those SMs once validated.)C2719 with over-aligned TMA parameters.
Standard MoE can fall back to SM80 kernels; native QMoE FP4/block-scaled modes
cannot. See §14.1.The CUTLASS kernels are derived from TensorRT-LLM (CUTLASS 4.4.2, commit
346018db87) but have been significantly modified.
PrePack derives (K − ZP) × scale
biases offline so the kernel handles asymmetric quantization with no extra
subtraction. (See §5.2.)use_sparse_mixer attribute.supportsTmaWarpSpecialized() exposed on CutlassMoeFCRunnerInterface
to allow dynamic min_dim selection without knowing the concrete template
type at the call site.MoeGemmRunner<__nv_fp8_e4m3, __nv_fp4_e2m1, …>
with in-runner BF16/FP16→MXFP8 quantization in expandInputRowsKernel
(§11).603ec03f) — moved griddepcontrol.launch_dependents
to after computeTmaWarpSpecializedInputPointers in
computeStridesTmaWarpSpecializedKernel to fix a pre-exit race.use_lora, LoraParams)MoeMinLatencyParams)enable_alltoall)use_deepseek_fp8_block_scale,
BlockScaleParams)Deep Gemm, standalone FP4 GEMM, FP8 block-scale GEMM, fused gated GEMM
directories (the relevant pieces are inlined into the MoE runner).