Placement Semantics for Distributed Deep Learning: A Systematic Framework for Analyzing Parallelism Strategies
Deep Pankajbhai Mehta
TL;DR
This work presents placement semantics, a formal framework for distributed deep learning that specifies how four training states (parameters Theta, optimizer state Omega, gradients G, activations A) are distributed across devices via five placement modes (replicated, sharded, sharded-with-gather, materialized, offloaded). From these placements, memory and communication costs are derived without relying on implementation details, enabling exact predictions such as ZeRO-3 achieving an 8x memory reduction with a 1.5x increase in communication, consistent with the original results. The framework proves necessary and sufficient correctness conditions for semantic equivalence to single-device training, and provides a composition calculus to safely combine strategies, thereby unifying DP, TP, PP, and ZeRO as instances of a single semantic model. It also validates the approach against published results and offers guidance for strategy selection, highlighting its potential to predict resource requirements and reason about new parallelism configurations. Overall, placement semantics supplies a rigorous, declarative foundation for comparing, composing, and enriching distributed training strategies with formal guarantees.
Abstract
Training large language models requires distributing computation across many accelerators, yet practitioners select parallelism strategies (data, tensor, pipeline, ZeRO) through trial and error because no unified systematic framework predicts their behavior. We introduce placement semantics: each strategy is specified by how it places four training states (parameters, optimizer, gradients, activations) across devices using five modes (replicated, sharded, sharded-with-gather, materialized, offloaded). From placement alone, without implementation details, we derive memory consumption and communication volume. Our predictions match published results exactly: ZeRO-3 uses 8x less memory than data parallelism at 1.5x communication cost, as reported in the original paper. We prove two conditions (gradient integrity, state consistency) are necessary and sufficient for distributed training to match single-device results, and provide composition rules for combining strategies safely. The framework unifies ZeRO Stages 1-3, Fully Sharded Data Parallel (FSDP), tensor parallelism, and pipeline parallelism as instances with different placement choices.
