-
Notifications
You must be signed in to change notification settings - Fork 261
[1/N][UT][v1 MTP] add basic v1 mtp features #890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
92 changes: 92 additions & 0 deletions
92
tests/long_term/spec_decode/e2e/test_v1_mtp_correctness.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
from __future__ import annotations | ||
|
||
import random | ||
from typing import Any | ||
|
||
import pytest | ||
from vllm import LLM, SamplingParams | ||
|
||
|
||
@pytest.fixture | ||
def test_prompts(): | ||
prompt_types = ["repeat", "sentence"] | ||
num_prompts = 10 | ||
prompts = [] | ||
|
||
random.seed(0) | ||
random_prompt_type_choices = random.choices(prompt_types, k=num_prompts) | ||
|
||
# Generate a mixed batch of prompts, some of which can be easily | ||
# predicted by n-gram matching and some which likely cannot. | ||
for kind in random_prompt_type_choices: | ||
word_choices = ["test", "temp", "hello", "where"] | ||
word = random.choice(word_choices) | ||
if kind == "repeat": | ||
prompt = f""" | ||
please repeat the word '{word}' 10 times. | ||
give no other output than the word at least ten times in a row, | ||
in lowercase with spaces between each word and without quotes. | ||
""" | ||
elif kind == "sentence": | ||
prompt = f""" | ||
please give a ten-word sentence that | ||
uses the word {word} at least once. | ||
give no other output than that simple sentence without quotes. | ||
""" | ||
else: | ||
raise ValueError(f"Unknown prompt type: {kind}") | ||
prompts.append([{"role": "user", "content": prompt}]) | ||
|
||
return prompts | ||
|
||
|
||
@pytest.fixture | ||
def sampling_config(): | ||
return SamplingParams(temperature=0, max_tokens=256, ignore_eos=False) | ||
|
||
|
||
@pytest.fixture | ||
def model_name(): | ||
return "wemaster/deepseek_mtp_main_random_bf16" | ||
|
||
|
||
def test_mtp_correctness( | ||
monkeypatch: pytest.MonkeyPatch, | ||
test_prompts: list[list[dict[str, Any]]], | ||
sampling_config: SamplingParams, | ||
model_name: str, | ||
): | ||
''' | ||
Compare the outputs of a original LLM and a speculative LLM | ||
should be the same when using mtp speculative decoding. | ||
''' | ||
with monkeypatch.context() as m: | ||
m.setenv("VLLM_USE_V1", "1") | ||
|
||
ref_llm = LLM(model=model_name, max_model_len=256, enforce_eager=True) | ||
ref_outputs = ref_llm.chat(test_prompts, sampling_config) | ||
del ref_llm | ||
|
||
spec_llm = LLM(model=model_name, | ||
trust_remote_code=True, | ||
speculative_config={ | ||
"method": "deepseek_mtp", | ||
"num_speculative_tokens": 1, | ||
}, | ||
max_model_len=256, | ||
enforce_eager=True) | ||
spec_outputs = spec_llm.chat(test_prompts, sampling_config) | ||
matches = 0 | ||
misses = 0 | ||
for ref_output, spec_output in zip(ref_outputs, spec_outputs): | ||
if ref_output.outputs[0].text == spec_output.outputs[0].text: | ||
matches += 1 | ||
else: | ||
misses += 1 | ||
print(f"ref_output: {ref_output.outputs[0].text}") | ||
print(f"spec_output: {spec_output.outputs[0].text}") | ||
|
||
# Heuristic: expect at least 66% of the prompts to match exactly | ||
# Upon failure, inspect the outputs to check for inaccuracy. | ||
assert matches > int(0.66 * len(ref_outputs)) | ||
del spec_llm |
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why add this import
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoiding circular reference problems with type annotations