Add MineDraft: A Framework for Batch Parallel Speculative Decoding - #57
Merged
Merged
Conversation
Owner
|
Thanks for the contribution and the clean PR! The paper looks like a great fit for the list — batch-parallel speculative decoding is a neat idea. Merged! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi — thanks for maintaining this awesome list!
I'd like to suggest adding our recent paper, MineDraft: A Framework for Batch Parallel Speculative Decoding, which we think fits the scope of this list (speculative decoding / efficient LLM inference).
TL;DR: MineDraft accelerates LLM inference by overlapping the drafting and verification stages of speculative decoding, hiding drafting latency behind verification compute. It maintains two batches of requests so that while one batch is being verified by the target model, the other is being drafted. Experiments on Qwen3, Llama-3.3, and EAGLE models across ShareGPT, LMSYS Arena, and Spec-Bench benchmarks achieve up to +75% throughput and −39% end-to-end latency over standard speculative decoding. Integrated into vLLM as a production plugin.
BibTeX:
Happy to reformat the entry or move it to a different section if you'd prefer — just let me know. Thanks for considering!