vLLM’s P‑EAGLE Speedups
vLLM highlighted P‑EAGLE, a speculative decoding method from Amazon and NVIDIA that generates multiple draft tokens in parallel and shows up to ~1.69x speedups on B200 GPUs—pretrained heads are available on Hugging Face for quick integration highlighted. The technique promises sustained concurrency gains for high‑throughput agent endpoints.
The Amazon–NVIDIA team published the P‑EAGLE method as an arXiv preprint (2602.01469) with a preprint date listed as February 3, 2026. The paper states that raw training cost grows roughly quadratically with the product of sequence length and parallel prediction positions and proposes [attention‑mask precomputation, sequence partitioning, and per‑sequence gradient accumulation]) to make long‑context parallel‑draft training tractable. vLLM’s project and AWS posts note that P‑EAGLE was folded into the vLLM codebase starting from v0.16.0 (PR#32887), marking it as an upstream option for production servers. Enabling the feature in a vLLM serving pipeline is a single configuration change—set ["parallel_drafting": true] in SpeculativeConfig—and the AWS writeup includes a runnable [vllm serve example command] (aws.amazon.com) for immediate testing. Amazon published pre‑trained drafter heads on Hugging Face for specific checkpoints, for example amazon/GPT‑OSS‑20B‑P‑EAGLE alongside listings for GPT‑OSS‑120B and Qwen3‑Coder‑30B in the same artifact set. The authors report measured speedups of ≈1.10×–1.36× over autoregressive EAGLE‑3 across GPT‑OSS‑120B, GPT‑OSS‑20B and Qwen3‑Coder‑30B in their benchmark suite, noting different hardware/configuration choices explain variation across tables. vLLM’s repository already exposes the speculative implementation in vllm/v1/spec_decode/eagle.py and the project release notes document v0.16.0 performance‑focused changes that accompany the P‑EAGLE rollout.