Back to Onnxruntime

MoE and QMoE — CUDA Operator Documentation

docs/contrib_ops/cuda/moe_qmoe.md

1.27.046.8 KB
Original Source

MoE and QMoE — CUDA Operator Documentation

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.


Table of Contents

  1. Overview & Operator Set
  2. Operator Schema
  3. Quantization Modes
  4. Architecture Dispatch & Kernel Paths
  5. PrePack Transformations
  6. Weight Formats
  7. Cross-Architecture Packing Compatibility
  8. SwiGLU Fusion
  9. FP4 (MXFP4) Details
  10. FP8 (W8A16) Details
  11. WFP4AFP8 Details
  12. Future / Deferred Modes
  13. Testing
  14. Build Configuration
  15. Limitations & Known Issues
  16. Differences vs. TensorRT-LLM

1. Overview & Operator Set

Two contrib ops are registered in the com.microsoft domain:

OperatorPurposeSource
MoEStandard (non-quantized) Mixture-of-Experts. FP16/BF16/FP32 weights.onnxruntime/contrib_ops/cuda/moe/moe.cc
QMoEQuantized 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

2. QMoE Operator Schema

2.1 Attributes

AttributeTypeDefaultDescription
kint1Top-K experts selected per token.
activation_typestring"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_weightsint0Re-normalize the top-k weights to sum to 1.
use_sparse_mixerint0Enable sparse-mixer routing variant.
swiglu_fusionint00=no fusion, 1=interleaved (Gate/Value), 2=block (Gate;Value). See §8.
activation_alphafloat1.0SwiGLU alpha. Default 1.0 (Standard SwiGLU); GPT-OSS uses 1.702.
activation_betafloat0.0SwiGLU beta. Default 0.0 (Standard SwiGLU); GPT-OSS uses 1.0.
swiglu_limitfloatunset (+inf)SwiGLU clamp limit. Unset means no clamp (Standard SwiGLU); GPT-OSS uses 7.0.
expert_weight_bits (QMoE only)int44 (INT4/MXFP4) or 8 (INT8/FP8).
block_size (QMoE only)int-1Group size for INT4/INT8 group-wise quantization. -1 = per-output-channel.
quant_type (QMoE only)string"int""int", "fp4", "fp8", "wfp4afp8". See §3.

2.2 Type Constraints

ConstraintAllowed TypesUsed By
Tfloat, float16, bfloat16input, output, biases, router
T1uint8, float8e4m3fnquantized weights and zero points: INT4/INT8/FP4 weights use uint8; FP8 weights use float8e4m3fn
T2float, float16, bfloat16, uint8INT4/INT8 weight scales use floating-point tensors; MXFP block scales use uint8 storage
T4floatper-expert global scales, FP8 activation scales

2.3 Inputs

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).

IdxNameTypeShapeUsed by quant_type
0inputT(num_tokens, hidden_size)all
1router_probsT(num_tokens, num_experts)all
2fc1_experts_weightsT1(E, fusion×inter, hidden/pack)all
3fc1_scalesT2 (Opt)varies — see §2.4int, fp4, wfp4afp8
4fc1_experts_biasT (Opt)(E, fusion×inter)optional
5fc2_experts_weightsT1(E, hidden, inter/pack)all
6fc2_scalesT2 (Opt)variesint, fp4, wfp4afp8
7fc2_experts_biasT (Opt)(E, hidden)optional
8fc3_experts_weightsT1 (Opt)(E, inter, hidden/pack)optional (SwiGLU split-weight)
9fc3_scalesT2 (Opt)variesoptional
10fc3_experts_biasT (Opt)(E, inter)optional
11fc1_zero_pointsT1 (Opt)matches fc1_scalesint only
12fc2_zero_pointsT1 (Opt)matches fc2_scalesint only
13fc3_zero_pointsT1 (Opt)matches fc3_scalesoptional, int only
14router_weightsT (Opt)(num_tokens, num_experts)optional (DeepSeek noaux_tc)
15fc1_global_scaleT4 (Opt)(num_experts,)fp4, fp8, wfp4afp8
16fc2_global_scaleT4 (Opt)(num_experts,)fp4, fp8, wfp4afp8
17fc1_act_scaleT4 (Opt)(1,) or (num_experts,)wfp4afp8 (Variant A)
18fc2_act_scaleT4 (Opt)(1,) or (num_experts,)wfp4afp8 (Variant A)
19fc1_act_block_scaleT2 (Opt, float8e8m0)(E, M_pad, K/32)wfp4afp8 (Variant B)
20fc2_act_block_scaleT2 (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).

