paper-with-me

홈 › Papers

Semi-Clairvoyant Scheduling of Speculative Decoding Requests to Minimize LLM Inference Latency

2025-05-20 · Ruixiao Li, Fahao Chen, Peng Li

Speculative decoding accelerates Large Language Model (LLM) inference by employing a small speculative model (SSM) to generate multiple candidate tokens and verify them using the LLM in parallel. This technique has been widely integrated into LLM inference serving systems. However, inference requests typically exhibit uncertain execution time, which poses a significant challenge of efficiently scheduling requests in these systems. Existing work estimates execution time based solely on predicted output length, which could be inaccurate because execution time depends on both output length and token acceptance rate of verification by the LLM. In this paper, we propose a semi-clairvoyant request scheduling algorithm called Least-Attained/Perceived-Service for Speculative Decoding (LAPS-SD). Given a number of inference requests, LAPS-SD can effectively minimize average inference latency by adaptively scheduling requests according to their features during decoding. When the token acceptance rate is dynamic and execution time is difficult to estimate, LAPS-SD maintains multiple priority queues and allows request execution preemption across different queues. Once the token acceptance rate becomes stable, LAPS-SD can accurately estimate the execution time and schedule requests accordingly. Extensive experiments show that LAPS-SD reduces inference latency by approximately 39\% compared to state-of-the-art scheduling methods.

📄 PDF Abstract BibTeX arXiv:2505.17074

Code (0)

등록된 구현이 없습니다.

Tasks

Large Language ModelScheduling

Similar Papers 제목 키워드 기반

Collaborative Speculative Inference for Efficient LLM Inference Serving

2025-03-13 · Luyao Gao, Jianchun Liu, Hongli Xu, Xichong Zhang 외

Speculative inference is a promising paradigm employing small speculative models (SSMs) as drafters to generate draft tokens, which are subsequently verified in parallel by the target large language model (LLM). This app…

Large Language ModelScheduling

SPECTRE: Hybrid Ordinary-Parallel Speculative Serving for Resource-Efficient LLM Inference

2026-05-04 · Jincheng Xie, Yawen Ling, Qi Xiao, Feiyu Zhang 외 arxiv

LLM serving platforms are increasingly deployed as multi-model cloud systems, where user demand is often long-tailed: a few popular large models receive most requests, while many smaller tail models remain underutilized.…

SpecRouter: Adaptive Routing for Multi-Level Speculative Decoding in Large Language Models

2025-05-12 · Hang Wu, Jianian Zhu, Yinghui Li, Haojie Wang 외

Large Language Models (LLMs) present a critical trade-off between inference quality and computational cost: larger models offer superior capabilities but incur significant latency, while smaller models are faster but les…

Scheduling

SPIRe: Boosting LLM Inference Throughput with Speculative Decoding

2025-04-08 · Sanjit Neelam, Daniel Heinlein, Vaclav Cvicek, Akshay Mishra 외

Speculative decoding (SD) has been shown to reduce the latency of autoregressive decoding (AD) by 2-3x for small batch sizes. However, increasing throughput and therefore reducing the cost per token requires decoding wit…

SuffixDecoding: Extreme Speculative Decoding for Emerging AI Applications

2024-11-07 · Gabriele Oliaro, Zhihao Jia, Daniel Campos, Aurick Qiao

Speculative decoding is widely adopted to reduce latency in large language model (LLM) inference by leveraging smaller draft models capable of handling diverse user tasks. However, emerging AI applications, such as LLM-b…

Code GenerationLanguage ModelingLanguage ModellingLarge Language Model+3