paper-with-me

Papers

A Simple Plug-in for Improving Eviction-Based KV Cache Compression

2026-05-22 · Yuping Lin, Jiayuan Ding, Yue Xing, Pengfei He, Jiliang Tang, Subhabrata Mukherjee arxiv

KV cache growth is a major bottleneck for long-context inference in large language models. Existing methods are often dominated by binary eviction or representation approximation, which may underutilize tokens that are not critical for exact retention but are still reconstructable. We present VECTOR, a plug-and-play augmentation for eviction-based pipelines that introduces three-way token routing: retention, approximation, and eviction. VECTOR combines an importance signal from the base scorer with a reconstructability signal from an offline-calibrated regression-based value estimation. By leveraging reconstructability, VECTOR recovers useful value information that would otherwise be irreversibly lost under binary eviction, while preserving key vectors for attention routing stability. Experimental results show that VECTOR improves quality-memory trade-offs under medium-to-high compression, with especially clear gains in stricter budget regimes.

📄 PDF Abstract BibTeX arXiv:2605.23258

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Ada-KV: Optimizing KV Cache Eviction by Adaptive Budget Allocation for Efficient LLM Inference

2024-07-16 · Yuan Feng, Junlin Lv, Yukun Cao, Xike Xie 외

Large Language Models have excelled in various domains but face efficiency challenges due to the growing Key-Value (KV) cache required for long-sequence inference. Recent efforts aim to reduce KV cache size by evicting v…

EVICPRESS: Joint KV-Cache Compression and Eviction for Efficient LLM Serving

2025-12-16 · Shaoting Feng, Yuhan Liu, Hanchen Li, Xiaokun Chen 외 arxiv

Reusing KV cache is essential for high efficiency of Large Language Model (LLM) inference systems. With more LLM users, the KV cache footprint can easily exceed GPU memory capacity, so prior work has proposed to either e…

GraphKV: Breaking the Static Selection Paradigm with Graph-Based KV Cache Eviction

2025-08-30 · Xuelin Li, Xiangqi Jin, Linfeng Zhang arxiv

Efficient Key-Value (KV) cache management is essential for processing long text sequences in large language models (LLMs), where memory constraints often limit performance. Conventional KV eviction strategies, such as to…

The Pitfalls of KV Cache Compression

2025-09-30 · Alex Chen, Renato Geh, Aditya Grover, Guy Van den Broeck 외 arxiv

KV cache compression promises increased throughput and efficiency with negligible loss in performance. While the gains in throughput are indisputable and recent literature has indeed shown minimal degradation on particul…

KVpop -- Key-Value Cache Compression with Predictive Online Pruning

2026-07-06 · Lukas Hauzenberger, Niklas Schmidinger, Anamaria-Roberta Hartl, David Stap 외 arxiv

Key-value (KV) cache growth is a major bottleneck in autoregressive decoding, as memory and bandwidth scale linearly with context length. Existing KV eviction methods often rely on static heuristics or proxy scores, whic…

Mathematical Reasoning