2.4 Input 3/6/9 interpretation by quant_type

quant_typedtypeShapeSemantics
"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.


3. Quantization Modes

quant_typeNotationActivationWeightNative SMFallbackBuild gate
"int" (4-bit)W4A16FP16/BF16INT4 group-wiseSM75+ (Ampere GemmGrouped)always
"int" (8-bit)W8A16FP16/BF16INT8 group-wiseSM75+always
"fp8"W8A16-fp8BF16/FP16FP8 e4m3 (no packing)SM90+ nativedequant→A16 on SM<90ENABLE_FP8 (CUDA ≥ 11.8)
"fp4"W4A16-MXFP4BF16/FP16MXFP4 e2m1, group=32SM120+ nativedequant→A16 on SM<120ENABLE_FP4 + USE_FP4_QMOE (CUDA ≥ 12.8)
"wfp4afp8"W4A8-MXFP4×FP8FP8 e4m3 (quantized in-runner)MXFP4 e2m1, group=32SM100+ nativedequant→A16 on SM<100ENABLE_FP4 + USE_FP4_QMOE + ENABLE_FP8

Selection logic (see moe_quantization.cc):

cpp
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 8
  • fp4, wfp4afp8 → must be 4
  • fp8 → must be 8

When the build is configured without the corresponding flags, quant_type values that require them are rejected at construction time:

cpp
#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

4. Architecture Dispatch & Kernel Paths

The runner selects between three CUTLASS kernel families at runtime. The choice is made by CutlassMoeFCRunner::supportsTmaWarpSpecialized() and the dispatch headers under onnxruntime/contrib_ops/cuda/llm/moe_gemm/.

PathCUTLASS classUsed forSM range
Ampere GemmGroupedcutlass::gemm::kernel::GemmGroupedINT4/INT8 W*A16, FP8 W8A16 dequant fallback, FP32SM75–SM89, plus all mixed-input on SM90/SM120
TMA Warp-Specialized (mixed-input)CollectiveBuilderMixedInputSame-type FP16×FP16 / BF16×BF16, native MXFP4 W4A16SM90 (same-type), SM120 (FP4 W4A16)
Block-Scaled Tensor OpOpClassBlockScaledTensorOpNative FP8×MXFP4 (wfp4afp8)SM100+ (Blackwell)

4.1 Per-mode dispatch matrix

ModeSM75-89 (Ampere/Ada)SM90 (Hopper)SM100 (Blackwell)SM120 (RTX 5090)
INT4/INT8 W*A16Ampere GemmGroupedAmpere GemmGrouped (TMA WS rejects mixed-type INT)Ampere GemmGroupedAmpere GemmGrouped
FP16/BF16 (no quant, MoE op)Ampere GemmGroupedTMA WS (same-type)TMA WS / valid Blackwell specTMA WS / Ampere fallback
FP8 W8A16 nativedequant fallbackTMA WSTMA WSSM89 FP8 kernel redirect
FP4 W4A16 nativedequant fallbackdequant fallbackdequant fallbackTMA WS mixed-input FP4
WFP4AFP8 nativedequant fallbackdequant fallbackBlock-scaled tensor opBlock-scaled tensor op
FP32Ampere GemmGrouped (forced)samesamesame

