Papers › WarmServe: Enabling One-for-Many GPU Prewarming for Multi-LLM Serving

WarmServe: Enabling One-for-Many GPU Prewarming for Multi-LLM Serving

10 Dec 2025ICMLarXiv:2512.09472added by Syntology

Chiheng Lou, Sheng Qi, Rui Kang, Yong Zhang, Chen Sun, Pengcheng Wang, Xuanzhe Liu, Xin Jin

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Deploying multiple models within shared GPU clusters is a key strategy to improve resource efficiency in large language model (LLM) serving. Existing multi-LLM serving systems improve GPU utilization at the cost of degraded inference performance, particularly time-to-first-token (TTFT). We attribute this degradation to the lack of awareness regarding future workload characteristics. In contrast, recent analyses have shown the strong periodicity and long-term predictability of real-world LLM serving workloads. In this paper, we propose one-for-many GPU prewarming, which proactively loads parameters from multiple models onto GPUs based on workload forecasts. These prewarmed weights enable the system to promptly instantiate serving instances upon encountering request bursts. We design and implement WarmServe, a multi-LLM serving system incorporating three key techniques: (1) a model placement algorithm that optimizes prewarming decisions to minimize cross-model prewarming interference, (2) a KV cache reservation strategy that repurposes idle KV cache space on running GPUs for prewarming new models, and (3) an efficient GPU memory switching mechanism for tensor management. Evaluation on real-world datasets shows that WarmServe reduces tail TTFT by up to 50.8× compared to the state-of-the-art autoscaling-based system, while supporting up to 2.5× higher request throughput than the GPU-sharing system.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2512.09472")

Code

Syntology Ran 1 of 14 code samples harvested from 1 repository linked to this paper; 13 have no recorded run. Of those that ran: 1 ran with no contract checked.

By repository: found in paper text by Syntology: 14 samples from 1 repository, 1 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

LLMServe/WarmServe found in paper text by SyntologyApache-2.0 report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 1 ran; 0 honoured the contract we drafted; 13 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran
13unverified

Licence: 0 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from LLMServe/WarmServe. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

run_and_read_all LLMServe/WarmServe/vllm-0.6.3.post1/collect_env.py found in paper text by Syntology ran Apache-2.0 (permissive) · 5ae630bfc3821b6e · report
apply_burstiness LLMServe/WarmServe/trace-generator/trace_generator.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 47c3e4a0942c91ab · report
async_request_deepspeed_mii LLMServe/WarmServe/vllm-0.6.3.post1/benchmarks/backend_request_func.py found in paper text by Syntology unverified Apache-2.0 (permissive) · f70b11daf69cb473 · report
async_request_tgi LLMServe/WarmServe/vllm-0.6.3.post1/benchmarks/backend_request_func.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 5fe8fe4d65cc1519 · report
async_request_trt_llm LLMServe/WarmServe/vllm-0.6.3.post1/benchmarks/backend_request_func.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 31b4648baccb4d32 · report
check_wheel_size LLMServe/WarmServe/vllm-0.6.3.post1/.buildkite/check-wheel-size.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 95e3362a392b24d6 · report
find_cuda_init LLMServe/WarmServe/vllm-0.6.3.post1/find_cuda_init.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 6a9382e5d439d948 · report
get_requests LLMServe/WarmServe/trace-generator/request_generator.py found in paper text by Syntology unverified Apache-2.0 (permissive) · e92541d5932f8422 · report
get_type_from_path LLMServe/WarmServe/trace-generator/trace_generator.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 73e947a7a2364546 · report
repeat_and_sort_requests LLMServe/WarmServe/vllm-0.6.3.post1/benchmarks/benchmark_prefix_caching.py found in paper text by Syntology unverified Apache-2.0 (permissive) · c6c44ee91bb762e9 · report
run LLMServe/WarmServe/vllm-0.6.3.post1/collect_env.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 6b73fe0480a96ad9 · report
run_and_parse_first_match LLMServe/WarmServe/vllm-0.6.3.post1/collect_env.py found in paper text by Syntology unverified Apache-2.0 (permissive) · ce7a62e37fe78c0d · report
sample_requests LLMServe/WarmServe/vllm-0.6.3.post1/benchmarks/benchmark_prefix_caching.py found in paper text by Syntology unverified Apache-2.0 (permissive) · a8de224d74e65256 · report
single_load_generator LLMServe/WarmServe/trace-generator/request_generator.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 76a2d189cdb4c6cd · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2512.09472, was issued in December 2025, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections