Papers › Reject Only Critical Tokens: Pivot-Aware Speculative Decoding

Reject Only Critical Tokens: Pivot-Aware Speculative Decoding

1 Nov 2025NeurIPSarXiv:2511.00351added by Syntology

Amir Ziashahabi, Yavuz Faruk Bakman, Duygu Nur Yaldiz, Mostafa El-Khamy, Sai Praneeth Karimireddy, Salman Avestimehr

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 (SD) ensures that the output matches the target model's distribution exactly. However, we argue that this distribution matching requirement is too stringent and results in unnecessarily low acceptance rates, limiting potential speedups. Instead, we advocate a reformulation of the decoding objective: the proposed decoding strategy should match the expected utility, i.e., the task-specific performance, of the target model. This perspective also aligns better with real-world use cases of LLMs, where utility (e.g., code correctness, factual accuracy) is often more important than sampling distribution. Based on this reformulation, we propose a novel decoding strategy: Pivot-Aware Speculative Decoding, which rejects only those tokens that would lead to a utility drop in the final output. We refer to these critical tokens as pivot tokens. We propose a method for labeling tokens as pivotal or non-pivotal and train a lightweight classifier to detect them. This method can be viewed as a relaxed version of standard SD, which offers much higher acceptance while preserving utility. We evaluate our method across various datasets, demonstrating that we can achieve up to 2.5× speedup with comparable utility. Source code is available at https://github.com/amir-zsh/PAD.

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

Code

Syntology Ran 2 of 16 code samples harvested from 1 repository linked to this paper; 14 have no recorded run. Of those that ran: 1 ran · honoured contract; 1 ran · our draft was wrong.

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

amir-zsh/PAD 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

16 samples harvested; 2 ran; 1 honoured the contract we drafted; 14 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 · honoured contract
1ran · our draft was wrong
14unverified

Licence: 16 of the 16 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 amir-zsh/PAD. “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.

find_multiple amir-zsh/PAD/src/gpt_fast/model.py found in paper text by Syntology ran · honoured contract fingerprinted no licence file found · pointer only · aba86ffbed27ba65 · report
multinomial_sample_one_no_sync amir-zsh/PAD/src/gpt_fast/gpt_fast_utils.py found in paper text by Syntology ran · our draft was wrong fingerprinted no licence file found · pointer only · 0b5f90e8856ad7af · report
apply_rope_scaling amir-zsh/PAD/src/gpt_fast/model.py found in paper text by Syntology unverified no licence file found · pointer only · e32aa65ed977997d · report
apply_top_k_only amir-zsh/PAD/src/gpt_fast/gpt_fast_utils.py found in paper text by Syntology unverified no licence file found · pointer only · ebe7962c6989540f · report
apply_top_k_top_p amir-zsh/PAD/src/gpt_fast/gpt_fast_utils.py found in paper text by Syntology unverified no licence file found · pointer only · 6d9be873169e847a · report
convert_act_dict_to_tensors amir-zsh/PAD/train_classifier.py found in paper text by Syntology unverified no licence file found · pointer only · 3ef18ccd1206347c · report
dynamically_quantize_per_channel amir-zsh/PAD/src/gpt_fast/quantize.py found in paper text by Syntology unverified no licence file found · pointer only · 55ec8fea60e1d7e7 · report
eval amir-zsh/PAD/train_classifier.py found in paper text by Syntology unverified no licence file found · pointer only · ce2b1e2625c49910 · report
get_group_qparams amir-zsh/PAD/src/gpt_fast/quantize.py found in paper text by Syntology unverified no licence file found · pointer only · dbabfb89a4b530ac · report
get_logits_and_embeddings amir-zsh/PAD/train_classifier.py found in paper text by Syntology unverified no licence file found · pointer only · f4da6be2e1f446cf · report
get_tokenizer amir-zsh/PAD/src/gpt_fast/tokenizer.py found in paper text by Syntology unverified no licence file found · pointer only · 36cf05d05fbba908 · report
load_mlp_model amir-zsh/PAD/decode.py found in paper text by Syntology unverified no licence file found · pointer only · 914469751a0f1948 · report
pack_scales_and_zeros amir-zsh/PAD/src/gpt_fast/quantize.py found in paper text by Syntology unverified no licence file found · pointer only · 146cdcef0c195fd7 · report
select_kv_cache_portion amir-zsh/PAD/dataset_generation.py found in paper text by Syntology unverified no licence file found · pointer only · c1e4d88b26b6d460 · report
str2bool amir-zsh/PAD/decode.py found in paper text by Syntology unverified no licence file found · pointer only · b97cd418550d173e · report
strike amir-zsh/PAD/decode.py found in paper text by Syntology unverified no licence file found · pointer only · 86c8ddad5eea6789 · report

Results from the paper

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