paper-with-me

Papers

DiffuSpec: Unlocking Diffusion Language Models for Speculative Decoding

2025-09-28 · Guanghao Li, Zhihui Fu, Min Fang, Qibin Zhao, Ming Tang, Chun Yuan, Jun Wang arxiv

As large language models (LLMs) scale up, accuracy improves, but the autoregressive (AR) nature of decoding increases latency since each token requires a serial forward pass. Speculative decoding addresses this by employing a fast drafter to propose multi-token drafts, which are then verified in parallel by the target model. However, many deployments still rely on AR drafters, where sequential passes limit wall-clock gains. We revisit the drafting stage and present DiffuSpec, a training-free drop-in framework that uses a pretrained diffusion language model (DLM) to produce multi-token drafts in a single forward pass, while remaining compatible with standard AR verifiers. Because DLM drafts are generated under bidirectional conditioning, parallel per-position candidates form a token lattice in which the locally highest-probability token at each position need not form a causal left-to-right path. Moreover, DLM drafting requires pre-specifying a draft length, inducing a speed-quality trade-off. To address these challenges, we introduce two practical components: (i) a causal-consistency path search (CPS) over this lattice that extracts a left-to-right path aligned with AR verification; and (ii) an adaptive draft-length (ADL) controller that adjusts next proposal size based on recent acceptance feedback and realized generated length. Across benchmarks, DiffuSpec yields up to 3x wall-clock speedup, establishing diffusion-based drafting as a robust alternative to autoregressive drafters for speculative decoding.

📄 PDF Abstract BibTeX arXiv:2510.02358

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Unlocking Efficiency in Large Language Model Inference: A Comprehensive Survey of Speculative Decoding

2024-01-15 · Heming Xia, Zhe Yang, Qingxiu Dong, Peiyi Wang 외

To mitigate the high inference latency stemming from autoregressive decoding in Large Language Models (LLMs), Speculative Decoding has emerged as a novel decoding paradigm for LLM inference. In each decoding step, this m…

Language ModelingLanguage ModellingLarge Language Model

Speculative Diffusion Decoding: Accelerating Language Generation through Diffusion

2024-08-10 · Jacob K Christopher, Brian R Bartoldson, Tal Ben-Nun, Michael Cardei 외

Speculative decoding has emerged as a widely adopted method to accelerate large language model inference without sacrificing the quality of the model outputs. While this technique has facilitated notable speed improvemen…

Language ModelingLanguage ModellingLarge Language ModelText Generation

Parallel Sampling via Autospeculation

2025-11-11 · Nima Anari, Carlo Baronio, CJ Chen, Alireza Haqi 외 arxiv

We present parallel algorithms to accelerate sampling via counting in two settings: any-order autoregressive models and denoising diffusion models. An any-order autoregressive model accesses a target distribution $μ$ on …

Unlocking Parallelism in Autoregressive Language Models via Speculative Decoding with Progressive Tree Drafting

2026-07-12 · Zipeng Gao, Zhi Zheng, Qingrong Xia, Junda Lin 외 arxiv

Speculative decoding has significantly accelerated Large Language Model (LLM) inference by alleviating memory-bound bottlenecks. However, traditional speculative decoding typically relies on auxiliary draft modules, incu…

Unlocking Lossless Speedups in LLMs via Discrete Diffusion

2026-09-03 · Subham Sekhar Sahoo, Lingjie Chen, Khiem Pham, Jonathan Geuter 외 hf

Large Language Models (LLMs) owe much of their success to next-token prediction (NTP), but their autoregressive (AR) structure requires slow, sequential token generation. To overcome this bottleneck, we introduce diffusi…