4.2 Minimum dimension constraint (min_dim)

  • Both hidden_size and inter_size must be ≥ 16.
  • TMA WS path: smallest tile is 128×16×128B (N=16 for FP16). K residues handled by TMA.
  • Ampere GemmGrouped path: smallest instantiated tile N=128, but CUTLASS predicates N < tile_N.
  • Alignment to 128 bits is enforced separately (e.g., dimensions must be multiples of 8 for FP16).

4.3 Dequant-to-A16 fallback

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/BF16
  • LaunchQMoEDequantizeFp8Weights — FP8 e4m3 → FP16/BF16

The decoded buffers are owned by the QMoE op for the lifetime of the session.

4.4 Target hardware (developer matrix)

RTX 3090 (SM86), RTX 4090 (SM89), H200 (SM90), GB200/B200 (SM100), RTX 5090 (SM120).


5. PrePack Transformations

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.

5.1 Weights (input 2 / 5 / 8)

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).

5.2 INT4/INT8 scales + zero-point → bias

The kernels use a pre-calculated additive bias to avoid the per-element zero-point subtraction.

  • 8-bit: weights are shifted uint8 → int8 (− 128). Bias compensates:
    bias = (128 − ZP) × scale
    
    Effectively computes (W_stored + 128 − ZP) × scale = (W_orig − ZP) × scale.
  • 4-bit: zero points are unpacked from nibbles (2 per byte) and converted to scaled biases:
    bias = (8 − ZP) × scale
    
    Equivalent to (W − (ZP − 8)) × scale.
  • Symmetric (no fc*_zero_points): bias = 0.

Kernels: LaunchQMoEPrePackOffsetBias, LaunchQMoEPrePackPacked4BitZPKernel. Output buffer (packed_bias) has the scale dtype (float16 / bfloat16 / float).

5.3 FP8 / FP4 / WFP4AFP8 PrePack

For floating-point quantization modes, PrePack simply copies constant tensors to GPU memory:

Input idxMemberUsed by
15/16/17packed_fc{1,2,3}_global_scale_fp4, fp8, wfp4afp8
18/19packed_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.


6. Weight Formats

This section covers the five distinct weight encodings supported by QMoE.

6.1 INT4 group-wise (quant_type="int", expert_weight_bits=4)

Logical and packed shapes

TensorLogicalPacked 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.

Preprocessing pipeline (offline, pack_weights_for_cuda_mixed_gemm)

  1. Input layout: [N, K] per expert (Out × In), 2 elements per byte for INT4.
  2. Transpose & signed conversion:
    • Unpack uint4 [0, 15] → subtract 8 → int8 [-8, 7].
    • Transpose row-major [K, N] → column-major [N, K] with nibble-level swaps.
  3. Row permutation (LDSM) for SM75+ tensor cores. INT4 uses a 32-row pattern:
    {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).
  4. Column interleaving: ColumnMajorTileInterleave<64, 4> on Ampere/Ada/Blackwell. RowsPerTile=64 (K direction), ColumnsInterleaved=4 (N direction).
  5. Bias addition + register interleaving: add 128 (so storage is 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).

Dequantization

cpp
// 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

6.2 INT8 group-wise (quant_type="int", expert_weight_bits=8)

TensorLogicalPacked storage
FC1 weight[E, N, K][E, N, K] (no packing)
FC1 scales[E, N, K/group_size] (T2)

Preprocessing pipeline differences from INT4:

  • Row permutation: 16-row pattern {0, 1, 8, 9, 2, 3, 10, 11, 4, 5, 12, 13, 6, 7, 14, 15} (kPerm_W8_A16).
  • Column interleaving: ColumnMajorTileInterleave<64, 2> (RowsPerTile=64, ColumnsInterleaved=2).
  • Bias: +128 shift (signed [-128,127] → unsigned [0,255]).
  • Register interleaving: [3, 1, 2, 0] per 32-bit word.

Dequantization (symmetric): W = (W_stored - 128) * scale.

6.3 INT4 vs INT8 comparison

