paper-with-me

Papers

SkipPipe: Partial and Reordered Pipelining Framework for Training LLMs in Heterogeneous Networks

2025-02-27 · Nikolay Blagoev, Lydia Yiyu Chen, Oğuzhan Ersoy

Data and pipeline parallelism are ubiquitous for training of Large Language Models (LLM) on distributed nodes. Driven by the need for cost-effective training, recent work explores efficient communication arrangement for end to end training. Motivated by LLM's resistance to layer skipping and layer reordering, in this paper, we explore stage (several consecutive layers) skipping in pipeline training, and challenge the conventional practice of sequential pipeline execution. We derive convergence and throughput constraints (guidelines) for pipelining with skipping and swapping pipeline stages. Based on these constraints, we propose SkipPipe, the first partial pipeline framework to reduce the end-to-end training time for LLMs while preserving the convergence. The core of SkipPipe is a path scheduling algorithm that optimizes the paths for individual microbatches and reduces idle time (due to microbatch collisions) on the distributed nodes, complying with the given stage skipping ratio. We extensively evaluate SkipPipe on LLaMa models from 500M to 8B parameters on up to 20 nodes. Our results show that SkipPipe reduces training iteration time by up to $55\%$ compared to full pipeline. Our partial pipeline training also improves resistance to layer omission during inference, experiencing a drop in perplexity of only $7\%$ when running only half the model. Our code is available at https://github.com/gensyn-ai/skippipe.

📄 PDF Abstract BibTeX arXiv:2502.19913

Code (1)

gensyn-ai/skippipe 공식 구현 pytorch

Tasks

Scheduling

Methods 이 논문이 사용한 방법론

LLaMA LLaMA is a collection of foundation language models ranging from 7B to 65B parameters. It is based on the transformer architecture with various improvements that were…

Similar Papers 제목 키워드 기반

NestPipe: Large-Scale Recommendation Training on 1,500+ Accelerators via Nested Pipelining

2026-04-08 · Zhida Jiang, Zhaolong Xing, Huichao Chai, Tianxing Sun 외 arxiv

Modern recommendation models have increased to trillions of parameters. As cluster scales expand to O(1k), distributed training bottlenecks shift from computation and memory to data movement, especially lookup and commun…

SpikePipe: Accelerated Training of Spiking Neural Networks via Inter-Layer Pipelining and Multiprocessor Scheduling

2024-06-11 · Sai Sanjeet, Bibhu Datta Sahoo, Keshab K. Parhi

Spiking Neural Networks (SNNs) have gained popularity due to their high energy efficiency. Prior works have proposed various methods for training SNNs, including backpropagation-based methods. Training SNNs is computatio…

Scheduling

ROSE: Reordered SparseGPT for More Accurate One-Shot Large Language Models Pruning

2026-03-06 · Mingluo Su, Huan Wang arxiv

Pruning is widely recognized as an effective method for reducing the parameters of large language models (LLMs), potentially leading to more efficient deployment and inference. One classic and prominent path of LLM one-s…

LayerPipe2: Multistage Pipelining and Weight Recompute via Improved Exponential Moving Average for Training Neural Networks

2025-12-09 · Nanda K. Unnikrishnan, Keshab K. Parhi arxiv

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 empirica…

Alto: Orchestrating Distributed Compound AI Systems with Nested Ancestry

2024-03-07 · Deepti Raghavan, Keshav Santhanam, Muhammad Shahir Rahman, Nayani Modugula 외

Compound AI applications chain together subcomponents such as generative language models, document retrievers, and embedding models. Applying traditional systems optimizations such as parallelism and pipelining in compou…

ChatbotScheduling