paper-with-me

홈 › Papers

Fast-dLLM v2: Efficient Block-Diffusion LLM

2025-09-30 · Chengyue Wu, Hao Zhang, Shuchen Xue, Shizhe Diao, Yonggan Fu, Zhijian Liu, Pavlo Molchanov, Ping Luo, Song Han, Enze Xie arxiv

Autoregressive (AR) large language models (LLMs) have achieved remarkable performance across a wide range of natural language tasks, yet their inherent sequential decoding limits inference efficiency. In this work, we propose Fast-dLLM v2, a carefully designed block diffusion language model (dLLM) that efficiently adapts pretrained AR models into dLLMs for parallel text generation, requiring only approximately 1B tokens of fine-tuning. This represents a 500x reduction in training data compared to full-attention diffusion LLMs such as Dream (580B tokens), while preserving the original model's performance. Our approach introduces a novel training recipe that combines a block diffusion mechanism with a complementary attention mask, enabling blockwise bidirectional context modeling without sacrificing AR training objectives. To further accelerate decoding, we design a hierarchical caching mechanism: a block-level cache that stores historical context representations across blocks, and a sub-block cache that enables efficient parallel generation within partially decoded blocks. Coupled with our parallel decoding pipeline, Fast-dLLM v2 achieves up to 2.5x speedup over standard AR decoding without compromising generation quality. Extensive experiments across diverse benchmarks demonstrate that Fast-dLLM v2 matches or surpasses AR baselines in accuracy, while delivering state-of-the-art efficiency among dLLMs - marking a significant step toward the practical deployment of fast and accurate LLMs. Code and model will be publicly released.

📄 PDF Abstract BibTeX arXiv:2509.26328

Code (0)

등록된 구현이 없습니다.

Tasks

Text Generation

Similar Papers 제목 키워드 기반

Diffusion LLMs Can Do Faster-Than-AR Inference via Discrete Diffusion Forcing

2025-08-08 · Xu Wang, Chenkai Xu, Yijie Jin, Jiachun Jin 외 arxiv

Diffusion Large Language Models (dLLMs) have emerged as a promising alternative to autoregressive (AR) LLMs for text generation, with the potential to decode multiple tokens in a single iteration. However, none of the ex…

Text Generation

BlockServe: Block-Grained Continuous Batching for High-Throughput Diffusion LLM Serving

2026-07-09 · Yuanjie Zhu, Liangwei Yang, Ke Xu, Weizhi Zhang 외 arxiv

Efficient serving of diffusion large language models (dLLMs) is hindered by convergence heterogeneity: when batching multiple requests, different sequences converge at different rates, causing faster requests to stall be…

BlockBatch: Multi-Scale Consensus Decoding for Efficient Diffusion Language Model Inference

2026-05-28 · Xiaoyou Wu, Cheng-Jhih Shih, Binfei Ji, Yong Liu 외 arxiv

Diffusion language models (dLLMs) generate text by iteratively denoising multiple token positions in parallel, offering an attractive alternative to strictly autoregressive decoding. In practice, however, block-wise dLLM…

Diffusion LLM with Native Variable Generation Lengths: Let [EOS] Lead the Way

2025-10-28 · Yicun Yang, Cong Wang, Shaobo Wang, Zichen Wen 외 arxiv

Diffusion-based large language models (dLLMs) have exhibited substantial potential for parallel text generation, which may enable more efficient generation compared to autoregressive models. However, current dLLMs suffer…

Text Generation

NPU Design for Diffusion Language Model Inference

2026-01-28 · Binglei Lou, Haoran Wu, Kevin Lau, Gregor MacDonald 외 arxiv

Diffusion-based LLMs (dLLMs) fundamentally depart from traditional autoregressive (AR) LLM inference: they leverage bidirectional attention, block-wise KV cache refreshing, cross-step reuse, and a non-GEMM-centric sampli…