AspectINT4INT8
Elements per byte21
Elements per int32 word84
Value range (signed)[-8, 7][-128, 127]
Bias offset+8+128
Row permutation size32 rows16 rows
Packed shape[E, N, K/2][E, N, K]
Column interleave<64, 4><64, 2>

6.4 FP8 e4m3 (quant_type="fp8")

  • Storage: [E, N, K] float8e4m3fn (Float8E4M3FN in ORT; __nv_fp8_e4m3 in CUDA), 1 byte per value.
  • Packing: pack_size = 1 — no offline packing required.
  • Scales: per-expert global scale only — fc1_global_scale (input 15) of shape (E,), T4 float32. No block scales (inputs 3/6/9 omitted).
  • Zero-points: not applicable (FP8 is symmetric); inputs 11/12/13 must be absent.
  • Dequantization (applied in the GEMM epilogue): W_bf16 = fp8_to_bf16(W_fp8) × global_scale.

6.5 MXFP4 e2m1 (quant_type="fp4" and "wfp4afp8")

  • Storage: [E, N, K/2] uint8, reinterpreted as __nv_fp4_e2m1 (2 values per byte).
  • Packer: 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:
    1. Input: [N, K/2] FP4 (2 per byte along K, row-major per expert)
    2. Nibble-level transpose [N, K][K, N]
    3. Output: [K, N/2] bytes (2 per byte along N, column-major packed)
  • Block scales: fc1_scales (input 3) — (E, N, K/32) uint8 storage, semantically float_ue8m0_t (8-bit power-of-2 exponent).
  • Global scale: fc1_global_scale (input 15) — (E,) float32.
  • Dequantization (applied during the GEMM in registers): W_float ≈ fp4_to_float(W_fp4) × ue8m0_to_float(block_scale) × global_scale.

6.6 Supported INT group sizes

ArchitectureActivationSupported block_size
SM75–89 (Turing/Ampere/Ada)FP16/BF1664, 128
SM90 (Hopper)FP16/BF16any multiple of 64
SM100/120 (Blackwell)FP16/BF16falls back to Ampere — 64 or 128

For MXFP4, the block size is fixed at 32 by the format.


7. Cross-Architecture Packing Compatibility

Weight packing is architecture-aware. The following table summarizes which packed weights are interchangeable across SMs:

Target SMCompatible packed weights from…Notes
SM70 (Volta)Not supported (no INT8 LDSM).
SM75 (Turing)SM75/80/86/89/100/120LDSM permutation + column interleaving.
SM80 (Ampere)SM75/80/86/89/100/120Same.
SM86/89 (Ada/Lovelace)SM75/80/86/89/100/120Same.
SM90 (Hopper)SM90 onlyHopper skips column interleaving (uses Permuted-Linear).
SM100/120 (Blackwell)SM75/80/86/89/100/120Falls back to SM80 packing for INT4/INT8.

Summary groups

  • Group A (universal INT4/INT8): SM75, SM80, SM86, SM89, SM100, SM120.
  • Group B (Hopper INT4/INT8): SM90 only.
  • MXFP4: separate format (§6.5) — does not use pack_weights_for_cuda_mixed_gemm.
  • FP8: no packing.

8. SwiGLU Fusion

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).

ParameterAttributeDefaultStandard SwiGLUGPT-OSS SwiGLU
alphaactivation_alpha1.01.01.702
betaactivation_beta0.00.01.0
limitswiglu_limitunset → +inf (no clamp)unset / +inf7.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_fusionInputsFC1 layoutNotes
0fc1, fc2, fc3separate Gate / Value / UpConceptually 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_NValue_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) throws ORT_NOT_IMPLEMENTED on CPU; use the CUDA EP for concatenated SwiGLU.

Standard MoE runtime fc3 fusion

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.


9. FP4 (MXFP4) Details

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.

9.1 Why "mixed input"?

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:

cpp
static constexpr bool use_wfp4a16 = weight_fp4 &&
    (std::is_same_v<T, half> || std::is_same_v<T, __nv_bfloat16>);

9.2 Dispatch flow

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.

