AppliedAIPrep logoAppliedAI/Prep
🖥️ ML Infrastructure & Serving
Core

Distributed Training: Parallelism and FSDP

Training large models needs many GPUs, and there are distinct ways to split the work: data parallelism replicates the model and splits the batch; FSDP/ZeRO shards the optimizer state, gradients, and parameters across GPUs to fit models that do not; tensor parallelism splits a layer's matrices within a node; pipeline parallelism splits layers across nodes. Communication is the scaling bottleneck. Applied-AI interviews probe it because 'this model does not fit on one GPU' has specific, named answers and trade-offs.

a free account unlocks the core curriculum tier · no card
RELATED CONCEPTS
PRACTICE THIS IN REAL QUESTIONS
COMPANIES THAT ASSUME THIS
NEXT IN ML INFRASTRUCTURE & SERVINGMixed-Precision Training