CLLGOct 29, 2025

AttnCache: Accelerating Self-Attention Inference for LLM Prefill via Attention Cache

arXiv:2510.25979v31 citationsh-index: 4
Originality Incremental advance
AI Analysis

This addresses efficiency for real-world workloads like classification and question answering that rely on prefill-only inference, but it is incremental as it builds on existing caching techniques.

The paper tackles the performance bottleneck of self-attention in LLM prefill inference by proposing AttnCache, which reuses similar attention maps to accelerate computation, achieving up to 3x attention speedup on GPU with minimal accuracy loss.

Large Language Models (LLMs) are widely used in generative applications such as chatting, code generation, and reasoning. However, many realworld workloads such as classification, question answering, recommendation, and text embedding rely solely on the prefill stage of inference, where the model encodes input sequences without performing autoregressive decoding. In these prefill only scenarios, the self-attention computation becomes the primary performance bottleneck due to its quadratic complexity with respect to sequence length. In this paper, we observe that semantically different sentences often produce similar attention maps across layers and heads. Building on this insight, we propose AttnCache, a framework that accelerates the prefill stage of LLM inference by retrieving and reusing similar attention maps. Based on an attention map memorization database, AttnCache employs efficient caching and similarity search techniques to identify and reuse pre-cached attention maps during inference, thereby reducing the computational overhead of self-attention. Experimental results show that AttnCache achieves an average of 1.2x end-to-end and 2x attention speedup on CPU, and 1.6x end-to-end and 3x attention speedup on GPU, with negligible accuracy degradation.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes