Papers › Draft-based Approximate Inference for LLMs

Draft-based Approximate Inference for LLMs

10 Jun 2025arXiv:2506.08373archive 2025-07-28

Kevin Galim, Ethan Ewer, Wonjun Kang, Minjae Lee, Hyung Il Koo, Kangwook Lee

Optimizing inference for long-context Large Language Models (LLMs) is increasingly important due to the quadratic compute and linear memory complexity of Transformers. Existing approximation methods, such as key-value (KV) cache dropping, sparse attention, and prompt compression, typically rely on rough predictions of token or KV pair importance. We propose a novel framework for approximate LLM inference that leverages small draft models to more accurately predict the importance of tokens and KV pairs. Specifically, we introduce two instantiations of our proposed framework: (i) SpecKV, which leverages a draft output to accurately assess the importance of each KV pair for more effective KV cache dropping, and (ii) SpecPC, which uses the draft model's attention activations to identify and discard unimportant prompt tokens. To the best of our knowledge, this is the first work to use draft models for approximate LLM inference acceleration, extending their utility beyond traditional lossless speculative decoding. We motivate our methods with theoretical and empirical analyses, and show a strong correlation between the attention patterns of draft and target models. Extensive experiments on long-context benchmarks show that our methods consistently achieve higher accuracy than existing baselines, while preserving the same improvements in memory usage, latency, and throughput. Our code is available at https://github.com/furiosa-ai/draft-based-approx-llm.

PaperPDFCodeCode 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="2506.08373")

Code

Syntology Ran 5 of 11 code samples harvested from 1 repository linked to this paper; 6 have no recorded run. Of those that ran: 2 ran · our draft was wrong; 3 ran · fixture could not drive it.

By repository: official repository: 6 samples from 1 repository, 0 ran; 5 identical to code first harvested elsewhere. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

furiosa-ai/draft-based-approx-llm officialmentioned in papermentioned on GitHubpytorchApache-2.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. 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

11 samples harvested; 5 ran; 0 honoured the contract we drafted; 6 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.

2ran · our draft was wrong
3ran · fixture could not drive it
6unverified

Licence: 5 of the 11 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 furiosa-ai/draft-based-approx-llm. Some samples are identical code Syntology first harvested from another repository; for those, this paper's copy is not located and its licence is not recorded. “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.

compress_kv furiosa-ai/draft-based-approx-llm/draft_approx_llm/speckv/util.py official repository unverified Apache-2.0 (permissive) · d40a43c3d846d891 · report
generate_aggregated_attention furiosa-ai/draft-based-approx-llm/draft_approx_llm/specpc/specpc_utils.py official repository unverified Apache-2.0 (permissive) · 2b96d4ca67c65e40 · report
patch_model furiosa-ai/draft-based-approx-llm/draft_approx_llm/draft_approx_llm.py official repository unverified Apache-2.0 (permissive) · edb10589c3297b21 · report
reset_llama_model furiosa-ai/draft-based-approx-llm/draft_approx_llm/speckv/llama_util.py official repository unverified Apache-2.0 (permissive) · 864ba42e7bb2bd2e · report
update_llama_model_for_speckv furiosa-ai/draft-based-approx-llm/draft_approx_llm/speckv/llama_util.py official repository unverified Apache-2.0 (permissive) · b547ebd6d3a3089d · report
vertical_slash_sparse_attention_forward furiosa-ai/draft-based-approx-llm/draft_approx_llm/speckv/util.py official repository unverified Apache-2.0 (permissive) · 3dfaf65cb0227004 · report
repeat_kv identical code first harvested elsewhere ran · fixture could not drive it fingerprinted licence of this copy not recorded · 3c76e52815c5401d · report
build_chat identical code first harvested elsewhere ran · our draft was wrong fingerprinted licence of this copy not recorded · 3ddd62fbad41e698 · report
build_chat_llama3 identical code first harvested elsewhere ran · our draft was wrong fingerprinted licence of this copy not recorded · a06d17c88eb31b3d · report
key_pruner_query_driven identical code first harvested elsewhere ran · fixture could not drive it fingerprinted licence of this copy not recorded · 3597e5670a759378 · report
maybe_repeat_kv_before_cache identical code first harvested elsewhere ran · fixture could not drive it licence of this copy not recorded · 6211e835b472f7ad · report

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

AttentionSoftmax

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