Arctic Long Sequence Training: Scalable And Efficient Training For Multi-Million Token Sequences

Stas Bekman, Samyam Rajbhandari, Michael Wyatt, Jeff Rasley, Tunji Ruwase +3 more
6/16/2025
cs.LG

Abstract

Long sequences are critical for applications like RAG, long document summarization, multi-modality, etc., and modern LLMs, like Llama 4 Scout, support max sequence length of up to 10 million tokens. However, outside of enterprise labs, long sequence training is challenging for the AI community with limited system support in the open-source space. Out-of-box, even on a modern NVIDIA H100 80GB GPU cluster, training Llama 8B model with sequence over 32K runs out of memory on a basic Hugging Face (HF) model due to two reasons: i) LLM training workloads are not optimized to fully leverage a single GPU memory, ii) existing solutions for leveraging multiple GPU memory are not easily available to HF models, making long sequence training inaccessible. We address this with Arctic Long Sequence Training (ALST). It offers a combination of attention-agnostic single GPU and multi-GPU memory optimizations, that enables it to support out-of-box training of multi-million sequence length for a wide variety of HF models. ALST supports training Meta's Llama 8B model with 500K sequence length on a single H100 GPU, 3.7M on a single 8xH100 GPU node, and over 15M on a 4 node cluster, an increase of over 400x compared to the 32K baseline for the latter. ALST is fully compatible with HF models and open-sourced via Deepspeed https://www.deepspeed.ai/tutorials/ulysses-alst-sequence-pallellism/ and Arctic Training https://github.com/snowflakedb/ArcticTraining/blob/main/projects/sequence-parallelism/README.md.

View on arXivView PDF

Code Implementations(2)

Apache-2.0

ArcticTraining is a framework designed to simplify and accelerate the post-training process for large language models (LLMs)

28339C, C++Jan 10, 20251 months agoApache-2.0
PyTorchApache-2.0

DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.

42,2214,809C, C++Jan 23, 20201 months agoApache-2.0
billion-parameterscompressiondata-parallelismdeep-learninggpu+8 more

Cite this paper

@article{bekman2025arctic,
  title  = {Arctic Long Sequence Training: Scalable And Efficient Training For Multi-Million Token Sequences},
  author = {Stas Bekman and Samyam Rajbhandari and Michael Wyatt and Jeff Rasley and Tunji Ruwase and Zhewei Yao and Aurick Qiao and Yuxiong He},
  year   = {2025},
  eprint = {2506.13996},
  archivePrefix = {arXiv},
  url    = {http://arxiv.org/abs/2506.13996v1}
}

Discussion