TailorKV: A Hybrid Framework for Long-Context Inference via Tailored KV Cache Optimization
Dingyu Yao, Bowen Shen, Zheng Lin, Wei Liu, Jian Luan, Bin Wang, Weiping Wang
TL;DR
This work addresses the memory and latency bottlenecks of KV caches in long-context LLM inference by proposing TailorKV, a hybrid framework that classifies Transformer layers into quantization-friendly and sparsity-friendly groups. It combines aggressive 1-bit quantization for quantization-friendly layers with dynamic Top-K token retrieval for sparsity-friendly layers, enabled by offline layer identification and asynchronous CPU-GPU co-execution. The approach yields substantial memory reductions with near-lossless accuracy across LongBench, InfiniteBench, and RULER benchmarks, achieving practical latency performance (e.g., 82 ms per token for Llama-3.1-8B with 128k context on a single RTX 3090) and enabling long-context serving on resource-constrained GPUs. The results demonstrate the viability of layer-aware compression to extend the reach of LLMs to devices with limited memory, while offering a hardware-friendly design and strong empirical gains over state-of-the-art methods.
Abstract
The Key-Value (KV) cache in generative large language models (LLMs) introduces substantial memory overhead. Existing works mitigate this burden by offloading or compressing the KV cache. However, loading the entire cache incurs significant latency due to PCIe bandwidth bottlenecks in CPU-GPU communication, while aggressive compression causes notable performance degradation. We identify that certain layers in the LLM need to maintain global information and are unsuitable for selective loading. In contrast, other layers primarily focus on a few tokens with dominant activations that potentially incur substantial quantization error. This observation leads to a key insight that loading dominant tokens and quantizing all tokens can complement each other. Building on this insight, we propose a hybrid compression method, TailorKV, which seamlessly integrates quantization and offloading. TailorKV develops an inference framework along with a hardware-friendly implementation that leverages these complementary characteristics. Extensive long-context evaluations exhibit that TailorKV achieves nearly lossless performance under aggressive compression settings, outperforming the state-of-the-art. Particularly, the Llama-3.1-8B with 128k context can be served within a single RTX 3090 GPU, reaching 82 ms per token during decoding.
