CLAIAug 4, 2025

CompressKV: Semantic Retrieval Heads Know What Tokens are Not Important Before Generation

arXiv:2508.02401v14 citationsh-index: 19Has Code
Originality Incremental advance
AI Analysis

This addresses memory and execution efficiency issues in long-context LLMs, offering a domain-specific improvement over existing compression methods.

The paper tackles the problem of inefficient key-value (KV) cache compression in large language models by identifying specific attention heads for token importance, resulting in consistent outperformance of state-of-the-art methods on benchmarks like LongBench and Needle-in-a-Haystack under various memory budgets.

Recent advances in large language models (LLMs) have significantly boosted long-context processing. However, the increasing key-value (KV) cache size poses critical challenges to memory and execution efficiency. Most KV cache compression methods rely on heuristic token eviction using all attention heads in Grouped Query Attention (GQA)-based LLMs. This method ignores the different functionalities of attention heads, leading to the eviction of critical tokens and thus degrades the performance of LLMs. To address the issue above, instead of using all the attention heads in GQA-based LLMs to determine important tokens as in the previous work, we first identify the attention heads in each layer that are not only capable of retrieving the initial and final tokens of a prompt, but also capable of retrieving important tokens within the text and attending to their surrounding semantic context. Afterwards, we exploit such heads to determine the important tokens and retain their corresponding KV cache pairs. Furthermore, we analyze the cache eviction error of each layer individually and introduce a layer-adaptive KV cache allocation strategy. Experimental results demonstrate the proposed CompressKV consistently outperforms state-of-the-art approaches under various memory budgets on LongBench and Needle-in-a-Haystack benchmarks. Our code is publicly available at: https://github.com/TUDa-HWAI/CompressKV.git.

Foundations

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

Your Notes