PulseAugur
实时 20:02:48

新的 KV 缓存压缩技术提升大语言模型推理性能 · 跟踪 9 个来源

多篇研究论文探讨了优化大语言模型(LLM)服务中的键值(KV)缓存的新技术,以解决内存和性能瓶颈。这些方法包括量化、剪枝、合并和频率引导压缩,旨在减少内存使用并提高长上下文工作负载的推理速度。研究评估了这些技术在各种基准测试和模型上的表现,强调了压缩率、任务质量和系统性能之间的权衡,并建议根据工作负载选择压缩策略。 AI

影响 KV 缓存管理方面的这些进步对于实现更高效、可扩展的大语言模型部署至关重要,尤其是在长上下文应用场景中。

排序理由 多篇学术论文介绍了并评估了大语言模型服务中 KV 缓存优化的新方法。

在 Hugging Face Daily Papers 阅读 →

AI 生成摘要 · Google Gemini · 来自 37 个来源。 我们如何撰写摘要 →

新的 KV 缓存压缩技术提升大语言模型推理性能 · 跟踪 9 个来源

报道来源 [37]

  1. arXiv cs.AI TIER_1 English(EN) · Jiantong Jiang, Peiyu Yang, Rui Zhang, Feng Liu ·

    Towards Efficient Large Language Model Serving: A Survey on System-Aware KV Cache Optimization

    arXiv:2607.08057v1 Announce Type: cross Abstract: Despite the rapid advancements of large language models (LLMs), LLM serving systems remain memory-intensive and costly. The key-value (KV) cache, which stores KV tensors during autoregressive decoding, is crucial for enabling low-…

  2. arXiv cs.LG TIER_1 English(EN) · Vladimir Gusev ·

    Fractal KV-Cache Archives: Lossless Symbolic Storage with In-Place Retrieval for Long-Context LLM Inference

    arXiv:2607.07144v1 Announce Type: new Abstract: The key-value (KV) cache dominates the memory cost of long-context autoregressive inference, and a growing body of work compresses it through quantization, eviction, or offloading. We study a complementary question: once a position'…

  3. arXiv cs.CL TIER_1 English(EN) · Feng Liu ·

    Towards Efficient Large Language Model Serving: A Survey on System-Aware KV Cache Optimization

    Despite the rapid advancements of large language models (LLMs), LLM serving systems remain memory-intensive and costly. The key-value (KV) cache, which stores KV tensors during autoregressive decoding, is crucial for enabling low-latency, high-throughput LLM inference serving. In…

  4. arXiv cs.LG TIER_1 English(EN) · Vladimir Gusev ·

    Fractal KV-Cache Archives: Lossless Symbolic Storage with In-Place Retrieval for Long-Context LLM Inference

    The key-value (KV) cache dominates the memory cost of long-context autoregressive inference, and a growing body of work compresses it through quantization, eviction, or offloading. We study a complementary question: once a position's KV state has been quantized to codebook indice…

  5. arXiv cs.AI TIER_1 English(EN) · Nikita Agrawal, Ruben Mayer ·

    长上下文服务中的 KV 缓存优化在任务质量和系统性能上的基准测试

    arXiv:2607.05399v1 Announce Type: cross Abstract: Large language model serving is increasingly limited by KV-cache growth under long-context workloads, yet existing KV-cache compression techniques are difficult to compare because they were evaluated on different models, tasks, bu…

  6. arXiv cs.AI TIER_1 English(EN) · Anna C\'ordoba, Adam Puente Tercero, Nerea Angulo Hijo, Mar Linares Tercero, Julia Barrientos, Ainhoa Miranda, Jes\'us Olivera ·

    FreqDepthKV:用于长上下文大语言模型推理中鲁棒KV缓存压缩的频率引导深度共享

    arXiv:2607.06519v1 Announce Type: new Abstract: Long-context LLM inference is increasingly limited by the memory and bandwidth cost of KV caches, yet aggressive compression can remove the layer-specific evidence needed for retrieval and multi-step reasoning. We introduce FreqDept…

  7. arXiv cs.AI TIER_1 English(EN) · Jesús Olivera ·

    FreqDepthKV:用于长上下文大语言模型推理中鲁棒KV缓存压缩的频率引导深度共享

    Long-context LLM inference is increasingly limited by the memory and bandwidth cost of KV caches, yet aggressive compression can remove the layer-specific evidence needed for retrieval and multi-step reasoning. We introduce FreqDepthKV, an inference-time cache compression method …

  8. arXiv cs.AI TIER_1 English(EN) · Jie Li, Tongyang Wang, Yong Chen ·

    从张量缓冲区到分布式内存层级:LLM服务KV缓存管理综述

    arXiv:2607.02574v1 Announce Type: cross Abstract: The key-value (KV) cache has become a first-order memory object in LLM serving rather than a temporary per-request tensor. This survey classifies more than thirty KV-management systems and frameworks using four axes: locality, lif…

  9. arXiv cs.AI TIER_1 English(EN) · Kyoungmin Kim, Jiacheng Li, Kijae Hong, Qunyou Liu, Darong Huang, Anastasia Ailamaki ·

    Saving GPU Hours in LLM Inference System Development and Online Workloads with Simulation and DBMS-Inspired Cache Replacement Policies

    arXiv:2411.07447v5 Announce Type: replace-cross Abstract: LLMs are increasingly used world-wide from daily tasks to agentic systems and data analytics, requiring significant GPU resources. While LLM inference systems are capable of serving millions of requests from multiple users…

  10. arXiv cs.AI TIER_1 English(EN) · Bing Xie, Zhipeng Wang, Masahiro Tanaka, Zheng Zhen ·

    PEEK:LLM服务中的预测性队列感知KV缓存管理

    arXiv:2607.02525v1 Announce Type: cross Abstract: We present PEEK, a lightweight scheduling and eviction framework for both online (streaming) and offline (batch) LLM serving; this paper focuses on the online regime. PEEK maintains an incremental radix tree over the pending queue…

  11. arXiv cs.LG TIER_1 English(EN) · Lukas Haverbeck, Carmen Amo Alonso, Andres Felipe Posada-Moreno, Sebastian Trimpe, Marco Pavone ·

    KV缓存压缩的风险

    arXiv:2607.01520v1 Announce Type: new Abstract: Transformer inference on long sequences is expensive because softmax attention repeatedly reads from a large KV cache. The prevalent approach to this bottleneck is KV cache compression, which replaces the full cache with a compact s…

  12. arXiv cs.LG TIER_1 English(EN) · Wenchen Han, Gingfung Matthew Yeung, Marco Barletta, William Toner, Amory Hoste, Adam Barker ·

    Lynx:渐进式推测量化,加速长上下文推理中的 KV 传输

    arXiv:2607.01831v1 Announce Type: cross Abstract: Long-context inference is increasingly common in large language model (LLM) serving, driven by retrieval-augmented generation and agentic systems. In disaggregated inference, these workloads require transferring large Key-Value (K…

  13. arXiv cs.AI TIER_1 English(EN) · Shen Han, Yuyang Wu ·

    Kara:通过滑动窗口KV缓存压缩实现高效推理LLM服务

    arXiv:2607.01237v1 Announce Type: cross Abstract: Reasoning language models often generate long chain-of-thought (CoT), which accumulates a massive KV cache during the decoding phase and incurs high decoding latency and limited throughput. To address these issues, KV cache compre…

  14. arXiv cs.LG TIER_1 English(EN) · Sheng Qiang, Ruiwei Chen, Yinpeng Wu, Jinyu Gu, Zhichao Hua, Yubin Xia, Binyu Zang, Haibo Chen ·

    MosaicKV:通过动态二维KV缓存压缩服务长上下文LLM

    arXiv:2607.00760v1 Announce Type: new Abstract: Long-context LLM services now sustain prompts with hundreds of thousands to millions of tokens, making the key-value (KV) cache a first-order serving cost. Because the cache grows linearly with context length, it can exhaust GPU mem…

  15. arXiv cs.LG TIER_1 English(EN) · Soosung Kim, Minjae Park, Eui-Young Chung, Jaeyong Chung ·

    GSRQ: 增益形状残差量化用于亚1比特KV缓存

    arXiv:2607.01065v1 Announce Type: new Abstract: The deployment of Large Language Models (LLMs) with extended context windows is increasingly constrained by the linear growth of Key-Value (KV) cache memory. Vector Quantization (VQ), particularly Residual Quantization (RQ), is a pr…

  16. arXiv cs.LG TIER_1 English(EN) · Jaeyong Chung ·

    GSRQ:用于亚1比特KV缓存的增益-形状残差量化

    The deployment of Large Language Models (LLMs) with extended context windows is increasingly constrained by the linear growth of Key-Value (KV) cache memory. Vector Quantization (VQ), particularly Residual Quantization (RQ), is a promising approach for pushing KV cache storage to…

  17. arXiv cs.LG TIER_1 English(EN) · Haibo Chen ·

    MosaicKV:通过动态二维KV缓存压缩服务长上下文LLM

    Long-context LLM services now sustain prompts with hundreds of thousands to millions of tokens, making the key-value (KV) cache a first-order serving cost. Because the cache grows linearly with context length, it can exhaust GPU memory, force smaller batches, and reduce serving t…

  18. arXiv cs.AI TIER_1 English(EN) · Zhiqing Zhong, Zhijing Ye, Jian Zhang, Weijian Zheng, Bolun Sun, Xiaodong Yu ·

    KV-RM:为静态图大模型服务正则化KV缓存移动

    arXiv:2605.09735v2 Announce Type: replace-cross Abstract: Static-graph LLM decoders provide predictable launches, fixed tensor shapes, and low submission overhead, but online decoding exposes highly irregular KV-cache behavior: request lengths differ, EOS events arrive asynchrono…

  19. arXiv cs.CL TIER_1 English(EN) · Amirhossein Abaskohi, Giuseppe Carenini, Peter West, Yuhang He ·

    SeKV:具有分层语义记忆的长上下文LLM推理的自适应KV缓存

    arXiv:2606.31145v1 Announce Type: new Abstract: Large language models increasingly operate over long contexts, where the KV cache becomes a dominant memory bottleneck: its size grows linearly with sequence length and must be retained throughout decoding, making full GPU caching p…

  20. arXiv cs.CL TIER_1 English(EN) · Yuhang He ·

    SeKV:用于长上下文大语言模型推理的分层语义记忆分辨率自适应KV缓存

    Large language models increasingly operate over long contexts, where the KV cache becomes a dominant memory bottleneck: its size grows linearly with sequence length and must be retained throughout decoding, making full GPU caching prohibitively expensive without compression. Exis…

  21. arXiv cs.AI TIER_1 English(EN) · Shuvendu Roy, Mengyao Zhai, Hossein Hajimirsadeghi, Golnoosh Samei ·

    面向LLM的覆盖驱动KV缓存驱逐,以实现高效和改进的推理

    arXiv:2606.29563v1 Announce Type: cross Abstract: Large language models (LLMs) excel at complex tasks like question answering and summarization, thanks to their ability to handle long-context inputs. However, deploying LLMs is costly, not only due to the high computational demand…

  22. Hugging Face Daily Papers TIER_1 English(EN) ·

    SeKV: Resolution-Adaptive KV Cache with Hierarchical Semantic Memory for Long-Context LLM Inference

    SeKV introduces a resolution-adaptive semantic KV cache that compresses context into entropy-guided spans stored across GPU-CPU memory hierarchies, enabling efficient long-context processing with minimal memory overhead and preserved token-level detail.

  23. arXiv cs.CL TIER_1 English(EN) · Fei Zuo, Zikang Zhou, Hao Cong, Xiaoyan Xi, Ho Fai Leung ·

    RateQuant:通过率失真理论实现最优混合精度KV缓存量化

    arXiv:2605.06675v2 Announce Type: replace-cross Abstract: Large language models cache all previously computed key-value (KV) pairs during generation, and this KV cache grows linearly with sequence length, making it a primary memory bottleneck for serving. Quantizing the KV cache …

  24. arXiv cs.AI TIER_1 English(EN) · Xuanfan Ni, Liyan Xu, Chenyang Lyu, Longyue Wang, Mo Yu, Lemao Liu, Fandong Meng, Jie Zhou, Piji Li ·

    ReFreeKV:迈向无阈值键值缓存压缩

    arXiv:2502.16886v4 Announce Type: replace-cross Abstract: To reduce memory consumption during LLM inference, a handful of methods have been proposed for KV cache pruning. While these techniques can accomplish lossless memory reduction on many datasets, they often hinge on an unde…

  25. arXiv cs.AI TIER_1 English(EN) · Jushi Kai, Zhuiri Xiao, Alexandra Birch, Zhouhan Lin ·

    面向长推理的信息感知键值缓存压缩

    arXiv:2606.26875v1 Announce Type: cross Abstract: Reasoning capability has advanced rapidly in large language models (LLMs), leading to an increasing size of key-value (KV) cache in both prefilling and decoding stages. Existing KV cache compression methods mainly rely on attentio…

  26. Hugging Face Daily Papers TIER_1 English(EN) ·

    ReFreeKV:迈向无阈值键值缓存压缩

    ReFreeKV addresses the limitations of threshold-dependent KV cache pruning by introducing a threshold-free approach that adaptively allocates compression budgets while maintaining full-cache performance across diverse datasets and model sizes.

  27. arXiv cs.AI TIER_1 English(EN) · Zhouhan Lin ·

    面向长推理的信息感知键值缓存压缩

    Reasoning capability has advanced rapidly in large language models (LLMs), leading to an increasing size of key-value (KV) cache in both prefilling and decoding stages. Existing KV cache compression methods mainly rely on attention weights to estimate token importance. While atte…

  28. Hugging Face Daily Papers TIER_1 English(EN) ·

    面向长推理的信息感知键值缓存压缩

    InfoKV is an entropy-aware KV cache compression framework that enhances long-context reasoning in LLMs by incorporating information-theoretic signals alongside attention weights.

  29. arXiv cs.CL TIER_1 English(EN) · Fengfeng Liang, Yuechen Zhang, Jiaya Jia ·

    RoPE-Aware Bit Allocation for KV-Cache Quantization

    arXiv:2606.24033v1 Announce Type: cross Abstract: Existing low-bit KV-cache quantizers often treat each cached key as a flat vector. Under RoPE, however, a key's contribution to a future attention logit decomposes into a position-dependent sum over two-dimensional frequency block…

  30. arXiv cs.CL TIER_1 English(EN) · Jiaya Jia ·

    RoPE-Aware Bit Allocation for KV-Cache Quantization

    Existing low-bit KV-cache quantizers often treat each cached key as a flat vector. Under RoPE, however, a key's contribution to a future attention logit decomposes into a position-dependent sum over two-dimensional frequency blocks. This makes key-cache quantization a block-wise …

  31. Hugging Face Daily Papers TIER_1 English(EN) ·

    RoPE-Aware Bit Allocation for KV-Cache Quantization

    Block-GTQ introduces a RoPE-aware bit allocation method for key-cache quantization that improves attention accuracy and downstream performance through adaptive bit distribution and packed cache serving.

  32. Medium — MLOps tag TIER_1 English(EN) · Rohan Mistry ·

    为什么你的大语言模型速度慢——KV缓存、批处理和量化

    <div class="medium-feed-item"><p class="medium-feed-image"><a href="https://pub.towardsai.net/why-your-llm-is-slow-kv-cache-batching-and-quantization-77e663d0446c?source=rss------mlops-5"><img src="https://cdn-images-1.medium.com/max/1672/1*1dvBTamREWhVNdrl8d1zVw.png" width="1672…

  33. dev.to — LLM tag TIER_1 English(EN) · mihir mohapatra ·

    Inference Optimization for the Rest of Us — KV Cache, Quantization, and Latency Tradeoffs

    <p>Most inference optimization content is written for people running fleets of H100s. If you're serving models out of a single GPU box, a modest EC2/ECS setup, or even CPU inference for smaller models, a lot of that advice doesn't transfer — the constraints are different, and the…

  34. dev.to — LLM tag TIER_1 English(EN) · I Want To Learn Programming ·

    KV缓存:为何LLM推理受内存限制而非计算限制

    <p>A lot of 2026's headline AI infrastructure wins, claims like "6x less inference memory", weren't about doing more math. They were about moving <em>less data</em>. That's because when a large language model generates text, it is usually <strong>memory-bound</strong>, not comput…

  35. r/LocalLLaMA TIER_1 English(EN) · /u/Mr-serial_killer ·

    KV缓存量化是没人谈论的免费午餐

    <table> <tr><td> <a href="https://www.reddit.com/r/LocalLLaMA/comments/1un70tt/kv_cache_quantization_is_the_free_lunch_nobody/"> <img alt="KV cache quantization is the free lunch nobody talks about" src="https://preview.redd.it/ghd28puza7bh1.jpeg?width=640&amp;crop=smart&amp;auto…

  36. r/LocalLLaMA TIER_1 English(EN) · /u/crusaderky ·

    我绘制了 Qwen3.6-35B-A3B 和 Gemma4-E2B QAT 的 KV 缓存量化的 KLD 图

    <table> <tr><td> <a href="https://www.reddit.com/r/LocalLLaMA/comments/1udjvhd/i_mapped_the_kld_of_kv_cache_quantization_for/"> <img alt="I mapped the KLD of KV cache quantization for Qwen3.6-35B-A3B and Gemma4-E2B QAT" src="https://preview.redd.it/e0qmwmffs19h1.png?width=140&amp…

  37. r/LocalLLaMA TIER_1 English(EN) · /u/rima_2711 ·

    Gemma 4 QAT 在 KV 缓存量化方面似乎响应更好

    <table> <tr><td> <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ubl0df/gemma_4_qat_seems_to_respond_significantly_better/"> <img alt="Gemma 4 QAT seems to respond significantly better to KV cache quantization" src="https://preview.redd.it/wxvhm0r1ml8h1.png?width=320&amp;c…