LayerPipe2: Multistage Pipelining and Weight Recompute via Improved Exponential Moving Average for Training Neural Networks
Nanda K. Unnikrishnan, Keshab K. Parhi
TL;DR
LayerPipe2 provides a principled, retiming-based theory for pipelined backpropagation, deriving explicit delay assignments ($Delay(l)=2S(l)$) and extending to arbitrary multistage partitions. It introduces a storage-efficient weight reconstruction via a pipeline-aware EMA, reducing memory from a full history to a compact moving-average while preserving convergence. Experimental results on CIFAR-100 with ResNet-18 demonstrate that the proposed EMA recovers performance close to exact weight stashing, validating the approach and its scalability. The work connects delayed-gradient theory with practical pipeline design, enabling deeper, more flexible training pipelines with controlled compute-communication tradeoffs.
Abstract
In our prior work, LayerPipe, we had introduced an approach to accelerate training of convolutional, fully connected, and spiking neural networks by overlapping forward and backward computation. However, despite empirical success, a principled understanding of how much gradient delay needs to be introduced at each layer to achieve desired level of pipelining was not addressed. This paper, LayerPipe2, fills that gap by formally deriving LayerPipe using variable delayed gradient adaptation and retiming. We identify where delays may be legally inserted and show that the required amount of delay follows directly from the network structure where inner layers require fewer delays and outer layers require longer delays. When pipelining is applied at every layer, the amount of delay depends only on the number of remaining downstream stages. When layers are pipelined in groups, all layers in the group share the same assignment of delays. These insights not only explain previously observed scheduling patterns but also expose an often overlooked challenge that pipelining implicitly requires storage of historical weights. We overcome this storage bottleneck by developing a pipeline--aware moving average that reconstructs the required past states rather than storing them explicitly. This reduces memory cost without sacrificing the accuracy guarantees that makes pipelined learning viable. The result is a principled framework that illustrates how to construct LayerPipe architectures, predicts their delay requirements, and mitigates their storage burden, thereby enabling scalable pipelined training with controlled communication computation tradeoffs.
