LGFeb 5, 2023

Quantized Distributed Training of Large Models with Convergence Guarantees

arXiv:2302.02390v118 citationsh-index: 46
Originality Highly original
AI Analysis

This addresses scalability issues in distributed training of large language models, offering a practical solution for researchers and engineers working with massive datasets and models.

The paper tackles the challenge of communication bottlenecks in fully-sharded data parallel (FSDP) training for large models by introducing QSDP, a variant that supports gradient and weight quantization with theoretical guarantees, achieving up to 2.2x speedups while preserving accuracy in GPT-family models with up to 1.3 billion parameters.

Communication-reduction techniques are a popular way to improve scalability in data-parallel training of deep neural networks (DNNs). The recent emergence of large language models such as GPT has created the need for new approaches to exploit data-parallelism. Among these, fully-sharded data parallel (FSDP) training is highly popular, yet it still encounters scalability bottlenecks. One reason is that applying compression techniques to FSDP is challenging: as the vast majority of the communication involves the model's weights, direct compression alters convergence and leads to accuracy loss. We present QSDP, a variant of FSDP which supports both gradient and weight quantization with theoretical guarantees, is simple to implement and has essentially no overheads. To derive QSDP we prove that a natural modification of SGD achieves convergence even when we only maintain quantized weights, and thus the domain over which we train consists of quantized points and is, therefore, highly non-convex. We validate this approach by training GPT-family models with up to 1.3 billion parameters on a multi-node cluster. Experiments show that QSDP preserves model accuracy, while completely removing the communication bottlenecks of FSDP, providing end-to-end speedups of up to 2.2x.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes