What problem does it solve?
This Skill helps you systematically improve Mixture-of-Experts (MoE) training throughput in Megatron Bridge by identifying which bottleneck (memory, communication, compute/host overhead) is limiting progress and applying the right optimization order rather than trying random tweaks.
Core Features & Use Cases
It provides a structured, paper-aligned workflow based on the Three Walls framework, covering how to make the run memory-feasible, choose parallelism for scale (including Parallel Folding), and profile to pinpoint the dominant bottleneck. It also includes practical guidance for dispatcher choice and overlap, an FP8 recipe decision framework, and CUDA-graphs bring-up strategies specific to MoE (including TE-scoped graph recommendations).
Use it when you are running a full MoE throughput tuning sweep, or when diagnosing a MoE throughput regression after a commit or configuration change—especially when you suspect that memory pressure, all-to-all/collective traffic, or host/launch overhead is the real limiter.
Quick Start
Follow Phase 1 to ensure the run is memory-feasible, then apply Phase 2 parallelism/Parallel Folding, and finish by profiling to target the dominant wall with dispatcher, overlap, FP8, and CUDA-graphs adjustments as appropriate.