-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
[V1][Frontend] Add Testing For V1 Runtime Parameters #14159
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9c7dbba
updated
robertgshaw2-redhat b09a2a3
updated
robertgshaw2-redhat 612b6bf
added tests
robertgshaw2-redhat ef6537c
updated
robertgshaw2-redhat 1d02940
updated
robertgshaw2-redhat 10033b9
updated!
robertgshaw2-redhat f6eccb0
remove detokenize, since it is used by lm eval
robertgshaw2-redhat 8b6452f
address comments
robertgshaw2-redhat eb9e619
Merge branch 'main' into v1-runtime-params
robertgshaw2-redhat 51341b9
updated
robertgshaw2-redhat 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 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,150 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
import os | ||
|
||
import pytest | ||
|
||
from vllm import LLM, SamplingParams | ||
|
||
if os.getenv("VLLM_USE_V1", "0") != "1": | ||
pytest.skip("Test package requires V1", allow_module_level=True) | ||
|
||
MODEL = "meta-llama/Llama-3.2-1B" | ||
PROMPT = "Hello my name is Robert and I" | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def model() -> LLM: | ||
return LLM(MODEL, enforce_eager=True) | ||
|
||
|
||
def test_n_gt_1(model): | ||
"""ParallelSampling is supported.""" | ||
|
||
params = SamplingParams(n=3) | ||
outputs = model.generate(PROMPT, params) | ||
assert len(outputs[0].outputs) == 3 | ||
|
||
|
||
def test_best_of(model): | ||
"""Raise a ValueError since best_of is deprecated.""" | ||
|
||
params = SamplingParams(n=2, best_of=3) | ||
with pytest.raises(ValueError): | ||
_ = model.generate(PROMPT, params) | ||
|
||
|
||
def test_penalties(model): | ||
"""Check that we do not get errors if applied.""" | ||
|
||
params = SamplingParams( | ||
temperature=1.2, | ||
presence_penalty=1.2, | ||
frequency_penalty=1.2, | ||
repetition_penalty=1.2, | ||
min_p=0.5, | ||
top_p=0.5, | ||
top_k=3, | ||
) | ||
_ = model.generate(PROMPT, params) | ||
|
||
|
||
def test_stop(model): | ||
"""Check that we respect the stop words.""" | ||
|
||
output = model.generate(PROMPT, SamplingParams(temperature=0)) | ||
split_text = output[0].outputs[0].text.split() | ||
|
||
STOP_IDX = 5 | ||
params = SamplingParams(temperature=0, stop=split_text[STOP_IDX]) | ||
output = model.generate(PROMPT, params) | ||
new_split_text = output[0].outputs[0].text.split() | ||
|
||
# Output should not contain the stop word. | ||
assert len(new_split_text) == STOP_IDX | ||
|
||
params = SamplingParams(temperature=0, | ||
stop=split_text[STOP_IDX], | ||
include_stop_str_in_output=True) | ||
output = model.generate(PROMPT, params) | ||
new_split_text = output[0].outputs[0].text.split() | ||
|
||
# Output should contain the stop word. | ||
assert len(new_split_text) == STOP_IDX + 1 | ||
|
||
|
||
def test_stop_token_ids(model): | ||
"""Check that we respect the stop token ids.""" | ||
|
||
output = model.generate(PROMPT, SamplingParams(temperature=0)) | ||
|
||
stop_token_id_0 = output[0].outputs[0].token_ids[5] | ||
stop_token_id_1 = output[0].outputs[0].token_ids[6] | ||
|
||
stop_token_ids = [stop_token_id_1, stop_token_id_0] | ||
params = SamplingParams(temperature=0, stop_token_ids=stop_token_ids) | ||
output = model.generate(PROMPT, params) | ||
assert output[0].outputs[0].token_ids[-1] == stop_token_id_0 | ||
|
||
stop_token_ids = [stop_token_id_0, stop_token_id_1] | ||
params = SamplingParams(temperature=0, stop_token_ids=stop_token_ids) | ||
assert output[0].outputs[0].token_ids[-1] == stop_token_id_0 | ||
|
||
|
||
def test_bad_words(model): | ||
"""Check that we respect bad words.""" | ||
|
||
with pytest.raises(ValueError): | ||
_ = model.generate(PROMPT, SamplingParams(bad_words=["Hello"])) | ||
|
||
|
||
def test_logits_processor(model): | ||
"""Check that we reject logits processor.""" | ||
|
||
# This sample logits processor gives infinite score to the i-th token, | ||
# where i is the length of the input sequence. | ||
# We therefore expect the output token sequence to be [0, 1, 2, ...] | ||
def pick_ith(token_ids, logits): | ||
logits[len(token_ids)] = float("inf") | ||
return logits | ||
|
||
with pytest.raises(ValueError): | ||
_ = model.generate(PROMPT, | ||
SamplingParams(logits_processors=[pick_ith])) | ||
|
||
|
||
def test_allowed_token_ids(model): | ||
"""Check that we can use allowed_token_ids.""" | ||
|
||
TOKEN_ID = 10 | ||
allowed_token_ids = [TOKEN_ID] | ||
output = model.generate( | ||
PROMPT, SamplingParams(allowed_token_ids=allowed_token_ids)) | ||
assert output[0].outputs[0].token_ids[-1] == TOKEN_ID | ||
|
||
# Reject negative token id. | ||
with pytest.raises(ValueError): | ||
_ = model.generate(PROMPT, SamplingParams(allowed_token_ids=[-1])) | ||
|
||
# Reject out of vocabulary. | ||
with pytest.raises(ValueError): | ||
_ = model.generate(PROMPT, | ||
SamplingParams(allowed_token_ids=[10000000])) | ||
|
||
|
||
def test_priority(model): | ||
"""Check that we reject requests with priority.""" | ||
|
||
# Reject all allowed token ids | ||
with pytest.raises(ValueError): | ||
_ = model.generate(PROMPT, priority=[1]) | ||
|
||
|
||
def test_seed(model): | ||
"""Check that seed impacts randomness.""" | ||
|
||
out_1 = model.generate(PROMPT, SamplingParams(seed=42)) | ||
out_2 = model.generate(PROMPT, SamplingParams(seed=42)) | ||
out_3 = model.generate(PROMPT, SamplingParams(seed=43)) | ||
|
||
assert out_1[0].outputs[0].text == out_2[0].outputs[0].text | ||
assert out_1[0].outputs[0].text != out_3[0].outputs[0].text |
This file contains 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 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
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.
I think we need this here too?