Papers › Tangram: Unlocking Non-Uniform KV Cache Compression for Efficient Multi-turn LLM Serving

Tangram: Unlocking Non-Uniform KV Cache Compression for Efficient Multi-turn LLM Serving

4 Jun 2026arXiv:2606.06302added by Syntology

Hyungmin Kim, Minsoo Kim, Hongseok Kim, Jungwook Choi

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Multi-turn LLM serving accumulates dialogue history whose Key-Value (KV) cache grows with every turn and every user, quickly exceeding the model weights themselves and making memory -- not compute -- the binding constraint on throughput. Non-uniform KV compression, which allocates heterogeneous budgets across attention heads, preserves accuracy far better than uniform schemes, yet remains impractical: modern serving stacks assume identical KV lengths across heads, so heterogeneity traps freed memory as page fragmentation, spends up to 25% of prefill time reclaiming scattered pages, and skews GPU workloads that inflate decode latency by up to 1.7× or burn 15--20% of each decode step on re-planning. We observe that this heterogeneity need not be discovered at runtime: head-wise retention follows a two-level structural regularity -- an input-invariant head ranking with narrowly bounded per-head ratios -- that can be calibrated offline from as few as 50 samples. Building on this insight, we present Tangram, a serving framework that statically resolves what prior systems handle dynamically: Budget Reservation fixes each head's post-compression footprint at scheduling time, eliminating page reclamation; Ragged Paging clusters similar-budget heads into independent page tables, turning fragmentation into reclaimable memory; and Ahead-of-Time Load Balancing precomputes balanced GPU partitions with zero runtime planning. Implemented on vLLM, Tangram serves as a drop-in substrate for existing non-uniform compression methods, matching their accuracy while improving end-to-end throughput by up to 2.6× over the full-KV baseline. Our implementation is publicly available at https://github.com/aiha-lab/TANGRAM.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2606.06302")

Code

Syntology Ran 12 of 17 code samples harvested from 1 repository linked to this paper; 5 have no recorded run. Of those that ran: 12 ran with no contract checked.

By repository: found in paper text by Syntology: 17 samples from 1 repository, 12 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

aiha-lab/TANGRAM found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

17 samples harvested; 12 ran; 0 honoured the contract we drafted; 5 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

12ran
5unverified

Licence: 0 of the 17 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from aiha-lab/TANGRAM. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

async_request_deepspeed_mii aiha-lab/TANGRAM/benchmarks/backend_request_func.py found in paper text by Syntology ran Apache-2.0 (permissive) · 552e4370076a1a01 · report
async_request_tgi aiha-lab/TANGRAM/benchmarks/backend_request_func.py found in paper text by Syntology ran Apache-2.0 (permissive) · 7ee13b8d142453c0 · report
async_request_trt_llm aiha-lab/TANGRAM/benchmarks/backend_request_func.py found in paper text by Syntology ran Apache-2.0 (permissive) · f0b0f51ad4ed00c9 · report
build_prompt aiha-lab/TANGRAM/benchmarks/tangram/ruler_local.py found in paper text by Syntology ran Apache-2.0 (permissive) · bcd9d69939662364 · report
effective_ratio aiha-lab/TANGRAM/benchmarks/tangram/bench_common.py found in paper text by Syntology ran Apache-2.0 (permissive) · 4d80b1ddfa08469e · report
extract_request_timing aiha-lab/TANGRAM/benchmarks/tangram/bench_common.py found in paper text by Syntology ran Apache-2.0 (permissive) · 418bfc593ad8d8bf · report
get_data_list aiha-lab/TANGRAM/benchmarks/tangram/scbench_local.py found in paper text by Syntology ran Apache-2.0 (permissive) · 550815cfa153d37c · report
get_eval_task aiha-lab/TANGRAM/benchmarks/tangram/benchmark_scbench.py found in paper text by Syntology ran fingerprinted Apache-2.0 (permissive) · 6439d722e41feedf · report
get_query_text aiha-lab/TANGRAM/benchmarks/tangram/benchmark_scbench.py found in paper text by Syntology ran fingerprinted Apache-2.0 (permissive) · 941d33a97c872155 · report
group_by_task aiha-lab/TANGRAM/benchmarks/tangram/ruler_local.py found in paper text by Syntology ran Apache-2.0 (permissive) · d59e2d450cbbf7a4 · report
set_gen_length aiha-lab/TANGRAM/benchmarks/tangram/scbench_local.py found in paper text by Syntology ran Apache-2.0 (permissive) · ac80359234193760 · report
template aiha-lab/TANGRAM/benchmarks/tangram/scbench_local.py found in paper text by Syntology ran fingerprinted Apache-2.0 (permissive) · 33321941cb7c5a2a · report
load_ruler aiha-lab/TANGRAM/benchmarks/tangram/ruler_local.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 42a1756632040233 · report
resolve_cluster_map aiha-lab/TANGRAM/benchmarks/tangram/speedup/speedup_benchmark.py found in paper text by Syntology unverified Apache-2.0 (permissive) · f942346fd9105175 · report
run_config_in_subprocess aiha-lab/TANGRAM/benchmarks/tangram/preemption_overhead/benchmark.py found in paper text by Syntology unverified Apache-2.0 (permissive) · db377885d2303bb9 · report
run_one aiha-lab/TANGRAM/benchmarks/tangram/preemption_overhead/benchmark.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 2298f1ff53dfe660 · report
run_one aiha-lab/TANGRAM/benchmarks/tangram/speedup/speedup_benchmark.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 8fb5af6a89b21e9b · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.06302, was issued in June 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections