/nemo-mbridge-perf-moe-dispatcher-selection
Choose the right MoE token dispatcher (`alltoall`, DeepEP, or HybridEP) for the hardware, EP degree, and optimization stage. Summarizes patterns from DSV3, Qwen3, Qwen3-Next, and VLM bring-up work.
$ npx -y skills add NVIDIA/skills --skill nemo-mbridge-perf-moe-dispatcher-selection --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/nemo-mbridge-perf-moe-dispatcher-selection
Context preview
The summary Claude sees to decide when to auto-load this skill.
Choose the right MoE token dispatcher (`alltoall`, DeepEP, or HybridEP) for the hardware, EP degree, and optimization stage. Summarizes patterns from DSV3, Qwen3, Qwen3-Next, and VLM bring-up work.
SKILL.md
nemo-mbridge-perf-moe-dispatcher-selection.SKILL.mdname: nemo-mbridge-perf-moe-dispatcher-selection
description: Choose the right MoE token dispatcher (`alltoall`, DeepEP, or HybridEP) for the hardware, EP degree, and optimization stage. Summarizes patterns from DSV3, Qwen3, Qwen3-Next, and VLM bring-up work.
license: Apache-2.0
when_to_use: Choosing a MoE token dispatcher, or tracing a MoE regression or crash to a dispatcher config change; 'which dispatcher', 'alltoall vs DeepEP', 'HybridEP', 'MoE dispatcher', 'flex backend', 'EP dispatcher selection'.
MoE Dispatcher Selection Guide
Stable docs: @docs/training/moe-optimization.md Card: @skills/nemo-mbridge-perf-moe-dispatcher-selection/card.yaml
Quick Decision
By hardware
| Hardware | First choice | Why | |---|---|---| | H100 | DeepEP, if the runtime package is installed | Strong default for cross-node EP on Hopper | | B200 | DeepEP, if the runtime package is installed | Good first choice unless a platform-specific HybridEP path is available | | GB200 / GB300 NVL72 | HybridEP, if the runtime package is installed | Best fit for NVLink-domain-aware dispatch and lower memory pressure | | Unknown or first bring-up | `alltoall` | Easiest path for correctness and debugging |
By EP degree
| EP size | Guidance | |---|---| | Small EP | Dispatcher choice is usually second-order; start with `alltoall` or DeepEP | | Medium EP | DeepEP often becomes worthwhile | | Large EP | HybridEP is usually the best target on NVL72 systems |
Model-Family Patterns
| Workload | Common best path | Notes | |---|---|---| | DSV3 at large scale | HybridEP on GB200 or GB300, DeepEP on H100 | Dispatcher choice matters more as EP and PP both grow | | Qwen3 235B | DeepEP on H100, HybridEP on GB200 | HybridEP usually wins on GB200 and often uses less memory | | Qwen3 30B | DeepEP | Smaller models still benefit, but the absolute gap is smaller | | Qwen3-Next | Close race in BF16, HybridEP stronger in FP8 or memory-tight runs | Good reminder to test, not assume | | MoE VLMs | Start simple, then test HybridEP on GB200-class systems | Vision workloads are sensitive to both memory and host overhead |
Rounded Evidence Summary
Backend availability gate
Do not interpret a dispatcher timing until the container has proven that the selected backend package is available. `--moe_flex_dispatcher_backend None` selects the standard `alltoall` dispatcher, while `deepep` and `hybridep` select `moe_token_dispatcher_type="flex"` and then require their corresponding runtime packages at model construction time. If DeepEP or HybridEP is missing, record the import failure as an environment limitation and treat `alltoall` as the only measured correctness fallback for that run.
Qwen3 30B A3B on H100
A short 2026-05-17 H100 smoke run used Qwen3 30B A3B BF16, 16 GPUs, EP=16, the recipe's Transformer Engine CUDA graph scopes (`moe_router`, `moe_preprocess`), and `model.moe_permute_fusion=false` due to a Triton JIT compatibility issue in the run container. The `alltoall` fallback completed five steps with 45.65 s mean step time after warmup, 132.9 mean TFLOP/s/GPU after warmup, final loss 11.44050, and 61.351 GB peak max allocated memory. DeepEP and HybridEP selected the requested flex backend in the dumped configs but failed before the first iteration because the packages were not installed. This confirms the availability gate; it is not a throughput ranking for flex dispatchers on H100.
DSV3 on GB200 or GB300
The broad trend is more important than any single row in the tracker:
- plain `alltoall` is usually the conservative baseline
- DeepEP improves that baseline once EP communication becomes visible
- HybridEP adds another step up on NVL72 systems, especially after CUDA graphs,
routing improvements, and CPU-side cleanup are already in place
In practice, the stack often moves from roughly "low-teens MFU" territory with an untuned baseline into "high-teens to low-20s MFU" territory after the full dispatcher and kernel stack is tuned.
Qwen3 235B on GB200
For Qwen3 235B, the practical ordering is usually:
1. `alltoall` for initial bring-up 2. DeepEP if you want a familiar tuned path 3. HybridEP for the strongest steady-state result on GB200
HybridEP is usually modestly faster than `alltoall` on this workload and often has noticeably better memory headroom.
Qwen3-Next on GB200
This family is a good reminder that dispatcher wins are workload-dependent:
- in BF16, `alltoall` and HybridEP can be close
- in FP8 or memory-constrained settings, HybridEP tends to look better
- pipeline layout and grouped-GEMM changes can matter almost as much as the
dispatcher itself
Tuning Parameters
DeepEP
DeepEP is selected by setting `moe_token_dispatcher_type="flex"` and `moe_flex_dispatcher_backend="deepep"`.
--moe-deepep-num-sms 20
Tune the SM count allocated to DeepEP communication kernels (default 20). The optimal value depends on the workload and EP degree. First confirm the DeepEP package imports in the target container; a missing package fails during model construction, before any dispatcher timing is available.
HybridEP
HybridEP is selected by setting `moe_token_dispatcher_type="flex"` and `moe_flex_dispatcher_backend="hybridep"`.
--moe-hybridep-num-sms 16
Tune the SM count allocated to HybridEP communication (default 16). The performance harness uses 32 for HybridEP workloads. Sweep between 16 and 32 for the target hardware. Set `NUM_OF_HYBRID_EP_RANKS_PER_NVLINK_DOMAIN` to match the NVLink domain size of the deployment. If it does not match the actual topology, performance and sometimes correctness will suffer. First confirm the HybridEP package imports in the target container; a missing package fails during model construction, before any dispatcher timing is available.
Routing mode
--moe-router-force-load-balancing
For performance benchmarking, force-balance routing is the safer default. It usually outperforms dropless routin
Read more
name: nemo-mbridge-perf-moe-dispatcher-selection description: Choose the right MoE token dispatcher (`alltoall`, DeepEP, or HybridEP) for the hardware, EP degree, and optimization stage. Summarizes patterns from DSV3, Qwen3, Qwen3-Next, and VLM bring-up work. license: Apache-2.0 when_to_use: Choosing a MoE token dispatcher, or tracing a MoE regression or crash to a dispatcher config change; 'which dispatcher', 'alltoall vs DeepEP', 'HybridEP', 'MoE dispatcher', 'flex backend', 'EP dispatcher selection'.
MoE Dispatcher Selection Guide
Stable docs: @docs/training/moe-optimization.md Card: @skills/nemo-mbridge-perf-moe-dispatcher-selection/card.yaml
Quick Decision
By hardware
| Hardware | First choice | Why | |---|---|---| | H100 | DeepEP, if the runtime package is installed | Strong default for cross-node EP on Hopper | | B200 | DeepEP, if the runtime package is installed | Good first choice unless a platform-specific HybridEP path is available | | GB200 / GB300 NVL72 | HybridEP, if the runtime package is installed | Best fit for NVLink-domain-aware dispatch and lower memory pressure | | Unknown or first bring-up | `alltoall` | Easiest path for correctness and debugging |
By EP degree
| EP size | Guidance | |---|---| | Small EP | Dispatcher choice is usually second-order; start with `alltoall` or DeepEP | | Medium EP | DeepEP often becomes worthwhile | | Large EP | HybridEP is usually the best target on NVL72 systems |
Model-Family Patterns
| Workload | Common best path | Notes | |---|---|---| | DSV3 at large scale | HybridEP on GB200 or GB300, DeepEP on H100 | Dispatcher choice matters more as EP and PP both grow | | Qwen3 235B | DeepEP on H100, HybridEP on GB200 | HybridEP usually wins on GB200 and often uses less memory | | Qwen3 30B | DeepEP | Smaller models still benefit, but the absolute gap is smaller | | Qwen3-Next | Close race in BF16, HybridEP stronger in FP8 or memory-tight runs | Good reminder to test, not assume | | MoE VLMs | Start simple, then test HybridEP on GB200-class systems | Vision workloads are sensitive to both memory and host overhead |
Rounded Evidence Summary
Backend availability gate
Do not interpret a dispatcher timing until the container has proven that the selected backend package is available. `--moe_flex_dispatcher_backend None` selects the standard `alltoall` dispatcher, while `deepep` and `hybridep` select `moe_token_dispatcher_type="flex"` and then require their corresponding runtime packages at model construction time. If DeepEP or HybridEP is missing, record the import failure as an environment limitation and treat `alltoall` as the only measured correctness fallback for that run.
Qwen3 30B A3B on H100
A short 2026-05-17 H100 smoke run used Qwen3 30B A3B BF16, 16 GPUs, EP=16, the recipe's Transformer Engine CUDA graph scopes (`moe_router`, `moe_preprocess`), and `model.moe_permute_fusion=false` due to a Triton JIT compatibility issue in the run container. The `alltoall` fallback completed five steps with 45.65 s mean step time after warmup, 132.9 mean TFLOP/s/GPU after warmup, final loss 11.44050, and 61.351 GB peak max allocated memory. DeepEP and HybridEP selected the requested flex backend in the dumped configs but failed before the first iteration because the packages were not installed. This confirms the availability gate; it is not a throughput ranking for flex dispatchers on H100.
DSV3 on GB200 or GB300
The broad trend is more important than any single row in the tracker:
- plain `alltoall` is usually the conservative baseline
- DeepEP improves that baseline once EP communication becomes visible
- HybridEP adds another step up on NVL72 systems, especially after CUDA graphs,
routing improvements, and CPU-side cleanup are already in place
In practice, the stack often moves from roughly "low-teens MFU" territory with an untuned baseline into "high-teens to low-20s MFU" territory after the full dispatcher and kernel stack is tuned.
Qwen3 235B on GB200
For Qwen3 235B, the practical ordering is usually:
1. `alltoall` for initial bring-up 2. DeepEP if you want a familiar tuned path 3. HybridEP for the strongest steady-state result on GB200
HybridEP is usually modestly faster than `alltoall` on this workload and often has noticeably better memory headroom.
Qwen3-Next on GB200
This family is a good reminder that dispatcher wins are workload-dependent:
- in BF16, `alltoall` and HybridEP can be close
- in FP8 or memory-constrained settings, HybridEP tends to look better
- pipeline layout and grouped-GEMM changes can matter almost as much as the
dispatcher itself
Tuning Parameters
DeepEP
DeepEP is selected by setting `moe_token_dispatcher_type="flex"` and `moe_flex_dispatcher_backend="deepep"`.
--moe-deepep-num-sms 20
Tune the SM count allocated to DeepEP communication kernels (default 20). The optimal value depends on the workload and EP degree. First confirm the DeepEP package imports in the target container; a missing package fails during model construction, before any dispatcher timing is available.
HybridEP
HybridEP is selected by setting `moe_token_dispatcher_type="flex"` and `moe_flex_dispatcher_backend="hybridep"`.
--moe-hybridep-num-sms 16
Tune the SM count allocated to HybridEP communication (default 16). The performance harness uses 32 for HybridEP workloads. Sweep between 16 and 32 for the target hardware. Set `NUM_OF_HYBRID_EP_RANKS_PER_NVLINK_DOMAIN` to match the NVLink domain size of the deployment. If it does not match the actual topology, performance and sometimes correctness will suffer. First confirm the HybridEP package imports in the target container; a missing package fails during model construction, before any dispatcher timing is available.
Routing mode
--moe-router-force-load-balancing
For performance benchmarking, force-balance routing is the safer default. It usually outperforms dropless routin
Official, NVIDIA-verified Agent Skills for Claude Code, Codex, and other coding agents.
Other skills on nvidia-skills.
- /nvidia-skill-finder
Use for NVIDIA-related requests where an NVIDIA skill might help, even if the user did not ask for a skill. Trigger on NVIDIA products, hardware, software, SDKs, GPUs, Jetson/JetPack/L4T/BSP/SDK Manager/driver/flashing/setup, CUDA, NIM, NeMo, Omniverse/OpenUSD/SimReady,
Open skill - /accelerated-computing-cudf
Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV/Parquet I/O, nullable semantics, and multi-GPU DataFrame workloads.
Open skill - /aiq-deploy
Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.
Open skill - /aiq-research
Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.
Open skill - /amc-run-sample-calibration
Run end-to-end calibration on the shipped sample dataset (sdg_08_2_sample_data_010926.zip) against a running AMC microservice. Use when user says 'test sample dataset', 'run sample calibration', 'verify AMC install', or 'launch and test'.
Open skill - /amc-run-video-calibration
Calibrate a new dataset from pre-recorded video files via the AutoMagicCalib REST API. Use when user has local MP4s and says 'calibrate my videos', 'run AMC on these videos', or similar. For RTSP/live streams, use amc-run-rtsp-calibration instead.
Open skill

