paper-with-me

Papers

Sub-Token Routing for KV Cache Compression

2026-04-23 · Wei Jiang, Wei Wang arxiv

Transformer inference often requires a large KV cache, especially for long-context language modeling and multimodal generation. Existing compression methods usually reduce cache cost by selecting, evicting, quantizing, or compressing cached tokens, or by reducing the visual-token sequence before language-model inference. We introduce sub-token routing, a KV-compression method that adds a finer control axis inside retained tokens. It splits each retained value vector into groups and keeps only selected groups, while leaving query and key states unchanged. The method is designed to work after token-level reduction. First, a token-reduction method determines which tokens are retained. Then, sub-token routing compresses the value states inside those retained tokens. Experiments under matched KV budgets show that adding sub-token routing improves token-level reduction performance in both LLM and VLM settings, including Quest on LLaMA-2-7B and Qwen2.5-7B, and FastV/VisionZip across LLaVA and Qwen-VL models. The gains are larger at smaller KV budgets, suggesting that value-group routing is especially useful when further token removal becomes costly. Overall, token-level reduction and sub-token routing provide complementary ways to reduce KV cost.

📄 PDF Abstract BibTeX arXiv:2604.21335

Code (0)

등록된 구현이 없습니다.

Tasks

multimodal generation

Similar Papers 제목 키워드 기반

Beyond Independent Optimization: Compression, MoE Routing, and Quantization Interactions in Multimodal Edge Intelligence

2026-07-23 · Jay Gor, Karm Dave, Akshita Abrol, Rajesh Gupta 외 arxiv

Efficient multimodal inference is increasingly constrained not only by model quality or FLOP count, but also by the cost of preserving, moving, routing, caching, and quantizing multimodal representations under latency, m…

NestedKV: Nested Memory Routing for Long-Context KV Cache Compression

2026-05-26 · Hong Chen, Xiang Liu, Yubo Gao, Yuxuan Fan 외 arxiv

Long-context language models are limited by the memory footprint of the key-value (KV) cache. Existing training-free KV compression methods usually rank tokens by one importance signal -- attention, recency, layer-wise a…

Understanding the Physics of Key-Value Cache Compression for LLMs through Attention Dynamics

2026-03-02 · Samhruth Ananthanarayanan, Ayan Sengupta, Tanmoy Chakraborty arxiv

As context windows in LLMs scale to 100K+ tokens, the key-value (KV) cache becomes the dominant memory bottleneck, with recent methods claiming 80-90% savings and minimal benchmark degradation. We argue these evaluations…

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

2026-05-22 · Yuping Lin, Jiayuan Ding, Yue Xing, Pengfei He 외 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 n…

PANDO: Efficient Multimodal AI Agents via Online Skill Distillation

2026-05-24 · Yubo Li, Yidi Miao, Yuntian Shen, Yuxin Liu arxiv

Recent advances in multimodal web agents often rely on increased inference-time computation, including rollout search, verifier passes, offline skill discovery, and specialist model stacks. This raises a central question…