PulseAugur
实时 12:30:59
English(EN) JetFlow: Breaking the Scaling Ceiling of Speculative Decoding with Parallel Tree Drafting

新方法通过投机解码提高 LLM 推理速度 · 跟踪 7 个来源

研究人员正在开发先进的投机解码技术来加速大型语言模型 (LLM) 推理。JetFlow 是一个新框架,通过结合草稿效率和因果条件,提高速度,在各种基准测试中实现显著加速。EfficientRollout 专注于通过使用系统感知型自我投机解码来加速强化学习的 rollout,适应不断变化的策略和系统条件以减少延迟。Nightjar 提供了一种资源感知型自适应方法,动态调整投机解码长度并在有利时禁用它,以在实时服务场景中最大化吞吐量。另外,一项实际观察强调,即使在理论上无损的情况下,投机解码也会由于 GPU 上的浮点运算而引入细微的输出分布变化,从而影响工具调用等结构化输出,并需要与精确的服务路径进行仔细评估。 AI

影响 这些在投机解码方面的进展有望显著降低 LLM 推理的延迟并提高其效率,从而可能加速实时应用程序和代理工作流。

排序理由 多篇研究论文介绍了 LLM 中投机解码的新技术。

在 arXiv cs.CL 阅读 →

AI 生成摘要 · Google Gemini · 来自 9 个来源。 我们如何撰写摘要 →

新方法通过投机解码提高 LLM 推理速度 · 跟踪 7 个来源

报道来源 [9]

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

    S2D2:通过无训练自我推断实现扩散式大语言模型的快速解码

    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:突破投机解码的扩展瓶颈,实现并行树草稿

    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:面向RL Rollout的系统感知自推测解码

    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:面向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:全球顶尖前端编码模型,用于推测性解码的IndexShare

    We have a new top open model in the world!

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

    EfficientRollout:系统感知型自推测解码用于强化学习回滚

    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:突破投机解码的扩展瓶颈,实现并行树草稿

    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:大型语言模型服务动态自适应推测解码

    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 ·

    推测性解码改变了我们的输出分布,而评估未能发现

    <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…