🤖 AI Summary
Existing KV cache compression methods for long-sequence reasoning overlook token-level long-term importance and rely solely on local attention scores, leading to performance degradation. To address this, we propose a global-attention-aware dynamic KV cache eviction mechanism. Our method integrates current local attention scores with historically accumulated attention scores to construct a holistic token importance metric. We further optimize the eviction policy via reinforcement learning and enhance generation robustness under compression through knowledge distillation-based post-training. Experiments demonstrate that our approach significantly reduces memory footprint and computational overhead while preserving generation quality across diverse long-context tasks—including document summarization and code completion—achieving more efficient inference. This work establishes a scalable, attention-informed cache management paradigm for deploying large language models with extended context windows.
📝 Abstract
Recent reasoning large language models (LLMs) excel in complex tasks but encounter significant computational and memory challenges due to long sequence lengths. KV cache compression has emerged as an effective approach to greatly enhance the efficiency of reasoning. However, existing methods often focus on prompt compression or token eviction with local attention score, overlooking the long-term importance of tokens. We propose G-KV, a KV cache eviction method that employs a global scoring mechanism, combining local and historical attention scores to more accurately assess token importance. Additionally, we introduce post-training techniques, including reinforcement learning and distillation, to optimize models for compressed KV cache settings. The code of this paper is available on: https://github.com/microsoft/G-KV.