What problem does it solve? Choosing and configuring the right distributed training strategy in NeMo AutoModel is error-prone: tensor, pipeline, context, and expert parallelism each have sizing constraints, hardware topology rules, and strategy-specific limitations that are easy to get wrong. ## Core Features & Use Cases - Strategy Selection Guidance: Decide between FSDP2, Megatron FSDP, and DDP based on model size, MoE architecture, sequence length, and cluster topology. - YAML Configuration Patterns: Ready-to-adapt distributed section examples covering TP, PP, CP, EP, HSDP, activation checkpointing, and sequence packing. - Constraint and Pitfall Reference: Sizing rules such as dp_size = world_size / (tp_size * pp_size * cp_size), EP divisibility requirements, and MegatronFSDP limitations (no PP, EP, or sequence_parallel). - Use Case: You are training a 70B model across 8 nodes and need tensor plus pipeline parallelism; the skill recommends strategy: fsdp2 with the correct tp_size, pp_size, and pipeline sub-config. ## Quick Start Ask which distributed strategy and YAML settings to use for training your model on a given number of GPUs with tensor, pipeline, context, or expert parallelism.