paper-with-me

홈 › Papers

AutoSP: Unlocking Long-Context LLM Training Via Compiler-Based Sequence Parallelism

2026-04-29 · Ahan Gupta, Zhihao Wang, Neel Dani, Masahiro Tanaka, Olatunji Ruwase, Minjia Zhang arxiv

Large-language-models (LLMs) demonstrate enormous utility in long-context tasks which require processing prompts that consist of tens to hundreds of thousands of tokens. However, existing LLM training libraries do not provide easy to use abstractions to optimize for long-context training, instead focusing on optimizations for models with large parameter counts through ZeRO-3/FSDP, Tensor and Pipeline parallelism. This forces users to rewrite LLM training libraries to incorporate compositions of various complex long-context optimizations, such as sequence-parallelism, to training pipelines; a process that requires in-depth expertise, reducing developer productivity. To tackle these challenges, we introduce AutoSP: the first automated solution to automatically optimize LLM training for longer-contexts. AutoSP compiles models and applies a targeted set of optimizations: automated sequence parallelism, and long-context aware activation-checkpointing, to drastically enhance LLM trainability at negligible cost to throughput. Our evaluation demonstrates AutoSP's capability on both NVIDIA and AMD hardware, increasing training contexts by upto 2.7$\times$ and 2.5$\times$ respectively over competitive hand-written baseline at negligible cost to runtime performance.

📄 PDF Abstract BibTeX arXiv:2604.27089

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

AutoSpec: An Agentic Framework for Automatically Drafting Patent Specification

2025-09-23 · Ryan Shea, Zhou Yu arxiv

Patents play a critical role in driving technological innovation by granting inventors exclusive rights to their inventions. However the process of drafting a patent application is often expensive and time-consuming, mak…

AUTOSPARSE: Towards Automated Sparse Training of Deep Neural Networks

2023-04-14 · Abhisek Kundu, Naveen K. Mellempudi, Dharma Teja Vooturi, Bharat Kaul 외

Sparse training is emerging as a promising avenue for reducing the computational cost of training neural networks. Several recent studies have proposed pruning methods using learnable thresholds to efficiently explore th…

AutoSpeed: Annotation-Free Stage-Adaptive Motion Speed Learning for Robot Manipulation

2026-07-01 · Qingda Hu, Ziheng Qiu, Jieru Zhao, Zhongxue Gan 외 arxiv

Different stages of manipulation tasks exhibit varying levels of difficulty, suggesting stage-dependent motion speeds and temporal prediction horizons. However, existing IL-based visuomotor policies typically imitate the…

Robot Manipulation

Ember: A Compiler for Efficient Embedding Operations on Decoupled Access-Execute Architectures

2025-04-14 · Marco Siracusa, Olivia Hsu, Victor Soria-Pardos, Joshua Randall 외

Irregular embedding lookups are a critical bottleneck in recommender models, sparse large language models, and graph learning models. In this paper, we first demonstrate that, by offloading these lookups to specialized a…

Graph Learning

Compiler Optimization via LLM Reasoning for Efficient Model Serving

2025-06-02 · Sujun Tang, Christopher Priebe, Rohan Mahapatra, Lianhui Qin 외

While model serving has unlocked unprecedented capabilities, the high cost of serving large-scale models continues to be a significant barrier to widespread accessibility and rapid innovation. Compiler optimizations have…

Compiler OptimizationLarge Language Model