paper-with-me

Papers

Speeding up Speculative Decoding via Sequential Approximate Verification

2025-02-06 · Meiyu Zhong, Noel Teku, Ravi Tandon

Speculative Decoding (SD) is a recently proposed technique for faster inference using Large Language Models (LLMs). SD operates by using a smaller draft LLM for autoregressively generating a sequence of tokens and a larger target LLM for parallel verification to ensure statistical consistency. However, periodic parallel calls to the target LLM for verification prevent SD from achieving even lower latencies. We propose SPRINTER, which utilizes a low-complexity verifier trained to predict if tokens generated from a draft LLM would be accepted by the target LLM. By performing sequential approximate verification, SPRINTER does not require verification by the target LLM and is only invoked when a token is deemed unacceptable. This reduces the number of calls to the larger LLM, achieving further speedups and lower computation cost. We present a theoretical analysis of SPRINTER, examining the statistical properties of the generated tokens, as well as the expected reduction in latency as a function of the verifier. We evaluate SPRINTER on several datasets and model pairs, demonstrating that approximate verification can still maintain high quality generation while further reducing latency.

📄 PDF Abstract BibTeX arXiv:2502.04557

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Speculative Speculative Decoding

2026-03-03 · Tanishq Kumar, Tri Dao, Avner May arxiv

Autoregressive decoding is bottlenecked by its sequential nature. Speculative decoding has become a standard way to accelerate inference by using a fast draft model to predict upcoming tokens from a slower target model, …

Parallel Prefix Verification for Speculative Generation

2026-05-05 · Yuncheng Yao, Yuxuan Xia, Shengjie Wang, Danyang Zhuo arxiv

We introduce PARSE (PArallel pRefix Speculative Engine), a speculative generation framework that accelerates large language model (LLM) inference by parallelizing prefix verification on a semantic level. Existing specula…

FlexDraft: Flexible Speculative Decoding via Attention Tuning and Bonus-Guided Calibration

2026-05-19 · Yaojie Zhang, Jianuo Huang, Junlong Ke, Yuhang Han 외 arxiv

Speculative decoding accelerates memory-bound LLM inference without quality degradation by using a fast drafter to propose multiple candidate tokens and the target model to verify them in parallel. However, conventional …

Continual Pretraining

Faster LLM Inference via Sequential Monte Carlo

2026-04-17 · Yahya Emara, Mauricio Barba da Costa, Chi-Chih Chang, Cameron Freer 외 arxiv

Speculative decoding (SD) accelerates language model inference by drafting tokens from a cheap proposal model and verifying them against an expensive target model via rejection sampling. Because rejection truncates the d…

Sequoia: Scalable, Robust, and Hardware-aware Speculative Decoding

2024-02-19 · Zhuoming Chen, Avner May, Ruslan Svirschevski, Yuhsun Huang 외

As the usage of large language models (LLMs) grows, performing efficient inference with these models becomes increasingly important. While speculative decoding has recently emerged as a promising direction for speeding u…