PulseAugur
EN
LIVE 10:04:12

New methods boost LLM inference speed via speculative decoding · 7 sources tracked

Researchers are developing advanced speculative decoding techniques to accelerate large language model (LLM) inference. JetFlow, a new framework, improves speed by combining drafting efficiency with causal conditioning, achieving significant speedups on various benchmarks. EfficientRollout focuses on accelerating reinforcement learning rollouts by using system-aware self-speculative decoding, adapting to evolving policies and system conditions to reduce latency. Nightjar offers a resource-aware adaptive approach, dynamically adjusting speculative decoding length and disabling it when beneficial, to maximize throughput in real-time serving scenarios. Separately, a practical observation highlights that speculative decoding, even when theoretically lossless, can introduce subtle output distribution shifts due to floating-point arithmetic on GPUs, impacting structured outputs like tool calls and necessitating careful evaluation against the exact serving path. AI

IMPACT These advancements in speculative decoding promise to significantly reduce latency and improve the efficiency of LLM inference, potentially accelerating real-time applications and agentic workflows.

RANK_REASON Multiple research papers introducing new techniques for speculative decoding in LLMs.

Read on arXiv cs.CL →

AI-generated summary · Google Gemini · from 9 sources. How we write summaries →

New methods boost LLM inference speed via speculative decoding · 7 sources tracked

COVERAGE [9]

  1. arXiv cs.CL TIER_1 English(EN) · Ligong Han, Hao Wang, Han Gao, Kai Xu, Akash Srivastava ·

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

    arXiv:2603.25702v2 Announce Type: replace Abstract: 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 needed for…

  2. arXiv cs.CL TIER_1 English(EN) · Lanxiang Hu, Zhaoxiang Feng, Yulun Wu, Haoran Yuan, Yujie Zhao, Yu-Yang Qian, Bojun Wang, Daxin Jiang, Yibo Zhu, Tajana Rosing, Hao Zhang ·

    JetFlow: Breaking the Scaling Ceiling of Speculative Decoding with Parallel Tree Drafting

    arXiv:2606.18394v1 Announce Type: new Abstract: Speculative decoding (SD) accelerates autoregressive Large Language Models (LLMs) by drafting multiple tokens and verifying them in parallel, but it faces a scaling limitation: increasing the draft budget improves speed only when ac…

  3. arXiv cs.LG TIER_1 English(EN) · Minseo Kim, Minjae Lee, Seunghyuk Oh, Kevin Galim, Donghoon Kim, Coleman Hooper, Harman Singh, Amir Gholami, Hyung Il Koo, Wonjun Kang ·

    EfficientRollout: System-Aware Self-Speculative Decoding for RL Rollouts

    arXiv:2606.18967v1 Announce Type: new Abstract: Reinforcement learning (RL) has become a representative post-training paradigm for LLMs, enabling strong reasoning and agentic capabilities. However, rollout generation remains a dominant latency bottleneck because autoregressive sa…

  4. arXiv cs.LG TIER_1 English(EN) · Wonjun Kang ·

    EfficientRollout: System-Aware Self-Speculative Decoding for RL Rollouts

    Reinforcement learning (RL) has become a representative post-training paradigm for LLMs, enabling strong reasoning and agentic capabilities. However, rollout generation remains a dominant latency bottleneck because autoregressive sampling decodes responses sequentially and a smal…

  5. Latent Space (swyx) TIER_1 English(EN) ·

    [AINews] GLM-5.2: the top Frontend Coding model in the world, IndexShare for Speculative Decoding

    We have a new top open model in the world!

  6. Hugging Face Daily Papers TIER_1 English(EN) ·

    EfficientRollout: System-Aware Self-Speculative Decoding for RL Rollouts

    EfficientRollout is a system-aware self-speculative decoding framework that accelerates reinforcement learning rollouts by adapting drafters to evolving policies and optimizing speculative decoding regimes.

  7. arXiv cs.CL TIER_1 English(EN) · Hao Zhang ·

    JetFlow: Breaking the Scaling Ceiling of Speculative Decoding with Parallel Tree Drafting

    Speculative decoding (SD) accelerates autoregressive Large Language Models (LLMs) by drafting multiple tokens and verifying them in parallel, but it faces a scaling limitation: increasing the draft budget improves speed only when acceptance remains high and drafting overhead stay…

  8. arXiv cs.AI TIER_1 English(EN) · Rui Li, Zhaoning Zhang, Libo Zhang, Huaimin Wang, Xiang Fu, Zhiquan Lai ·

    Nightjar: Dynamic Adaptive Speculative Decoding for Large Language Models Serving

    arXiv:2512.22420v5 Announce Type: replace-cross Abstract: Speculative decoding (SD) accelerates LLM inference by verifying draft tokens in parallel. However, this method presents a critical trade-off: it improves throughput in low-load, memory-bound systems but degrades performan…

  9. dev.to — LLM tag TIER_1 English(EN) · Marcus Chen ·

    Speculative decoding shifted our output distribution and evals missed it

    <p><strong>TL;DR: We turned on speculative decoding in vLLM to cut latency on a fine-tuned 8B. Got a 1.9x throughput win. Three weeks later a customer flagged that the agent's tool-call arguments had subtly changed. Greedy decoding with a draft model is not bit-identical to greed…