What problem does it solve? Training large language models from 2B to 462B parameters requires coordinating complex parallelism strategies across hundreds of GPUs, and misconfiguration leads to out-of-memory errors, low GPU utilization, or diverging loss. ## Core Features & Use Cases - Parallelism Configuration: Provides tested tensor, pipeline, context, sequence, and expert parallelism settings matched to model size and GPU topology. - Production Training Recipes: Includes complete hyperparameter configurations for LLaMA 3 (8B-405B), Mixtral MoE, and DeepSeek-V3 architectures. - Performance Optimization: Covers FP8 training on H100, Flash Attention, and micro-batch tuning to reach 40-47% MFU. - Use Case: A team training a 70B LLaMA-style model on 64 H100 GPUs uses the provided TP=4/PP=4 configuration and launch scripts to start distributed training without weeks of trial and error. ## Quick Start Ask the assistant to generate a Megatron-Core training configuration for a 70B LLaMA model on 64 H100 GPUs with tensor and pipeline parallelism.