paper-with-me

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 drafter can generate an entire draft block in a single forward pass and achieve state-of-the-art speculative decoding performance, outperforming strong autoregressive drafters such as EAGLE-3. Vanilla DFlash, however, still verifies only a single drafted trajectory per round, potentially limiting its acceptance length. We introduce DDTree (Diffusion Draft Tree), a method that constructs a draft tree directly from the per-position distributions of a block diffusion drafter. Under a fixed node budget, DDTree uses a simple best-first heap algorithm to select the continuations that are most likely to match the target model according to a surrogate defined by the draft model's output. The resulting tree is verified efficiently in a single target model forward pass using an ancestor-only attention mask. Because DDTree builds on DFlash, a leading draft model for speculative decoding, these gains place DDTree among the leading approaches to speculative decoding.

📄 PDF Abstract BibTeX arXiv:2604.12989

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

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

2026-06-03 · Liyuan Zhang, Jiarui Zhang, Jinwei Yao, Ran Yan 외 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 bloc…

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

DFlash: Block Diffusion for Flash Speculative Decoding

2026-02-05 · Jian Chen, Yesheng Liang, Zhijian Liu arxiv

Autoregressive large language models (LLMs) deliver strong performance but require inherently sequential decoding, leading to high inference latency and poor GPU utilization. Speculative decoding mitigates this bottlenec…

PACER: Blockwise Pre-verification for Speculative Decoding with Adaptive Length

2026-02-01 · Situo Zhang, Yifan Zhang, Zichen Zhu, Hankun Wang 외 arxiv

Speculative decoding (SD) is a powerful technique for accelerating the inference process of large language models (LLMs) without sacrificing accuracy. Typically, SD employs a small draft model to generate a fixed number …