菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-06-29
📄 Abstract - One-Step Gradient Delay is Not a Barrier for Large-Scale Asynchronous Pipeline Parallel LLM Pretraining

Modern large-scale LLM pretraining benefits from utilizing Pipeline Parallelism; however, synchronous implementations leave GPUs idle during pipeline bubbles, wasting computational resources. Asynchronous Pipeline Parallelism eliminates these bubbles, maximizing throughput at the cost of gradient staleness. Among asynchronous schedules, PipeDream-2BW is particularly appealing: unlike the original PipeDream schedule, it ensures a constant one-step gradient delay regardless of pipeline depth. However, its adoption remains limited due to the common belief that optimizing under staleness is fundamentally unstable. In this work, we challenge this assumption, demonstrating that degradation under one-step delay depends strongly on optimizer choice rather than being an intrinsic limitation. We provide the first comprehensive empirical analysis showing that while AdamW, the predominant optimizer at the time when PipeDream-2BW was introduced, indeed suffers from severe degradation, recent methods like Muon exhibit strong robustness under a one-step delay. We introduce an optimizer-agnostic Error Feedback-inspired correction to further mitigate delay effects. We provide supporting theoretical analysis demonstrating convergence for Muon with and without this correction. Extensive evaluation on models up to 10B parameters confirms that our strategies bridge the performance gap with synchronous training, highlighting the practical potential of asynchronous pipeline parallelism at scale.

顶级标签: llm model training systems
详细标签: pipeline parallelism asynchronous training gradient staleness optimizer robustness error feedback 或 搜索:

一步梯度延迟不是大规模异步流水线并行大模型预训练的障碍 / One-Step Gradient Delay is Not a Barrier for Large-Scale Asynchronous Pipeline Parallel LLM Pretraining


1️⃣ 一句话总结

本文通过理论和实验证明,在异步流水线并行训练大模型时,由旧梯度引起的一步延迟并非天生导致训练不稳定,而是主要取决于所选优化器:AdamW在此场景下性能严重下降,而Muon等新优化器则能有效抵抗延迟影响,结合误差反馈修正后,模型性能可媲美同步训练。

源自 arXiv: 2606.30634