DSpark: Confidence-Scheduled Speculative Decoding with Semi-Autoregressive Generation
Summary
DSpark is a speculative decoding framework that combines semi-autoregressive draft generation with confidence-scheduled verification to accelerate LLM inference and improve throughput in high-concurrency settings.
View Cached Full Text
Cached at: 07/08/26, 06:48 AM
Paper page - DSpark: Confidence-Scheduled Speculative Decoding with Semi-Autoregressive Generation
Source: https://huggingface.co/papers/2607.05147 Authors:
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
Abstract
DSpark enhances LLM inference speed by combining parallel draft generation with adaptive verification that reduces waste and improves throughput in high-concurrency settings.
Speculative decodingaccelerates Large Language Model (LLM) inference by decoupling draft generation from targetverification. While recentparallel draftersefficiently propose long token sequences in a single forward pass, they suffer from rapidacceptance decaydue to a lack ofinter-token dependencies. Furthermore, indiscriminately verifying these extended blocks wastes critical batch capacity on tokens with high rejection risks, severely degradingthroughputin high-concurrency serving systems. We introduce DSpark, aspeculative decodingframework that unifies high-throughputparallel generation with adaptive, load-awareverification. To maintain draft quality, DSpark utilizes asemi-autoregressive architecture, coupling a parallel backbone with a lightweight sequential module, to introduce intra-block dependency modeling and mitigate suffix decay. To optimize system efficiency, DSpark employsconfidence-scheduled verification, dynamically tailoring theverificationlength for each request based on estimatedprefix survival probabilitiesand engine-specificthroughputprofiles. On offline benchmarks across diverse domains, DSpark substantially improves the accepted length over state-of-the-art autoregressive andparallel drafters. When deployed within the DeepSeek-V4 serving system under live user traffic, DSpark successfully mitigatesverificationwaste. Compared to the established production baseline (MTP-1), DSpark accelerates per-user generation speeds by 60 to 85 percent at matchedthroughputlevels. More importantly, by preventing severethroughputdegradation under strict interactivity constraints, it enables performance tiers that were previously unattainable, shifting thePareto frontierof our serving system.
View arXiv pageView PDFAdd to collection
Get this paper in your agent:
hf papers read 2607\.05147
Don’t have the latest CLI?curl \-LsSf https://hf\.co/cli/install\.sh \| bash
Models citing this paper0
No model linking this paper
Cite arxiv.org/abs/2607.05147 in a model README.md to link it from this page.
Datasets citing this paper0
No dataset linking this paper
Cite arxiv.org/abs/2607.05147 in a dataset README.md to link it from this page.
Spaces citing this paper0
No Space linking this paper
Cite arxiv.org/abs/2607.05147 in a Space README.md to link it from this page.
Collections including this paper0
No Collection including this paper
Add this paper to acollectionto link it from this page.
Similar Articles
@ziv_ravid: https://x.com/ziv_ravid/status/2076074598618083627
Explains the DSpark paper's improvements to speculative decoding for faster LLM inference, focusing on long draft generation and adaptive verification.
@dzhulgakov: DSpark from @deepseek_ai ingeniously integrates many speculative decoding ideas to achieve 1.5x to 5x higher throughput…
DSpark from DeepSeek AI integrates speculative decoding ideas to achieve 1.5x to 5x higher throughput in production systems. This thread explains 10 key ideas from the basics.
@mingyilu123: SGLang now supports DSpark, and this is one of the more practical improvements to spec decoding I’ve seen
SGLang now integrates DSpark, a confidence-driven speculative decoding method that verifies only confident draft tokens, improving inference efficiency under load.
What is Speculative Decoding? (trending on paperswithco.de) [R]
Speculative decoding is an inference optimization technique that uses a fast draft model to propose future tokens verified in parallel by a larger model, improving LLM generation speed. The article highlights its trending status on Papers with Code and a recent SGLang blog post about state-of-the-art latencies using DFlash models.
Dustin: Draft-Augmented Sparse Verification for Efficient Long-Context Generation with Speculative Decoding
Dustin introduces a sparse verification framework for speculative decoding that leverages draft model signals and sparse attention head scoring to overcome the KV cache verification bottleneck, achieving up to 27.85x speedup in self-attention and 9.17x end-to-end decoding speedup on long-context tasks with negligible accuracy loss.