paper-with-me

Papers

Dustin: Draft-Augmented Sparse Verification for Efficient Long-Context Generation with Speculative Decoding

2026-06-23 · WenHung Lee, Jian-Jia Chen, Xiaolin Lin, Pei-Shuo Wang, Chi-Chih Chang, Chun-Che Yang, Ning-Chi Huang, Grace Li Zhang, Kai-Chiang Wu arxiv

While speculative decoding improves inference throughput for multi-batch long-context Large Language Models (LLMs), its efficiency is often limited by a verification bottleneck where Key-Value (KV) cache loading dominates latency. Existing compression methods fail in this regime: static eviction incurs accuracy loss due to saliency shift, while dynamic selection introduces prohibitive computational overhead during the verification path. We propose Dustin, a sparse verification framework designed for long-context speculative decoding. Dustin integrates lookahead signals from the draft model with historical attention from the target model to identify critical tokens with high fidelity across multi-step verification windows. To reduce recomputation latency, this approach further employs a sparse estimation scheme that restricts importance scoring to a minimal subset of attention heads. Evaluations on PG-19 and LongBench with Qwen2.5-72B demonstrate that Dustin achieves a 27.85x speedup in self-attention and a 9.17x end-to-end decoding speedup at a 32k sequence length, all with negligible accuracy degradation.

📄 PDF Abstract BibTeX arXiv:2606.24957

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

RASD: Retrieval-Augmented Speculative Decoding

2025-03-05 · Guofeng Quan, Wenfeng Feng, Chuzhan Hao, Guochao Jiang 외

Speculative decoding accelerates inference in large language models (LLMs) by generating draft tokens for target model verification. Current approaches for obtaining draft tokens rely on lightweight draft models or addit…

Retrieval

Vegas: Self-Speculative Decoding with Verification-Guided Sparse Attention

2026-02-06 · Yikang Yue, Yuqi Xue, Jian Huang arxiv

Long-context large language model (LLM) inference has become the norm for today's AI applications. However, it is severely bottlenecked by the increasing memory demands of its KV cache. Previous works have shown that sel…

Accelerating Large-Scale Reasoning Model Inference with Sparse Self-Speculative Decoding

2025-12-01 · Yilong Zhao, Jiaming Tang, Kan Zhu, Zihao Ye 외 arxiv

Reasoning language models have demonstrated remarkable capabilities on challenging tasks by generating elaborate chain-of-thought (CoT) solutions. However, such lengthy generation shifts the inference bottleneck from com…

Accelerate Speculative Decoding with Sparse Computation in Verification

2025-12-26 · Jikai Wang, Jianchao Tan, Yuxuan Hu, Jiayu Qin 외 arxiv

Speculative decoding accelerates autoregressive language model inference by verifying multiple draft tokens in parallel. However, the verification stage often becomes the dominant computational bottleneck, especially for…

Mathematical ReasoningQuestion Answering

Speculative RAG: Enhancing Retrieval Augmented Generation through Drafting

2024-07-11 · Zilong Wang, Zifeng Wang, Long Le, Huaixiu Steven Zheng 외

Retrieval augmented generation (RAG) combines the generative abilities of large language models (LLMs) with external knowledge sources to provide more accurate and up-to-date responses. Recent RAG advancements focus on i…

ARCRAGRetrievalRetrieval-augmented Generation+1