DCAIMar 14, 2021

CrossoverScheduler: Overlapping Multiple Distributed Training Applications in a Crossover Manner

arXiv:2103.07974v1
AI Analysis

This addresses efficiency issues in GPU cluster utilization for distributed training, offering an incremental improvement over existing scheduling methods.

The paper tackles the problem of communication delays in distributed deep learning by overlapping multiple training applications to fill idle time, resulting in a 20% speedup on ImageNet classification tasks without compromising convergence or accuracy.

Distributed deep learning workloads include throughput-intensive training tasks on the GPU clusters, where the Distributed Stochastic Gradient Descent (SGD) incurs significant communication delays after backward propagation, forces workers to wait for the gradient synchronization via a centralized parameter server or directly in decentralized workers. We present CrossoverScheduler, an algorithm that enables communication cycles of a distributed training application to be filled by other applications through pipelining communication and computation. With CrossoverScheduler, the running performance of distributed training can be significantly improved without sacrificing convergence rate and network accuracy. We achieve so by introducing Crossover Synchronization which allows multiple distributed deep learning applications to time-share the same GPU alternately. The prototype of CrossoverScheduler is built and integrated with Horovod. Experiments on a variety of distributed tasks show that CrossoverScheduler achieves 20% \times speedup for image classification tasks on ImageNet dataset.

Foundations

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

Your Notes