# Taming Unbalanced Training Workloads in Deep Learning with Partial Collective Operations

**Authors:** Shigang Li, Tal Ben-Nun, Salvatore Di Girolamo, Dan Alistarh, Torsten Hoefler

arXiv: 1908.04207 · 2025-08-22

## TL;DR

This paper introduces eager-SGD, a decentralized training method that uses partial collective operations to reduce load imbalance issues in distributed deep learning, achieving faster training without accuracy loss.

## Contribution

It proposes a novel decentralized gradient accumulation method using partial collectives, with theoretical convergence guarantees and practical speedup in load-imbalanced environments.

## Key findings

- Achieves 1.27x speedup over synchronous SGD
- Maintains accuracy comparable to traditional methods
- Effective in load-imbalanced training environments

## Abstract

Load imbalance pervasively exists in distributed deep learning training systems, either caused by the inherent imbalance in learned tasks or by the system itself. Traditional synchronous Stochastic Gradient Descent (SGD) achieves good accuracy for a wide variety of tasks, but relies on global synchronization to accumulate the gradients at every training step. In this paper, we propose eager-SGD, which relaxes the global synchronization for decentralized accumulation. To implement eager-SGD, we propose to use two partial collectives: solo and majority. With solo allreduce, the faster processes contribute their gradients eagerly without waiting for the slower processes, whereas with majority allreduce, at least half of the participants must contribute gradients before continuing, all without using a central parameter server. We theoretically prove the convergence of the algorithms and describe the partial collectives in detail. Experimental results on load-imbalanced environments (CIFAR-10, ImageNet, and UCF101 datasets) show that eager-SGD achieves 1.27x speedup over the state-of-the-art synchronous SGD, without losing accuracy.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1908.04207/full.md

## Figures

22 figures with captions in the complete paper: https://tomesphere.com/paper/1908.04207/full.md

## References

63 references — full list in the complete paper: https://tomesphere.com/paper/1908.04207/full.md

---
Source: https://tomesphere.com/paper/1908.04207