paper-with-me

Papers

D^2SD: Accelerating Speculative Decoding with Dual Diffusion Draft Models

2026-06-03 · Liyuan Zhang, Jiarui Zhang, Jinwei Yao, Ran Yan, Yuchen Yang, Jiahao Zhang, Tongkai Yang, Yi Wu, Binhang Yuan arxiv

Speculative decoding accelerates autoregressive large language model inference by drafting multiple tokens and verifying them in a single target-model forward pass. Recent diffusion-based drafters generate an entire block of tokens in parallel but usually commit to a single draft sequence per verification: once the first mismatch occurs, all subsequent draft tokens are discarded, resulting in a limited acceptance rate. Naively batching more draft candidate sequences only introduces a marginal improvement, as redundant or poorly placed branches increase the cost of drafting and verification without proportionally increasing the number of accepted tokens. We propose D^2SD, a dual diffusion draft speculative decoding framework that organizes candidates into a confidence-guided prefix tree, where the first diffusion drafter generates a block along with per-position confidence scores that are used to identify the most likely rejection boundary and select the top-K prefix ranges for recovery; the second variable-prefix diffusion drafter re-anchors at each selected prefix and proposes alternative continuations in one batched pass; the resulting shared-prefix candidates are jointly verified via cascade attention. Empirically, D^2SD shows clear improvements over both the underlying diffusion approach and strong autoregressive speculative decoding baselines.

📄 PDF Abstract BibTeX arXiv:2606.04446

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Accelerating Speculative Decoding with Block Diffusion Draft Trees

2026-04-14 · Liran Ringel, Yaniv Romano arxiv

Speculative decoding accelerates autoregressive language models by using a lightweight drafter to propose multiple future tokens, which the target model then verifies in parallel. DFlash shows that a block diffusion draf…

Accelerating Speculative Diffusions via Block Verification

2026-06-11 · Alexander Soen, Hisham Husain, Valentin De Bortoli, Arnaud Doucet arxiv

Speculative decoding speeds up LLM inference by using a draft model to generate tokens, with an acceptance-rejection scheme that ensures that the output matches the target distribution. Adapting this to continuous diffus…

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

SpecDiff-2: Scaling Diffusion Drafter Alignment For Faster Speculative Decoding

2025-11-01 · Jameson Sandler, Jacob K. Christopher, Thomas Hartvigsen, Ferdinando Fioretto arxiv

Speculative decoding has become the standard approach for accelerating Large Language Model (LLM) inference. It exploits a lossless draft-then-verify procedure to circumvent the latency of autoregressive decoding, achiev…

DART: Diffusion-Inspired Speculative Decoding for Fast LLM Inference

2026-01-27 · Fuliang Liu, Xue Li, Ketai Zhao, Yinxi Gao 외 arxiv

Speculative decoding is an effective and lossless approach for accelerating LLM inference. However, existing widely adopted model-based draft designs, such as EAGLE3, improve accuracy at the cost of multi-step autoregres…