perf-cuda-graphs
Original:🇺🇸 English
Translated
Validate and use CUDA graph capture in Megatron Bridge, including local full-iteration graphs and Transformer Engine scoped graphs for attention, MLP, and MoE modules.
8installs
Sourcenvidia/skills
Added on
NPX Install
npx skill4agent add nvidia/skills perf-cuda-graphsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →CUDA Graphs
Stable docs: @docs/training/cuda-graphs.md
Card: @skills/perf-cuda-graphs/card.yaml
What It Is
CUDA graphs capture GPU operations once and replay them with minimal
host-driver overhead. Bridge supports two implementations:
| Mechanism | Scope support |
|---|---|---|
| MCore | |
| TE | |
Quick Decision
Start with TE-scoped graphs for most training workloads, then verify replay
timing against eager on the same dispatcher, layout, and container:
- dense models: , then optionally
attnmlp - dropless MoE:
attn moe_router moe_preprocess - VLMs: the same dropless-MoE scope, but only after the real-data path is stable
Use + only when you specifically want full-iteration
capture and can satisfy the tighter constraints.
localfull_iterationFor recompute-heavy workloads:
- TE-scoped graphs pair naturally with selective recompute
- full recompute usually pushes you toward full-iteration graphs or away from graphs entirely
local
Related docs:
- @docs/training/cuda-graphs.md
- @docs/training/activation-recomputation.md
Enablement
Local full-iteration graph
python
cfg.model.cuda_graph_impl = "local"
cfg.model.cuda_graph_scope = ["full_iteration"]
cfg.model.cuda_graph_warmup_steps = 3
cfg.model.use_te_rng_tracker = True
cfg.rng.te_rng_tracker = True
cfg.rerun_state_machine.check_for_nan_in_loss = False
cfg.ddp.check_for_nan_in_grad = FalseTE scoped graph (dense model)
python
cfg.model.cuda_graph_impl = "transformer_engine"
cfg.model.cuda_graph_scope = ["attn"] # or ["attn", "mlp"]
cfg.model.cuda_graph_warmup_steps = 3
cfg.model.use_te_rng_tracker = True
cfg.rng.te_rng_tracker = TrueTE scoped graph (MoE model)
python
cfg.model.cuda_graph_impl = "transformer_engine"
cfg.model.cuda_graph_scope = ["attn", "moe_router", "moe_preprocess"]
cfg.model.cuda_graph_warmup_steps = 3
cfg.model.use_te_rng_tracker = True
cfg.rng.te_rng_tracker = TruePerformance harness CLI
bash
uv run python scripts/performance/run_script.py \
-m qwen \
-mr qwen3_30b_a3b \
--task pretrain \
-g h100 \
-c bf16 \
-ng 16 \
--cuda_graph_impl transformer_engine \
--cuda_graph_scope attn,moe_router,moe_preprocess \
...Valid CLI values live in :
scripts/performance/argument_parser.py- :
VALID_CUDA_GRAPH_IMPLS["none", "local", "transformer_engine"] - :
VALID_CUDA_GRAPH_SCOPES["full_iteration", "attn", "mlp", "moe", "moe_router", "moe_preprocess", "mamba"]
The performance harness uses a comma-separated value and
auto-enables plus when
is not .
--cuda_graph_scopemodel.use_te_rng_trackerrng.te_rng_tracker--cuda_graph_implnoneRequired constraints
- (enforced in
use_te_rng_tracker = True)gpt_provider.py - scope only with
full_iterationcuda_graph_impl = "local" - scope requires
full_iterationcheck_for_nan_in_loss = False - Do not combine scope and
moescopemoe_router - Tensor shapes must be static (fixed seq_length, fixed micro_batch_size)
- MoE token-dropless routing limits graphable scope to dense modules
- With , set
PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True(MCore enforces for local impl on arch < sm_100; TE impl asserts unconditionally)NCCL_GRAPH_REGISTER=0 - CPU offloading is incompatible with CUDA graphs
- scope requires
moe_preprocessscope to also be setmoe_router
Practical bring-up order
- Stabilize the eager run first.
- Fix sequence length and micro-batch size.
- Enable the narrowest useful graph scope.
- Confirm replay is active and memory is still acceptable.
- Compare eager against graph replay iterations after warmup and capture; do not include the capture step in steady-state timing.
- Only then widen scope or combine with overlap features.
Code Anchors
Bridge config and validation
1524
# CUDA graph scope validation: check_for_nan_in_loss must be disabled with full_iteration graph
if self.model.cuda_graph_impl == "local" and CudaGraphScope.full_iteration in self.model.cuda_graph_scope:
assert not self.rerun_state_machine.check_for_nan_in_loss, (
"check_for_nan_in_loss must be disabled when using full_iteration CUDA graph. "
"Set rerun_state_machine.check_for_nan_in_loss=False."
)
if self.model.cuda_graph_impl == "none":
self.model.cuda_graph_scope = []TE RNG tracker requirement
213
if self.cuda_graph_impl != "none":
assert getattr(self, "use_te_rng_tracker", False), (
"Transformer engine's RNG tracker is required for cudagraphs, it can be "
"enabled with use_te_rng_tracker=True'."Graph creation and capture in training loop
231
# Capture CUDA Graphs.
cuda_graph_helper = None
if model_config.cuda_graph_impl == "transformer_engine":
cuda_graph_helper = TECudaGraphHelper(...)
# ...
if config.model.cuda_graph_impl == "local" and CudaGraphScope.full_iteration in config.model.cuda_graph_scope:
forward_backward_func = FullCudaGraphWrapper(
forward_backward_func, cuda_graph_warmup_steps=config.model.cuda_graph_warmup_steps
)TE graph capture after warmup
338
# Capture CUDA Graphs after warmup.
if (
model_config.cuda_graph_impl == "transformer_engine"
and cuda_graph_helper is not None
and not cuda_graph_helper.graphs_created()
and global_state.train_state.step - start_iteration == model_config.cuda_graph_warmup_steps
):
if model_config.cuda_graph_warmup_steps > 0 and should_toggle_forward_pre_hook:
disable_forward_pre_hook(model, param_sync=False)
cuda_graph_helper.create_cudagraphs()
if model_config.cuda_graph_warmup_steps > 0 and should_toggle_forward_pre_hook:
enable_forward_pre_hook(model)
cuda_graph_helper.cuda_graph_set_manual_hooks()RNG initialization
199
_set_random_seed(
rng_config.seed,
rng_config.data_parallel_random_init,
rng_config.te_rng_tracker,
rng_config.inference_rng_tracker,
use_cudagraphable_rng=(model_config.cuda_graph_impl != "none"),
pg_collection=pg_collection,
)Delayed wgrad + CUDA graph interaction
522
cuda_graph_scope = getattr(model_cfg, "cuda_graph_scope", []) or []
# ... scope parsing ...
if wgrad_in_graph_scope:
assert is_te_min_version("2.12.0"), ...
assert model_cfg.gradient_accumulation_fusion, ...
if attn_scope_enabled:
assert not model_cfg.add_bias_linear and not model_cfg.add_qkv_bias, ...Perf harness override helper
102
def _set_cuda_graph_overrides(
recipe, cuda_graph_impl=None, cuda_graph_scope=None
):
# Sets impl, scope, and auto-enables te_rng_trackerGraph cleanup
1414
def _delete_cuda_graphs(cuda_graph_helper):
# Deletes FullCudaGraphWrapper and TE graph objects to free NCCL buffersMCore classes (in 3rdparty/Megatron-LM)
- :
CudaGraphManagermegatron/core/transformer/cuda_graphs.py - :
TECudaGraphHelpermegatron/core/transformer/cuda_graphs.py - :
FullCudaGraphWrappermegatron/core/full_cuda_graph.py - enum:
CudaGraphScopemegatron/core/transformer/enums.py
Positive recipe anchors
scripts/performance/configs/deepseek/deepseek_workload_base_configs.pyscripts/performance/configs/qwen/qwen3_workload_base_configs.pyscripts/performance/configs/gpt_oss/gpt_oss_workload_base_configs.py
Tests
| File | Coverage |
|---|---|
| |
| |
| TE autocast with CUDA graphs |
| End-to-end local and TE graph smoke tests |
| TE + CUDA graph recipe config |
| TE + CUDA graph recipe config |
| VLM CUDA graph settings |
Pitfalls
-
TE RNG tracker is mandatory: Settingwithout
cuda_graph_implanduse_te_rng_tracker=Truewill assert in the provider.rng.te_rng_tracker=True -
requires NaN checks disabled: The entire fwd+bwd is captured, so loss-NaN checking cannot inspect intermediate values.
full_iteration -
MoE scope restrictions:scope and
moescope are mutually exclusive. Token-dropless MoE can only graphmoe_routerandmoe_router, not the full expert dispatch.moe_preprocess -
Memory overhead: CUDA graphs pin all intermediate buffers for the graph's lifetime (no memory reuse). TE scoped graphs add a few GB; full-iteration graphs can increase peak memory by 1.5–2×.compounds overhead since each stage holds its own graph.
PP > 1 -
Delayed wgrad interaction: Whenand attention or MoE router is in
delay_wgrad_compute=True, additional constraints apply: TE >= 2.12.0,cuda_graph_scope, and no attention bias.gradient_accumulation_fusion=True -
Variable-length sequences break graphs: Sequence lengths must be constant across steps. Use padded packed sequences if packing is needed.
-
Graph cleanup is required: CUDA graph objects hold NCCL buffer references. Bridge handles this inat the end of training, but early exits must call it explicitly.
_delete_cuda_graphs() -
Older GPU architectures: On GPUs with compute capability < 10.0 (pre-Blackwell), setwhen using
NCCL_GRAPH_REGISTER=0. Enforced in MCorePYTORCH_CUDA_ALLOC_CONF=expandable_segments:True(cuda_graphs.py:1428) andCudaGraphManager(cuda_graphs.py:1697). The TE impl asserts unconditionally regardless of arch.TECudaGraphHelper -
CPU offloading incompatible: CUDA graphs cannot be used with CPU offloading. Enforced in MCore.
transformer_config.py:1907 -
MoE recompute + moe_router scope: MoE recompute is not supported withCUDA graph scope when using
moe_router. Enforced in MCorecuda_graph_impl = "transformer_engine".transformer_config.py:1977 -
Layer-level recompute requiresscope: Using
full_iterationwithrecompute_granularity="full"(recompute N whole transformer layers) is incompatible with TE-scoped graphs. MCore calls this "full" granularity even though you're selecting how many layers — the name refers to recomputing the full layer, not full model. Any TE-scoped scope (recompute_num_layers,attn,mlp, etc.) will assert:moe_routerThis commonly hits FP8 configs that default to TE-scoped graphs (e.g.AssertionError: full recompute is only supported with full iteration CUDA graph.usesLLAMA3_70B_SFT_CONFIG_H100_FP8_CS_V1,cuda_graph_impl= "transformer_engine"). Fix: use submodule recompute (cuda_graph_scope="mlp"+recompute_granularity="selective"), disable CUDA graphs, or switch torecompute_modules+local. Enforced in MCorefull_iteration. See also @skills/perf-activation-recompute/SKILL.md.transformer_config.py:2001-2005 -
Benchmark numbers are workload-specific: graph wins are usually real when host overhead is visible, but the exact gain depends on batch shape, PP depth, recompute, dispatcher backend, and whether the eager baseline was already optimized.
-
A successful capture is not a speedup guarantee: On 2026-05-18, Qwen3 30B A3B H100 BF16 pretrain with the all-to-all dispatcher captured TE-scopedgraphs successfully (
attn,moe_router,moe_preprocessgraphable layers, about48capture time on rank 0), but replay iterations 5-8 averaged6.9 sversus42.00 sfor eager. Treat scoped graphs as a bring-up candidate and validate on the target stack.41.36 s
Verification
Unit tests
bash
uv run python -m pytest \
tests/unit_tests/training/test_config.py -k "cuda_graph" \
tests/unit_tests/training/test_comm_overlap.py -k "cuda_graph" \
tests/unit_tests/models/test_gpt_full_te_layer_autocast_spec.py -k "cuda_graph" -qFunctional smoke test (requires GPU)
bash
uv run python -m pytest \
tests/functional_tests/recipes/test_llama_recipes_pretrain_cuda_graphs.py -qSuccess criteria
- Unit tests pass, covering config validation for both and
localimplementations.transformer_engine - Functional test completes training steps with both CUDA graph implementations.
- No NCCL errors or illegal memory access in logs.