Views
No views yet

Note: GPT-OSS 20B uses hybrid attention (sliding window + full attention). When combined with the P-EAGLE drafter, a KV cache grouping fix is required for vLLM to correctly separate speculator layers into a dedicated KV cache group. Without this fix, vLLM will fail with avalidate_same_kv_cache_grouperror. Apply the fix from the PR or use a vLLM version that includes it.
CUDA_VISIBLE_DEVICES=0 VLLM_USE_FLASHINFER_MOE_MXFP4_MXFP8=1 \
vllm serve openai/gpt-oss-20b \
--speculative-config '{"method": "eagle3", "model": "amazon/GPT-OSS-20B-P-EAGLE", "num_speculative_tokens": 7, "parallel_drafting": true}' \
--tp 1 \
--max-num-batched-tokens 32768 \
--kv-cache-dtype fp8 \
--async-scheduling \
--stream-interval 20 \
--max-cudagraph-capture-size 4096 \
--no-enable-prefix-caching \
--port 8050 \
--gpu-memory-utilization 0.9 \
--max-num-seqs 128 \
--max-model-len 32768| K | MT-Bench (80) | HumanEval (164) | GSM-8K (80) |
|---|---|---|---|
| 3 | 2.75 | 2.96 | 2.83 |
| 5 | 3.01 | 3.57 | 3.26 |
| 7 | 3.30 | 3.80 | 3.44 |
| 10 | 3.46 | 3.88 | 3.72 |
| K | MT-Bench | HumanEval | GSM-8K |
|---|---|---|---|
| 3 | 490 | 520 | 494 |
| 5 | 504 | 582 | 526 |
| 7 | 533 | 600 | 536 |
| 10 | 534 | 583 | 552 |
vllm bench serve \
--backend openai-chat \
--base-url http://localhost:8050 \
--endpoint /v1/chat/completions \
--model openai/gpt-oss-20b \
--dataset-name custom \
--dataset-path /home/ubuntu/eval_datasets/humaneval_custom.jsonl \
--custom-output-len 2048 \
--num-prompts 164 \
--max-concurrency 1 \
--request-rate inf \
--temperature 0 \
--save-result \
--save-detailed \@article{hui2026p,
title={P-EAGLE: Parallel-Drafting EAGLE with Scalable Training},
author={Hui, Mude and Huang, Xin and Salas, Jaime Campos and Sun, Yue and Pemberton, Nathan and Song, Xiang and Khetan, Ashish and Karypis, George},
journal={arXiv preprint arXiv:2602.01469},
year={2026}
}