MoE Training 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
Quick Reference
Start with the paper's Three Walls:
- memory wall
- communication wall
- compute-efficiency wall
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:
freeze the measurement contract -> fit -> scale -> profile -> retune -> validate
First Answer Checklist
For MoE optimization workflow prompts, present the response in this order:
- Freeze the measurement contract: record the exact model and task,
hardware and topology, container and commits, data and routing semantics,
precision, sequence and batch shape, parallelism, graph scopes, and the
steady-state metric window. Label each candidate as training-equivalent or
benchmark-only.
- Fit: make the model memory-feasible first. Use the smallest model
parallelism that fits, prefer selective recompute before full recompute, add
offloading only after recompute and parallelism are insufficient, and use
--fake-init-process-group to sanity-check large layouts.
- Scale: maximize DP after the model fits, keep hot communication inside
the fastest interconnect, use PP plus VPP for multi-node scaling, prefer EP
over extra TP for expert layers, and add CP when long context makes attention
memory dominant.
- Profile: identify the dominant wall: memory, communication, host
overhead, or compute.
- Retune: change one variable at a time based on the profiled bottleneck.
Dispatcher, overlap, lower precision, CUDA graphs, and recompute are
candidates, not hardware defaults.
- Validate: use short matched screens to reject candidates, then run the
winner for at least 50 steps. Verify the requested backend or graph replay
actually ran, time a declared post-warmup window, and report loss health,
skipped/NaN iterations, memory, step time, and model TFLOPS/GPU.
- Include the exact Parallel Folding meshes:
Attention: TP x CP x DP x PP
and MoE: ETP x EP x EDP x PP.
- Use
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.
Phase 0: Freeze The Measurement Contract
A comparison is valid only when the following stay fixed unless they are the
single variable under test:
- Bridge, MCore, Transformer Engine, container, CUDA, and NCCL versions
- GPU count, SKU, node topology, and launcher/environment settings
- model, task, data path, sequence length, MBS, GBS, and optimizer settings
- TP, PP, VPP, CP, EP, ETP, and DP layout
- routing semantics, precision, recompute, dispatcher, overlap, and graph scope
- warmup and steady-state timing windows
Separate two acceptance classes:
- Training-equivalent changes preserve the intended routing, loss, data,
optimizer, and checkpoint/resume behavior.
- Benchmark-only changes such as forced load balancing are useful for
controlled kernel studies, but cannot establish production-training
correctness or convergence.
Phase 1: Make The Run Memory-Feasible
Start with a configuration that fits reliably before chasing throughput.
Recommended order:
- Use the smallest amount of model parallelism that still fits.
- Turn on selective recompute before falling back to full recompute.
- Add offloading only when recompute and parallelism are still insufficient.
- Use
--fake-init-process-group to sanity-check large parallel layouts on a
single GPU before burning cluster time.
Recompute guidance
Prefer selective recompute for MoE runs:
- good first choices:
layernorm, core_attn, moe_act, mlp, or
model-specific modules (shared_experts, mla_up_proj)
- use full recompute only when the run still does not fit
- revisit recompute after enabling CUDA graphs, because some graph scopes and
full recompute paths do not mix well
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.
Phase 2: Choose Parallelism For Scale
Priority order:
- Maximize DP once the model fits.
- Keep the hot communication path inside the fast interconnect when possible.
- Use PP, plus VPP if needed, for multi-node scaling.
- Prefer EP over extra TP for expert layers.
- Add CP for long context once sequence length makes attention memory dominant.
Parallel Folding
Parallel Folding decouples attention and MoE parallelism so you do not have to
pick a single compromise layout:
Attention: TP × CP × DP × PP
MoE: ETP × EP × EDP × PP
Key knobs:
--expert-model-parallel-size
--expert-tensor-parallel-size
Use it when attention prefers some TP or CP, but expert layers benefit from a
larger EP degree than the dense layers can tolerate.
Phase 3: Profile The Dominant Bottleneck
| 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 |
Profile overlap without misreading it
Use unprofiled steady iterations for the acceptance metric and a matched
profile for causal explanation:
- Change one overlap or dispatcher variable at a time; keep routing, graph
scopes, parallelism, batch shape, and runtime fixed.
- Build interval unions for communication kernels and compute kernels, then
measure their intersection to quantify hidden communication.
- Do not add kernel durations and call the result wall time. Concurrent
kernels may run longer because of SM or bandwidth contention even while the
exposed GPU-active union and end-to-end step time fall.
- Corroborate the trace with dispatch/combine NVTX ranges, steady step time,
model TFLOPS/GPU, loss finiteness, skipped/NaN counts, and peak memory.
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.
Phase 4: Retune From Evidence
Choose the smallest candidate that targets the profiled bottleneck and change
one variable at a time.
Dispatcher And Overlap Guidance
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 sizes
moe_token_dispatcher_type="flex" + moe_flex_dispatcher_backend="deepep":
candidate when DeepEP is installed and communication is exposed
moe_token_dispatcher_type="flex" + moe_flex_dispatcher_backend="hybridep":
topology-sensitive candidate on both NVL8 and NVL72 systems when HybridEP is
installed
HybridEP 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-overlap
Test 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.
Lower-Precision Candidate Matrix
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.
CUDA Graphs For MoE
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_router
moe_preprocess
Add 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:
- @skills/nemo-mbridge-perf-cuda-graphs/SKILL.md
- @docs/training/cuda-graphs.md
- @docs/training/activation-recomputation.md
Phase 5: Validate And Package Evidence
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:
- exact command/config diff, commits, container, hardware, and topology
- declared routing/data semantics and training-equivalent vs benchmark-only label
- proof that the intended dispatcher, precision kernels, overlap, and graph
replay were active
- step time and model TFLOPS/GPU from the same unprofiled steady window
- finite loss, skipped/NaN counts, peak memory, and checkpoint/optimizer-state
validation when the production path requires it
- matched A/B profile evidence for the claimed causal mechanism
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.
Pitfalls
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.
1---2name: nemo-mbridge-perf-moe-optimization-workflow3description: 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.4license: Apache-2.05---67# MoE Training Optimization Workflow89Stable docs: @docs/training/moe-optimization.md10Card: @skills/nemo-mbridge-perf-moe-optimization-workflow/card.yaml11Source: [Scalable Training of MoE Models with Megatron Core](https://arxiv.org/abs/2603.07685)1213## Quick Reference1415Start with the paper's Three Walls:1617- memory wall18- communication wall19- compute-efficiency wall2021For operational diagnosis, split the compute-efficiency wall into **compute**22and **host/launch** bottlenecks. They need different evidence and different23fixes. MoE tuning is iterative, so use this order:2425```text26freeze the measurement contract -> fit -> scale -> profile -> retune -> validate27```2829## First Answer Checklist3031For MoE optimization workflow prompts, present the response in this order:32331. **Freeze the measurement contract**: record the exact model and task,34 hardware and topology, container and commits, data and routing semantics,35 precision, sequence and batch shape, parallelism, graph scopes, and the36 steady-state metric window. Label each candidate as training-equivalent or37 benchmark-only.382. **Fit**: make the model memory-feasible first. Use the smallest model39 parallelism that fits, prefer selective recompute before full recompute, add40 offloading only after recompute and parallelism are insufficient, and use41 `--fake-init-process-group` to sanity-check large layouts.423. **Scale**: maximize DP after the model fits, keep hot communication inside43 the fastest interconnect, use PP plus VPP for multi-node scaling, prefer EP44 over extra TP for expert layers, and add CP when long context makes attention45 memory dominant.464. **Profile**: identify the dominant wall: memory, communication, host47 overhead, or compute.485. **Retune**: change one variable at a time based on the profiled bottleneck.49 Dispatcher, overlap, lower precision, CUDA graphs, and recompute are50 candidates, not hardware defaults.516. **Validate**: use short matched screens to reject candidates, then run the52 winner for at least 50 steps. Verify the requested backend or graph replay53 actually ran, time a declared post-warmup window, and report loss health,54 skipped/NaN iterations, memory, step time, and model TFLOPS/GPU.557. Include the exact Parallel Folding meshes: `Attention: TP x CP x DP x PP`56 and `MoE: ETP x EP x EDP x PP`.578. Use `alltoall` for safe bring-up, then A/B `flex` + `deepep` and `flex` +58 `hybridep` when their packages and target topology support them. Start from59 BF16 and eager execution; introduce lower precision or the narrowest useful60 CUDA-graph scope only after profiling justifies it.6162## Phase 0: Freeze The Measurement Contract6364A comparison is valid only when the following stay fixed unless they are the65single variable under test:6667- Bridge, MCore, Transformer Engine, container, CUDA, and NCCL versions68- GPU count, SKU, node topology, and launcher/environment settings69- model, task, data path, sequence length, MBS, GBS, and optimizer settings70- TP, PP, VPP, CP, EP, ETP, and DP layout71- routing semantics, precision, recompute, dispatcher, overlap, and graph scope72- warmup and steady-state timing windows7374Separate two acceptance classes:7576- **Training-equivalent** changes preserve the intended routing, loss, data,77 optimizer, and checkpoint/resume behavior.78- **Benchmark-only** changes such as forced load balancing are useful for79 controlled kernel studies, but cannot establish production-training80 correctness or convergence.8182## Phase 1: Make The Run Memory-Feasible8384Start with a configuration that fits reliably before chasing throughput.8586Recommended order:87881. Use the smallest amount of model parallelism that still fits.892. Turn on selective recompute before falling back to full recompute.903. Add offloading only when recompute and parallelism are still insufficient.914. Use `--fake-init-process-group` to sanity-check large parallel layouts on a92 single GPU before burning cluster time.9394### Recompute guidance9596Prefer selective recompute for MoE runs:9798- good first choices: `layernorm`, `core_attn`, `moe_act`, `mlp`, or99 model-specific modules (`shared_experts`, `mla_up_proj`)100- use full recompute only when the run still does not fit101- revisit recompute after enabling CUDA graphs, because some graph scopes and102 full recompute paths do not mix well103104As a rule of thumb, fine-grained recompute often recovers most of the needed105memory while keeping throughput much closer to the non-recompute baseline than106full-layer recompute does.107108## Phase 2: Choose Parallelism For Scale109110Priority order:1111121. Maximize DP once the model fits.1132. Keep the hot communication path inside the fast interconnect when possible.1143. Use PP, plus VPP if needed, for multi-node scaling.1154. Prefer EP over extra TP for expert layers.1165. Add CP for long context once sequence length makes attention memory dominant.117118### Parallel Folding119120Parallel Folding decouples attention and MoE parallelism so you do not have to121pick a single compromise layout:122123```text124Attention: TP × CP × DP × PP125MoE: ETP × EP × EDP × PP126```127128Key knobs:129130- `--expert-model-parallel-size`131- `--expert-tensor-parallel-size`132133Use it when attention prefers some TP or CP, but expert layers benefit from a134larger EP degree than the dense layers can tolerate.135136## Phase 3: Profile The Dominant Bottleneck137138| Bottleneck | What it looks like | Primary fixes |139|---|---|---|140| Memory | Run fits only with aggressive full recompute or OOMs during warmup | selective recompute, FP8, offloading, better PP layout |141| Communication | Nsight shows large all-to-all or collective blocks | DeepEP or HybridEP, EP overlap, DP/TP overlap, better PP layout |142| Host overhead | GPU gaps, launch-bound traces, Python overhead | CUDA graphs, `--manual-gc`, higher MBS, CPU affinity tuning |143| Compute | Low SM utilization after comm and host issues are addressed | grouped GEMM, fusion work, FP8, dispatcher-specific kernel tuning |144145### Profile overlap without misreading it146147Use unprofiled steady iterations for the acceptance metric and a matched148profile for causal explanation:1491501. Change one overlap or dispatcher variable at a time; keep routing, graph151 scopes, parallelism, batch shape, and runtime fixed.1522. Build interval unions for communication kernels and compute kernels, then153 measure their intersection to quantify hidden communication.1543. Do not add kernel durations and call the result wall time. Concurrent155 kernels may run longer because of SM or bandwidth contention even while the156 exposed GPU-active union and end-to-end step time fall.1574. Corroborate the trace with dispatch/combine NVTX ranges, steady step time,158 model TFLOPS/GPU, loss finiteness, skipped/NaN counts, and peak memory.159160On a controlled 16×H100 Qwen3 30B-A3B HybridEP run, plain EP overlap increased161communication hidden by GEMM/attention from 0.11% to 36.55%. The unprofiled162step fell from 24.7138s to 20.9920s and throughput rose from 244.039 to 287.305163model TFLOPS/GPU. `delay_wgrad_compute` remained disabled.164165## Phase 4: Retune From Evidence166167Choose the smallest candidate that targets the profiled bottleneck and change168one variable at a time.169170### Dispatcher And Overlap Guidance171172Use dispatcher choice as a bottleneck fix, not as a hardware lookup table.173174- `moe_token_dispatcher_type="alltoall"`: safest bring-up path, fine for175 smaller EP sizes176- `moe_token_dispatcher_type="flex"` + `moe_flex_dispatcher_backend="deepep"`:177 candidate when DeepEP is installed and communication is exposed178- `moe_token_dispatcher_type="flex"` + `moe_flex_dispatcher_backend="hybridep"`:179 topology-sensitive candidate on both NVL8 and NVL72 systems when HybridEP is180 installed181182HybridEP plus plain EP overlap is the current measured winner for the canonical18316×H100 Qwen3 30B-A3B shape, while the canonical 256×H100 Qwen3 235B recipe184uses standard `alltoall` plus overlap. Benchmark backend compatibility and185throughput in the target container; neither GPU name nor EP degree determines186the winner by itself.187188If the all-to-all path is visible in profiles, combine dispatcher tuning with:189190- `--overlap-moe-expert-parallel-comm`191- `--overlap-grad-reduce`192- `--tp-comm-overlap`193194Test plain EP overlap, shared-expert overlap, and delayed weight-gradient195compute as separate candidates first. A combination can regress even when one196component helped on another model.197198### Lower-Precision Candidate Matrix199200Start with a verified BF16 baseline. Hardware capability only determines which201lower-precision candidates are legal; it does not guarantee a speedup.202203| Platform | Candidate after BF16 is stable |204|---|---|205| Hopper | per-tensor, current-scaling, or blockwise FP8 supported by the target stack |206| Blackwell | MXFP8 or another supported FP8 recipe |207| Blackwell, speed-first exploration | NVFP4 after the BF16/FP8 path is stable |208209Keep the router in FP32. The largest wins usually come from expert GEMMs and210other heavy matrix math, not from trying to quantize every small MoE component.211Require logs or traces showing that the intended kernels ran, and judge the212candidate by end-to-end steady step time rather than theoretical peak FLOPS.213214### CUDA Graphs For MoE215216Use CUDA graphs only after a profile shows meaningful host/launch gaps. For217dropless MoE, start with the narrowest partial TE-scoped graph candidate:218219- `moe_router`220- `moe_preprocess`221222Add `attn` only if it is supported for the model and improves the same matched223stack. A successful capture is not evidence of a speedup, and a graph win can224disappear after dispatcher, overlap, or precision changes.225226This path keeps dynamic expert work outside the graph. Budget extra memory,227verify that shapes remain static, confirm replay rather than capture alone, and228time only post-capture iterations.229230Use full-iteration graphs only for graph-friendly workloads such as drop-and-pad231or tightly controlled static-shape experiments.232233Related references:234235- @skills/nemo-mbridge-perf-cuda-graphs/SKILL.md236- @docs/training/cuda-graphs.md237- @docs/training/activation-recomputation.md238239## Phase 5: Validate And Package Evidence240241Use 6–12 post-warmup iterations for inexpensive screening when the workload242allows it. For the selected candidate, run at least 50 steps and report a fixed243steady window such as steps 41–50. The final evidence bundle should contain:244245- exact command/config diff, commits, container, hardware, and topology246- declared routing/data semantics and training-equivalent vs benchmark-only label247- proof that the intended dispatcher, precision kernels, overlap, and graph248 replay were active249- step time and model TFLOPS/GPU from the same unprofiled steady window250- finite loss, skipped/NaN counts, peak memory, and checkpoint/optimizer-state251 validation when the production path requires it252- matched A/B profile evidence for the claimed causal mechanism253254Do not attribute the total gain of a final multi-change winner to one earlier255A/B. For example, the Qwen3 overlap experiment isolated a rise from 244.039 to256287.305 TFLOPS/GPU; the later canonical recipe reached 299.352 after additional257HybridEP tuning. They answer different questions.258259## Pitfalls2602611. **Do not optimize in the wrong order**: fitting the model and selecting sane262 parallelism matter more than micro-optimizations.2632642. **Platform changes the limiting wall**: H100-class runs often feel more265 communication-bound, while GB200 or GB300 runs often expose CPU or launch266 overhead earlier.2672683. **FP8 MFU can look misleadingly low**: compare absolute throughput as well as269 MFU when switching precision modes.2702714. **CUDA graphs and recompute interact**: TE-scoped graphs are usually paired272 with selective recompute, not blanket full recompute.2732745. **Parallel Folding is not optional at large scale**: once attention and expert275 layers want clearly different layouts, a single shared TP or EP plan becomes276 a tax on both.2772786. **Summed kernel time is not exposed time**: use interval unions and279 communication/compute intersection when validating overlap.2802817. **Benchmark-only semantics are not production acceptance**: forced routing,282 synthetic data, or disabled optimizer/checkpoint paths must be disclosed and283 validated separately from training-equivalent results.2842858. **Feature activation needs evidence**: a config dump is insufficient when a286 backend can fall back, a graph can capture without helping, or a lower-287 precision recipe can miss the intended kernels.288289_Last signature refresh: 2026-08-03._