paper-with-me

Papers

Self Speculative Decoding for Diffusion Large Language Models

2025-10-05 · Yifeng Gao, Ziang Ji, Yuxuan Wang, Biqing Qi, Hanlin Xu, Linfeng Zhang arxiv

Diffusion-based Large Language Models (dLLMs) have emerged as a competitive alternative to autoregressive models, offering unique advantages through bidirectional attention and parallel generation paradigms. However, the generation results of current parallel decoding methods deviate from stepwise decoding, introducing potential performance degradation, which limits their practical deployment. To address this problem, we propose \textbf{S}elf \textbf{S}peculative \textbf{D}ecoding (SSD), a lossless inference acceleration method that leverages the dLLM itself as both speculative decoding drafter and verifier without auxiliary modules. SSD introduces a self-drafting mechanism where the model generates predictions for multiple positions, then verifies them through hierarchical verification trees in a single forward pass. Unlike traditional speculative decoding that requires separate draft models, SSD eliminates model redundancy and memory overhead by exploiting the dLLM's inherent parallel prediction capability for multiple positions. This self-speculative approach allows the model to progressively verify and accept multiple tokens in a single forward pass. Our experiments demonstrate that SSD achieves up to 3.46$\times$ speedup while keeping the output identical to stepwise decoding on open source models such as LLaDA and Dream. Code will be made publicly available on GitHub.

📄 PDF Abstract BibTeX arXiv:2510.04147

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

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

S2D2: Fast Decoding for Diffusion LLMs via Training-Free Self-Speculation

2026-03-26 · Ligong Han, Hao Wang, Han Gao, Kai Xu 외 arxiv

Block-diffusion language models offer a promising path toward faster-than-autoregressive generation by combining block-wise autoregressive decoding with within-block parallel denoising. However, in the few-step regime ne…

Draft on the Fly: Adaptive Self-Speculative Decoding using Cosine Similarity

2024-10-01 · Michael R. Metel, Peng Lu, Boxing Chen, Mehdi Rezagholizadeh 외

We present a simple on the fly method for faster inference of large language models. Unlike other (self-)speculative decoding techniques, our method does not require fine-tuning or black-box optimization to generate a fi…

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…

SimSD: Simple Speculative Decoding in Diffusion Language Models

2026-06-01 · Junxia Cui, Haotian Ye, Runchu Tian, Hongcan Guo 외 arxiv

Diffusion large language models (dLLMs) have recently emerged as a promising alternative to autoregressive (AR) LLMs, offering faster inference through parallel or blockwise decoding. However, their masked language model…