Sparser is Faster and Less is More: Efficient Sparse Attention for Long-Range Transformers
Chao Lou, Zixia Jia, Zilong Zheng, Kewei Tu
TL;DR
Long sequences in autoregressive transformers are hampered by quadratic attention and KV memory costs. The paper introduces SparseK Attention, combining a learnable KV scoring network with a differentiable SparseK operator to select a fixed number of KV pairs per query, achieving linear-time generation and constant memory. Through method extensions, training tricks, and a fused kernel, SparseK outperforms prior sparse attention methods on language modeling and downstream tasks, and can be integrated into pretrained LLMs with minimal fine-tuning. Empirical results show improved perplexity, robust length extrapolation, and favorable efficiency trade-offs, underscoring SparseK as a practical solution for long-range dependency modeling.
Abstract
Accommodating long sequences efficiently in autoregressive Transformers, especially within an extended context window, poses significant challenges due to the quadratic computational complexity and substantial KV memory requirements inherent in self-attention mechanisms. In this work, we introduce SPARSEK Attention, a novel sparse attention mechanism designed to overcome these computational and memory obstacles while maintaining performance. Our approach integrates a scoring network and a differentiable top-k mask operator, SPARSEK, to select a constant number of KV pairs for each query, thereby enabling gradient-based optimization. As a result, SPARSEK Attention offers linear time complexity and constant memory footprint during generation. Experimental results reveal that SPARSEK Attention outperforms previous sparse attention methods and provides significant speed improvements during both training and inference, particularly in language modeling and downstream tasks. Furthermore, our method can be seamlessly integrated into pre-trained Large Language Models (LLMs) with minimal fine-tuning, offering a practical solution for effectively managing long-range dependencies in diverse applications.
