npx skills add ...
npx skills add nvidia/skills --skill nemo-mbridge-perf-moe-optimization-workflow
Evidence-gated workflow for MoE performance optimization in Megatron Bridge. Covers measurement contracts, the Three Walls framework, parallel folding, profiling, matched A/B tuning, and final validation.
npx skills add nvidia/skills --skill nemo-mbridge-perf-moe-optimization-workflow
Stable docs: @docs/training/moe-optimization.md Card: @skills/nemo-mbridge-perf-moe-optimization-workflow/card.yaml Source: Scalable Training of MoE Models with Megatron Core
Start with the paper's Three Walls:
For operational diagnosis, split the compute-efficiency wall into compute and host/launch bottlenecks. They need different evidence and different fixes. MoE tuning is iterative, so use this order:
For MoE optimization workflow prompts, present the response in this order:
--fake-init-process-group to sanity-check large layouts.Attention: TP x CP x DP x PP
and MoE: ETP x EP x EDP x PP.alltoall for safe bring-up, then A/B flex + deepep and flex +
hybridep when their packages and target topology support them. Start from
BF16 and eager execution; introduce lower precision or the narrowest useful
CUDA-graph scope only after profiling justifies it.A comparison is valid only when the following stay fixed unless they are the single variable under test:
Separate two acceptance classes:
Start with a configuration that fits reliably before chasing throughput.
Recommended order:
--fake-init-process-group to sanity-check large parallel layouts on a
single GPU before burning cluster time.Prefer selective recompute for MoE runs:
layernorm, core_attn, moe_act, mlp, or
model-specific modules (shared_experts, mla_up_proj)As a rule of thumb, fine-grained recompute often recovers most of the needed memory while keeping throughput much closer to the non-recompute baseline than full-layer recompute does.
Priority order:
Parallel Folding decouples attention and MoE parallelism so you do not have to pick a single compromise layout:
Key knobs:
--expert-model-parallel-size--expert-tensor-parallel-sizeUse it when attention prefers some TP or CP, but expert layers benefit from a larger EP degree than the dense layers can tolerate.
| Bottleneck | What it looks like | Primary fixes |
|---|---|---|
| Memory | Run fits only with aggressive full recompute or OOMs during warmup | selective recompute, FP8, offloading, better PP layout |
| Communication | Nsight shows large all-to-all or collective blocks | DeepEP or HybridEP, EP overlap, DP/TP overlap, better PP layout |
| Host overhead | GPU gaps, launch-bound traces, Python overhead | CUDA graphs, --manual-gc, higher MBS, CPU affinity tuning |
| Compute | Low SM utilization after comm and host issues are addressed | grouped GEMM, fusion work, FP8, dispatcher-specific kernel tuning |
Use unprofiled steady iterations for the acceptance metric and a matched profile for causal explanation:
On a controlled 16×H100 Qwen3 30B-A3B HybridEP run, plain EP overlap increased
communication hidden by GEMM/attention from 0.11% to 36.55%. The unprofiled
step fell from 24.7138s to 20.9920s and throughput rose from 244.039 to 287.305
model TFLOPS/GPU. delay_wgrad_compute remained disabled.
Choose the smallest candidate that targets the profiled bottleneck and change one variable at a time.
Use dispatcher choice as a bottleneck fix, not as a hardware lookup table.
moe_token_dispatcher_type="alltoall": safest bring-up path, fine for
smaller EP sizesmoe_token_dispatcher_type="flex" + moe_flex_dispatcher_backend="deepep":
candidate when DeepEP is installed and communication is exposedmoe_token_dispatcher_type="flex" + moe_flex_dispatcher_backend="hybridep":
topology-sensitive candidate on both NVL8 and NVL72 systems when HybridEP is
installedHybridEP plus plain EP overlap is the current measured winner for the canonical
16×H100 Qwen3 30B-A3B shape, while the canonical 256×H100 Qwen3 235B recipe
uses standard alltoall plus overlap. Benchmark backend compatibility and
throughput in the target container; neither GPU name nor EP degree determines
the winner by itself.
If the all-to-all path is visible in profiles, combine dispatcher tuning with:
--overlap-moe-expert-parallel-comm--overlap-grad-reduce--tp-comm-overlapTest plain EP overlap, shared-expert overlap, and delayed weight-gradient compute as separate candidates first. A combination can regress even when one component helped on another model.
Start with a verified BF16 baseline. Hardware capability only determines which lower-precision candidates are legal; it does not guarantee a speedup.
| Platform | Candidate after BF16 is stable |
|---|---|
| Hopper | per-tensor, current-scaling, or blockwise FP8 supported by the target stack |
| Blackwell | MXFP8 or another supported FP8 recipe |
| Blackwell, speed-first exploration | NVFP4 after the BF16/FP8 path is stable |
Keep the router in FP32. The largest wins usually come from expert GEMMs and other heavy matrix math, not from trying to quantize every small MoE component. Require logs or traces showing that the intended kernels ran, and judge the candidate by end-to-end steady step time rather than theoretical peak FLOPS.
Use CUDA graphs only after a profile shows meaningful host/launch gaps. For dropless MoE, start with the narrowest partial TE-scoped graph candidate:
moe_routermoe_preprocessAdd attn only if it is supported for the model and improves the same matched
stack. A successful capture is not evidence of a speedup, and a graph win can
disappear after dispatcher, overlap, or precision changes.
This path keeps dynamic expert work outside the graph. Budget extra memory, verify that shapes remain static, confirm replay rather than capture alone, and time only post-capture iterations.
Use full-iteration graphs only for graph-friendly workloads such as drop-and-pad or tightly controlled static-shape experiments.
Related references:
Use 6–12 post-warmup iterations for inexpensive screening when the workload allows it. For the selected candidate, run at least 50 steps and report a fixed steady window such as steps 41–50. The final evidence bundle should contain:
Do not attribute the total gain of a final multi-change winner to one earlier A/B. For example, the Qwen3 overlap experiment isolated a rise from 244.039 to 287.305 TFLOPS/GPU; the later canonical recipe reached 299.352 after additional HybridEP tuning. They answer different questions.
Do not optimize in the wrong order: fitting the model and selecting sane parallelism matter more than micro-optimizations.
Platform changes the limiting wall: H100-class runs often feel more communication-bound, while GB200 or GB300 runs often expose CPU or launch overhead earlier.
FP8 MFU can look misleadingly low: compare absolute throughput as well as MFU when switching precision modes.
CUDA graphs and recompute interact: TE-scoped graphs are usually paired with selective recompute, not blanket full recompute.
Parallel Folding is not optional at large scale: once attention and expert layers want clearly different layouts, a single shared TP or EP plan becomes a tax on both.
Summed kernel time is not exposed time: use interval unions and communication/compute intersection when validating overlap.
Benchmark-only semantics are not production acceptance: forced routing, synthetic data, or disabled optimizer/checkpoint paths must be disclosed and validated separately from training-equivalent results.
Feature activation needs evidence: a config dump is insufficient when a backend can fall back, a graph can capture without helping, or a lower- precision recipe can miss the intended kernels.
Last signature refresh: 2026-08-03.