9.3 W4A16 vs W4A8-INT4 differences

PropertyW4A16 (MXFP4)W4A8-INT4
ElementAhalf_t / bfloat16_tfloat_e4m3_t
ElementBfloat_e2m1_tint4b_t
Group size32 (MXFP4)128 (INT4)
ElementScalefloat_ue8m0_t__nv_bfloat16 (SFA)
Epilogue α1 (no per-group α)0 (uses alpha_ptr_array)
Epilogue fusionNONE or FINALIZENONE or FINALIZE
M tiles64, 12864, 128
N tiles16, 32, 64, 12816, 32, 64, 128
K tiles128, 256128 × PackedScalesNum / sizeof(T)
Cluster shapes(1,1), (2,1), (1,2), (2,2)(1,1), (2,1), (1,2), (2,2)
Mainloop schedulesPingpong, CooperativePingpong, Cooperative

9.4 Mainloop modification

The CUTLASS collective mainloop uses a type-dependent group size:

cpp
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.

9.5 Key data structures

cpp
// 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 };

9.6 Constructor and ComputeInternal

cpp
// 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);

9.7 Kernel instantiation files

FileTemplate
moe_gemm/moe_gemm_kernels_fp16_fp4.cuMoeGemmRunner<half, __nv_fp4_e2m1, half>
moe_gemm/moe_gemm_kernels_bf16_fp4.cuMoeGemmRunner<__nv_bfloat16, __nv_fp4_e2m1, __nv_bfloat16>
moe_gemm/launchers/moe_gemm_tma_ws_sm90_fp4_instantiation.cuhInstantiation 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.pyPython 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.cu320 generated SM90 mixed-input FP4 launcher instantiations (built when onnxruntime_USE_FP4_QMOE=ON)
moe_gemm/launchers/moe_gemm_tma_ws_sm120_fp4_*.generated.cuSM120 mixed-input FP4 launcher
moe_gemm/launchers/moe_gemm_tma_ws_sm120_fp8_fp4.generated.cuSM120 block-scaled FP8×FP4 launcher (WFP4AFP8)

Build note: When onnxruntime_USE_FP4_QMOE is OFF, the stub is also excluded and all moe_gemm_kernels_*_fp4.cu / moe_gemm_tma_ws_sm{90,120}_fp4_*.generated.cu files 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.

9.8 K=128, Epilogue Fusion & Expanded Tile Configs

This subsection documents the expanded SM90 W4A16 mixed-input FP4 MoE GEMM configuration that closes the gap with TRT-LLM.

Changes Summary

GapBeforeAfter
K tiles256 only{128, 256} — selected at runtime based on inputs.k % 256
Epilogue fusionNONE onlyNONE + FINALIZE — routed from hopper_inputs.fusion
N tiles accessibleOnly CtaShape128x32x128B + ClusterShape_1x1x1All instantiated tiles (N={16,32,64,128}, clusters=(1,1),(2,1),(1,2),(2,2))
Generated .cu files~80320
Mainloop schedulesPingpong only (for most tiles)Pingpong + Cooperative (for M=128 tiles)

K Tile Dispatch Mechanism

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:

cpp
constexpr int Ktile = is_wfp4a16 ? (PackedScalesNum == 2 ? 128 : 256) : 128 * PackedScalesNum / sizeof(T);

Epilogue Fusion

The mixed-input launcher now supports two epilogue modes, matching the same-type launcher pattern:

  • NONE: Per-expert intermediate output (standard grouped GEMM epilogue)
  • FINALIZE: Fused scatter + router-scale + bias epilogue using EpilogueMoeFusedFinalizeBuilder

The fusion is routed at runtime in dispatchToArch:

cpp
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;
}

Files Modified

FileChanges
launchers/moe_gemm_tma_ws_mixed_input_launcher.hAdded EpilogueFusion FUSION template parameter
launchers/moe_gemm_tma_ws_mixed_input_launcher.inlAdded FINALIZE epilogue support (CollectiveEpilogueFinalize, make_epilogue_scalars/args lambdas)
launchers/moe_gemm_tma_ws_sm90_fp4_instantiation.cuhAdded _PP_FINALIZE and _CO_FINALIZE macros
launchers/generate_moe_gemm_tma_ws_sm90_fp4.pyAdded k and fusion fields; generates K={128,256} × NONE/FINALIZE
moe_gemm_template_dispatch_tma_ws_mixed_dtype.hFUSION param throughout; PackedScalesNum-based K tile; direct N tile mapping; workspace calc with Ntile=128
moe_gemm_template_dispatch.hFUSION routing in dispatchToArch; removed restrictive wfp4a16 config filter

10. FP8 (W8A16) Details

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.

10.1 Native dispatch (SM90+)

cpp
// 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.

10.2 Scale wiring

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).

10.3 Dequant fallback (SM<90)

LaunchQMoEDequantizeFp8Weights decodes weights into BF16/FP16 and the dense A16 runner is used.

10.4 Kernel instantiation files

FileTemplate
moe_gemm/moe_gemm_kernels_fp16_fp8.cuMoeGemmRunner<half, __nv_fp8_e4m3, half>
moe_gemm/moe_gemm_kernels_bf16_fp8.cuMoeGemmRunner<__nv_bfloat16, __nv_fp8_e4m3, __nv_bfloat16>

10.5 End-to-end data flow

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

11. WFP4AFP8 Details

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).

11.1 Native dispatch (SM100+)

cpp
// 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.

11.2 Two variants

VariantQuantParams factoryActivation scalingUsed inputs
A — global-scaled FP8 actQuantParams::FP8MXFP4per-tensor or per-expert float scaleweight side (3,15) + (6,16); act 18, 19
B — MXFP8 block-scaled actQuantParams::MXFP8MXFP4per-block ue8m0 scalesweight 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.

11.3 Dequant fallback (SM<100)

cpp
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.

11.4 Kernel instantiation files

FileTemplate
moe_gemm/moe_gemm_kernels_fp8_fp4.cuMoeGemmRunner<__nv_fp8_e4m3, __nv_fp4_e2m1, half> and BF16 variant
moe_gemm/launchers/moe_gemm_tma_ws_sm120_fp8_fp4.generated.cuSM120 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).

11.5 Why two CUTLASS paths

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.


12. Future / Deferred Modes

