paper-with-me

Papers

DARTree: Speculative Diffusion Decoding with Autoregressive Draft Trees

2026-08-13 · Tianyi Li, Yaxin Luo, Xinyi Shang, Zhiqiang Shen arxiv

Speculative decoding losslessly accelerates autoregressive language models by verifying multiple draft tokens in parallel. Diffusion-based drafters further reduce proposal latency by predicting an entire token block in parallel, but their position-wise distributions are marginal rather than conditioned on tokens selected along each draft path. Existing recurrent correction incorporates causal information along a single draft chain, whereas diffusion-based tree construction broadens candidate coverage without carrying this correction along individual branches. We introduce DARTree, a training-free speculative decoding method that extends a pretrained AR correction head from chains to trees. DARTree first constructs a fixed-width candidate tree by expanding and scoring all nodes at each depth in a single batch, and then only applies best-first pruning to select the verification tree, decoupling AR-head inference from sequential heap operations. Across seven math, code, and chat benchmarks, DARTree achieves the highest average acceptance length and speedup in all four model--temperature configurations, accepting up to 12.97 tokens per verification round, 98.6\% more than DFlash and 27.9\% more than Domino in the same setting, and reaching up to 9.73$\times$ lossless speedup over locally measured autoregressive decoding.

📄 PDF Abstract BibTeX arXiv:2608.13524

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…

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…

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…

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…

DiffuSpec: Unlocking Diffusion Language Models for Speculative Decoding

2025-09-28 · Guanghao Li, Zhihui Fu, Min Fang, Qibin Zhao 외 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 employ…