Communication Efficient Distributed Training with Distributed Lion
Bo Liu, Lemeng Wu, Lizhang Chen, Kaizhao Liang, Jiaxu Zhu, Chen Liang, Raghuraman Krishnamoorthi, Qiang Liu
TL;DR
This paper introduces Distributed Lion, a communication-efficient distributed training framework built on the Lion optimizer. Each worker maintains its own optimizer state and transmits only binary updates $\delta_{i,t}$ to a central server, which aggregates them into $\Delta_t$ by averaging or majority voting and broadcasts back for parameter updates, dramatically reducing bandwidth compared to FP32-gradient communication. The authors formalize the method as a box-constrained optimization with a two-phase dynamics and provide convergence guarantees for both aggregation schemes, supported by empirical results on CIFAR-10, ImageNet, and large-language-model tasks. Across vision and language benchmarks, Distributed Lion achieves performance comparable to global Lion or AdamW while offering 30x–32x reductions in communication, and often outperforms existing efficient distributed methods such as DGC and TernGrad in the bandwidth-accuracy trade-off. The work highlights a promising direction for scalable, resource-efficient distributed training of large AI models.
Abstract
The Lion optimizer has been a promising competitor with the AdamW for training large AI models, with advantages on memory, computation, and sample efficiency. In this paper, we introduce Distributed Lion, an innovative adaptation of Lion for distributed training environments. Leveraging the sign operator in Lion, our Distributed Lion only requires communicating binary or lower-precision vectors between workers to the center server, significantly reducing the communication cost. Our theoretical analysis confirms Distributed Lion's convergence properties. Empirical results demonstrate its robustness across a range of tasks, worker counts, and batch sizes, on both vision and language problems. Notably, Distributed Lion attains comparable performance to standard Lion or AdamW optimizers applied on aggregated gradients, but with significantly reduced communication bandwidth. This feature is particularly advantageous for training large models. In addition, we also demonstrate that Distributed Lion presents a more favorable performance-bandwidth balance compared to existing efficient distributed methods such as deep gradient compression and ternary gradients.