ModeNotationActivationWeightStatus
W4AFP8INT4 weight + FP8 activationFP8 e4m3INT4 (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-fp8FP8 act + FP8 weightFP8 e4m3FP8 e4m3Not implemented. Targeted for SM89 (RTX 4090).
WFP4AFP8 native validation(above)Native path implemented; end-to-end validation requires SM100+ hardware.
WFP4AFP8 Variant Aglobal-scaled FP8 activationRequires 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.


13. Testing

Test fileCoverage
test_moe_cuda.pyStandard 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.pyStandard MoE on CPU (smoke).
test_qmoe_cuda.pyINT4/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.pyINT4/INT8 QMoE on CPU (smoke).
test_qmoe_fp4_cuda.pyMXFP4 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.pyFP8 W8A16 QMoE on SM90+ native path and SM<90 dequant fallback.
test_qmoe_wfp4afp8_cuda.pyWFP4AFP8 — native Blackwell path requires SM100+; SM<100 exercises the dequant fallback.

Reference computation

The "ground truth" is computed by dequantizing weights to FP16 in Python:

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.


14. Build Configuration

CMake gates relevant to MoE/QMoE (see cmake/CMakeLists.txt and cmake/onnxruntime_providers_cpu.cmake):

DefineSet whenEffect
ENABLE_BF16CUDA ≥ 11.0BF16 weight/activation paths.
ENABLE_FP8CUDA ≥ 11.8FP8 e4m3 instantiations and QuantParams::FP8.
ENABLE_FP4CUDA ≥ 12.8FP4 e2m1 type (__nv_fp4_e2m1) and FP4 traits.
onnxruntime_USE_FP4_QMOEuser opt-in (requires ENABLE_FP4)Enables FP4 / WFP4AFP8 kernel instantiations and CUTLASS launchers.
EXCLUDE_SM_100, EXCLUDE_SM_120architecture exclusionDrops the corresponding generated kernels.

CUDA architecture defaults:

  • CUDA 12.8+ : 60;70;75;80;86;89;90;100;120
  • CUDA 13.x : 75;80;86;89;90;100;120
  • SM90+ gets -a suffix (enables WGMMA, TMA, setmaxnreg).

CMake exclusion filters (current state)

cmake/onnxruntime_cuda_source_filters.cmake:

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()

14.1 MSVC and TMA grouped MoE GEMM

Windows/MSVC builds intentionally do not define the grouped TMA MoE compile switches:

  • COMPILE_HOPPER_TMA_GROUPED_GEMMS
  • COMPILE_BLACKWELL_SM120_TMA_GROUPED_GEMMS

The 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:

  • Standard FP16/BF16 MoE may skip TMA configs and use the existing SM80/Ampere grouped GEMM fallback.
  • QMoE modes that require grouped TMA kernels do not silently fall back to SM80. This includes FP4/block-scaled modes such as native SM120 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.


15. Limitations & Known Issues

  • Row-wise INT quantization (block_size <= 0): does not currently support zero points in the QMoE operator.
  • Asymmetric INT zero points are supported only when block_size >= 64.
  • Minimum dimension: hidden_size and inter_size must be ≥ 16 (and aligned to 128 bits — multiples of 8 for FP16). See §4.2.
  • Float32 input: always uses the SM80 (Ampere) kernel path regardless of the actual device SM.
  • FP4 native path (SM90/SM100): although CUTLASS supports SM90 mixed-input FP4, the QMoE op currently routes only 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.)
  • Windows/MSVC native TMA QMoE: grouped TMA MoE kernels are disabled on MSVC because CUDA 13 host stubs hit MSVC C2719 with over-aligned TMA parameters. Standard MoE can fall back to SM80 kernels; native QMoE FP4/block-scaled modes cannot. See §14.1.
  • WFP4AFP8 native requires SM100+ hardware; only the dequant fallback path is validated end-to-end so far.
  • Hopper W4A8 (INT4 weight + FP8 activation) is not supported — TRT-LLM gates its fast path to SM89 only.

16. Differences vs. TensorRT-LLM

The CUTLASS kernels are derived from TensorRT-LLM (CUTLASS 4.4.2, commit 346018db87) but have been significantly modified.

Modifications

  1. Pre-packed ZP/Bias optimizationPrePack derives (K − ZP) × scale biases offline so the kernel handles asymmetric quantization with no extra subtraction. (See §5.2.)
  2. SwiGLU interleaving — activation kernels support interleaved Gate/Value weights (§8).
  3. Sparse Mixer support via the use_sparse_mixer attribute.
  4. supportsTmaWarpSpecialized() exposed on CutlassMoeFCRunnerInterface to allow dynamic min_dim selection without knowing the concrete template type at the call site.
  5. MXFP4 in QMoE schema — extended schema and runner to accept MXFP4 weights plus per-expert global scales and ue8m0 block scales (§9).
  6. WFP4AFP8 (SM100+) — added MoeGemmRunner<__nv_fp8_e4m3, __nv_fp4_e2m1, …> with in-runner BF16/FP16→MXFP8 quantization in expandInputRowsKernel (§11).
  7. Backported bug fix (TRT-LLM 603ec03f) — moved griddepcontrol.launch_dependents to after computeTmaWarpSpecializedInputPointers in computeStridesTmaWarpSpecializedKernel to fix a pre-exit race.

Removed (not needed for ORT MoE/QMoE)

  • LoRA parameters (use_lora, LoraParams)
  • Min-latency mode (MoeMinLatencyParams)
  • AllToAll MoE paths (enable_alltoall)
  • DeepSeek FP8 block-scale GEMM mode (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).