paper-with-me

홈 › Papers

LCSB: Layer-Cyclic Selective Backpropagation for Memory-Efficient On-Device LLM Fine-Tuning

2026-02-13 · Juneyoung Park, Eunbeen Yoon, Seongwan Kim. Jaeho Lee arxiv

Memory-efficient backpropagation (MeBP) has enabled first-order fine-tuning of large language models (LLMs) on mobile devices with less than 1GB memory. However, MeBP requires backward computation through all transformer layers at every step, where weight decompression alone accounts for 32--42% of backward time. We propose Layer-Cyclic Selective Backpropagation (LCSB), which computes gradients for only a subset of layers per step. Our key insight is that residual connections guarantee gradient flow through identity paths, while AdamW momentum provides implicit updates for non-selected layers. We interpret LCSB as Block Coordinate Descent on the LoRA parameter space, providing theoretical justification for convergence. LCSB achieves up to 1.40$\times$ speedup with less than 2\% quality degradation across five models and three tasks. Surprisingly, in 4-bit quantized settings, LCSB exhibits superior stability: a 3B model that completely diverges under full backpropagation converges smoothly with LCSB, suggesting an implicit regularization effect from selective gradient computation.

📄 PDF Abstract BibTeX arXiv:2602.13073

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Lowering PyTorch's Memory Consumption for Selective Differentiation

2024-04-15 · Samarth Bhatia, Felix Dangel

Memory is a limiting resource for many deep learning tasks. Beside the neural network weights, one main memory consumer is the computation graph built up by automatic differentiation (AD) for backpropagation. We observe …

HOT: Hadamard-based Optimized Training

2025-03-27 · CVPR 2025 1 · Seonggon Kim, JunCheol Shin, Seung-taek Woo, Eunhyeok Park

It has become increasingly important to optimize backpropagation to reduce memory usage and computational overhead. Achieving this goal is highly challenging, as multiple objectives must be considered jointly while maint…

Quantization

A Graph Theoretic Framework of Recomputation Algorithms for Memory-Efficient Backpropagation

2019-05-28 · NeurIPS 2019 12 · Mitsuru Kusumoto, Takuya Inoue, Gentaro Watanabe, Takuya Akiba 외

Recomputation algorithms collectively refer to a family of methods that aims to reduce the memory consumption of the backpropagation by selectively discarding the intermediate results of the forward propagation and recom…

Convergence of backpropagation with momentum for network architectures with skip connections

2017-05-21 · Chirag Agarwal, Joe Klobusicky, Dan Schonfeld

We study a class of deep neural networks with networks that form a directed acyclic graph (DAG). For backpropagation defined by gradient descent with adaptive momentum, we show weights converge for a large class of nonli…

Reducing Fine-Tuning Memory Overhead by Approximate and Memory-Sharing Backpropagation

2024-06-24 · Yuchen Yang, Yingdong Shi, Cheems Wang, XianTong Zhen 외

Fine-tuning pretrained large models to downstream tasks is an important problem, which however suffers from huge memory overhead due to large-scale parameters. This work strives to reduce memory overhead in fine-tuning f…