paper-with-me

홈 › Papers

Make Every Draft Count: Hidden State based Speculative Decoding

2026-02-02 · Yuetao Chen, Xuliang Wang, Xinzhou Zheng, Ming Li, Peng Wang, Hong Xu arxiv

Speculative decoding has emerged as a pivotal technique to accelerate LLM inference by employing a lightweight draft model to generate candidate tokens that are subsequently verified by the target model in parallel. However, while this paradigm successfully increases the arithmetic intensity of memory-bound inference, it causes significant compute inefficiency: the majority of draft tokens fail verification and are discarded, resulting in waste of computation. Motivated by the goal of recollecting this wasted computation, we propose a novel system that transforms discarded drafts into reusable tokens. Our key insight is to perform auto-regressive prediction at the hidden states level and postpone the integrating token information after the hidden states generation, so the draft hidden states are not contaminated by incorrect tokens, enabling hidden state reuse. To implement such a system, first we introduce a draft model architecture based on auto-regressive hidden states, which preserves richer semantics than token-based drafters to facilitate draft repurposing. Second, we design an efficient token information injection mechanism that leverages our specialized draft model to construct high-quality draft token trees and enables resampling tokens from verification failures. Third, we eliminate the overhead hidden in our design to further maximize hardware utilization. We conducted extensive evaluations against various baselines, demonstrating up to a 3.3x speedup against standard speculative decoding.

📄 PDF Abstract BibTeX arXiv:2602.21224

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Making Every Verified Token Count: Adaptive Verification for MoE Speculative Decoding

2026-05-01 · Lehan Pan, Ziyang Tao, Ruoyu Pang, Xiao Wang 외 arxiv

Tree-based speculative decoding accelerates autoregressive generation by verifying multiple draft candidates in parallel, but this advantage weakens for sparse Mixture-of-Experts (MoE) models. As the draft tree grows, di…

SpecBlock: Block-Iterative Speculative Decoding with Dynamic Tree Drafting

2026-05-08 · Weijie Shi, Qiang Xu, Fan Deng, Yaguang Wu 외 arxiv

Speculative decoding accelerates LLM inference by drafting a tree of candidate continuations and verifying it in one target forward. Existing drafters fall into two camps with opposite weaknesses. Autoregressive drafters…

Attention Drift: What Autoregressive Speculative Decoding Models Learn

2026-05-11 · Doğaç Eldenk, Payal Mohapatra, Yigitcan Comlek, Kaan Oktay 외 arxiv

Speculative decoding accelerates LLM inference by drafting future tokens with a small model, but drafter models degrade sharply under template perturbation and long-context inputs. We identify a previously-unreported phe…

TreeWY: Speculative Verification for Gated DeltaNet Hybrids

2026-08-21 · Sneha Murthy Ghantasala arxiv

Modern open models are hybrids: most layers are linear-attention (Gated DeltaNet, GDN) layers carrying a small fixed-size recurrent state instead of a growing key-value (KV) cache. This makes ordinary decoding memory-eff…

When Hidden States Drift: Can KV Caches Rescue Long-Range Speculative Decoding?

2026-04-29 · Tianyu Liu, Yuhao Shen, Xinyi Hu, Baolin Zhang 외 arxiv

Speculative decoding accelerates LLM inference, but SOTA hidden-state-based drafters suffer from long-range decay: draft accuracy degrades as the speculative step increases. Existing work attributes this decay to train-i…