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

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

17 Jun 2026arXiv:2606.18967added by Syntology

Minseo Kim, Minjae Lee, Seunghyuk Oh, Kevin Galim, Donghoon Kim, Coleman Hooper, Harman Singh, Amir Gholami, Hyung Il Koo, Wonjun Kang

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

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 small number of long-tailed generations often determine completion time. Speculative decoding (SD) offers a natural way to address this bottleneck, as it is a well-established technique for serving fixed LLMs that reduces latency by rapidly drafting tokens and accepting them through parallel verification while preserving the target-model distribution. However, its practical speedups do not directly carry over to RL rollouts: (i) the evolving target policy makes any fixed drafter increasingly mismatched with the policy's output distribution; and (ii) active batch sizes shrink throughout rollout decoding, shifting decoding from compute-bound to memory-bound regimes where parallel verification can exploit underutilized compute. Therefore, accelerating RL rollouts requires both a drafter that remains effective under long, high-temperature generations from an evolving policy and system-aware use of SD that avoids compute-bound regimes. We present EfficientRollout, a system-aware self-SD framework designed to address this gap for RL rollouts. EfficientRollout induces a quantized drafter from the target model (i.e. self-speculative decoding), keeping it coupled to the evolving policy without separate drafter pretraining or online adaptation. It further coordinates a system-aware SD toggle policy with acceptance-aware draft-length adaptation, enabling speculation only in beneficial regimes while matching the drafting budget to evolving drafter quality. EfficientRollout reduces rollout and end-to-end latency by up to 19.6% and 12.7%, respectively, over an accelerated AR rollout baseline, while preserving final model quality.

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="2606.18967")

Code

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

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

furiosa-ai/EfficientRollout found in paper text by Syntology 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

12 samples harvested; 10 ran; 0 honoured the contract we drafted; 2 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.

10ran
2unverified

Licence: 0 of the 12 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 furiosa-ai/EfficientRollout. “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.

compute_constants furiosa-ai/EfficientRollout/sd_toggle/constants.py found in paper text by Syntology ran Apache-2.0 (permissive) · e47375bd057b17b0 · report
generate_config_from_args furiosa-ai/EfficientRollout/verl/model_merger/base_model_merger.py found in paper text by Syntology ran Apache-2.0 (permissive) · 8896f4e2bafe8abc · report
get_dynamic_pipeline_shards furiosa-ai/EfficientRollout/verl/model_merger/megatron_model_merger.py found in paper text by Syntology ran fingerprinted Apache-2.0 (permissive) · 94209884dcb2308e · report
load_F_eff_from_bench furiosa-ai/EfficientRollout/sd_toggle/fit.py found in paper text by Syntology ran Apache-2.0 (permissive) · 389526db654ebaa0 · report
load_c_comm_from_bench furiosa-ai/EfficientRollout/sd_toggle/fit.py found in paper text by Syntology ran Apache-2.0 (permissive) · 10cad4dbce6791e7 · report
load_config furiosa-ai/EfficientRollout/sd_toggle/config.py found in paper text by Syntology ran Apache-2.0 (permissive) · e16f5339014cfd08 · report
load_csv furiosa-ai/EfficientRollout/sd_toggle/fit.py found in paper text by Syntology ran Apache-2.0 (permissive) · 5ed7d80f88d8f831 · report
predict_T_D furiosa-ai/EfficientRollout/sd_toggle/roofline.py found in paper text by Syntology ran Apache-2.0 (permissive) · 5908adbd4aab5444 · report
predict_T_T furiosa-ai/EfficientRollout/sd_toggle/roofline.py found in paper text by Syntology ran Apache-2.0 (permissive) · f9e3508f6437c9f9 · report
predict_T_V furiosa-ai/EfficientRollout/sd_toggle/roofline.py found in paper text by Syntology ran Apache-2.0 (permissive) · 3ca42956bddbe642 · report
run_sweep furiosa-ai/EfficientRollout/sd_toggle/sweep.py found in paper text by Syntology unverified Apache-2.0 (permissive) · a7e9ee3961426ca7 · report
run_sweep_multi_gpu furiosa-ai/EfficientRollout/sd_toggle/sweep.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 67a2fbc5819c1281 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.18967, was issued in June 2026, 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