Papers › Unlocking Parallelism in Autoregressive Language Models via Speculative Decoding with...

Unlocking Parallelism in Autoregressive Language Models via Speculative Decoding with Progressive Tree Drafting

12 Jul 2026arXiv:2607.10661added by Syntology

Zipeng Gao, Zhi Zheng, Qingrong Xia, Junda Lin, Ziwei Zhao, Tong Xu, Zhefeng Wang, Enhong Chen

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

Speculative decoding has significantly accelerated Large Language Model (LLM) inference by alleviating memory-bound bottlenecks. However, traditional speculative decoding typically relies on auxiliary draft modules, incurring significant training and communication overhead. Although recent methods attempt to generate drafts within the target model itself, they often fail to fully exploit its latent parallel capacity due to a lack of structural coordination. In this paper, we propose \textbf{Progressive Tree Drafting (PTD)}, which employs a structured, guided parallel drafting strategy to harness the model's parallel potential. By coupling a progressive tree structure with a stepwise pruning mechanism, PTD actively guides the LLM to explore multiple semantic paths in a single forward pass, ensuring both draft diversity and coherence. Experiments demonstrate that PTD achieves up to 2× decoding speedup across various benchmarks while remaining training-free and model-agnostic. Our code is available at: https://github.com/MINE-USTC/PTD.

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

Code

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

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

MINE-USTC/PTD 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

15 samples harvested; 6 ran; 0 honoured the contract we drafted; 9 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.

6ran
9unverified

Licence: 0 of the 15 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 MINE-USTC/PTD. “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.

ini_model_paras MINE-USTC/PTD/tree_draft/utils.py found in paper text by Syntology ran Apache-2.0 (permissive) · 2433571e21d295f1 · report
prepare_guess_tree_mask MINE-USTC/PTD/tree_draft/models/ptd_common.py found in paper text by Syntology ran Apache-2.0 (permissive) · 60b49d8a8dbfc24d · report
receive_all_data MINE-USTC/PTD/tree_draft/decode_strategy/utils.py found in paper text by Syntology ran Apache-2.0 (permissive) · b1b06ed67e9d2c50 · report
set_lower_triangular_true_efficient MINE-USTC/PTD/tree_draft/models/ptd_common.py found in paper text by Syntology ran Apache-2.0 (permissive) · d991a4c5cc5a0e7a · report
set_lower_triangular_true_efficient_batch MINE-USTC/PTD/tree_draft/models/ptd_common.py found in paper text by Syntology ran Apache-2.0 (permissive) · 837b56a8a4089b82 · report
topk_sampling MINE-USTC/PTD/tree_draft/decode_strategy/utils.py found in paper text by Syntology ran fingerprinted Apache-2.0 (permissive) · 5a1733d144a87bd6 · report
autoregressive_decode MINE-USTC/PTD/tree_draft/decode_strategy/autoregressive.py found in paper text by Syntology unverified Apache-2.0 (permissive) · dc565f177bfb3594 · report
get_device MINE-USTC/PTD/tree_draft/utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · a284f42a11a435c8 · report
greedy_search MINE-USTC/PTD/tree_draft/decode_strategy/autoregressive.py found in paper text by Syntology unverified Apache-2.0 (permissive) · d509548acb6dcc24 · report
greedy_search_proxy MINE-USTC/PTD/tree_draft/utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 41c6b35175d09cf4 · report
prepare_decoder_attention_mask MINE-USTC/PTD/tree_draft/models/Qwen3/qwen3_ptd.py found in paper text by Syntology unverified Apache-2.0 (permissive) · f4c485aaa0f9003b · report
profile_timed MINE-USTC/PTD/tree_draft/inference_profile.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 96f43a6742784d01 · report
remove_pad_tokens MINE-USTC/PTD/tree_draft/decode_strategy/progressive_tree_drafting.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 05adfc95b7bdac80 · report
sample MINE-USTC/PTD/tree_draft/decode_strategy/autoregressive.py found in paper text by Syntology unverified Apache-2.0 (permissive) · ee5d756445a741d2 · report
top_p_sampling MINE-USTC/PTD/tree_draft/decode_strategy/utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 2dbd80d6d766a541 · report

Results from the paper

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