π€ AI Summary
This work addresses the limitations of existing block-wise speculative decoding methods, which rely on a single shared fused representation that constrains draft model scalability and layer-wise expressivity. To overcome this, the authors propose a lightweight, layer-wise independent fusion mechanism that enables each draft layer to adaptively attend to a learnable combination of multiple target model layersβ representations. This design substantially enhances expressiveness with negligible computational overhead and is further empowered by scaling the draft model depth using a large-scale 2.4M training dataset. Evaluated across six benchmarks, the method achieves additional speedups of approximately 11%, 8%, and 5% over DFlash on Qwen3-4B, Qwen3-8B, and GPT-OSS-20B, respectively, yielding end-to-end average speedups of 5.52Γ, 5.46Γ, and 3.91Γ.
π Abstract
Block diffusion speculative decoding accelerates LLM inference by predicting all tokens within a block simultaneously for the target model to verify in parallel. Predicting an entire block at once requires a sufficiently capable draft model and effective utilization of the target model's internal knowledge. However, the state-of-the-art method DFlash constrains all draft layers to share a single fused representation derived from only a few target layers, limiting per-layer expressiveness and hindering further scaling of draft capacity. In this paper, we present \modelname, which flares out the narrow conditioning bottleneck of DFlash through a lightweight layer-wise fusion mechanism: each draft layer attends to its own learnable combination of a broad set of target layers at negligible overhead, simultaneously injecting richer target knowledge and providing every draft layer with a distinct input. This enhanced per-layer expressiveness enables scaling the draft model to deeper architectures with consistent gains. We further scale training data from 800K to 2.4M samples to fully exploit the enlarged capacity. On six benchmarks spanning mathematical reasoning, code generation, and conversation, \modelname attains average wall-clock speedups of 5.52x on Qwen3-4B, 5.46x on Qwen3-8B, and 3.91x on GPT-OSS-20B, improving over DFlash by roughly 11\%, 8\%, and 5\% respectively. Our code is available at https://github.com/Tencent/AngelSlim.