2023-09-04 17:29:42 -07:00
|
|
|
"""Compare the outputs of HF and vLLM when using beam search.
|
|
|
|
|
|
|
|
Run `pytest tests/samplers/test_beam_search.py --forked`.
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
# FIXME(zhuohan): The test can not pass if we:
|
|
|
|
# 1. Increase max_tokens to 256.
|
|
|
|
# 2. Increase beam_width to 8.
|
|
|
|
# 3. Use the model "huggyllama/llama-7b".
|
|
|
|
MAX_TOKENS = [128]
|
|
|
|
BEAM_WIDTHS = [4]
|
|
|
|
MODELS = ["facebook/opt-125m"]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("model", MODELS)
|
|
|
|
@pytest.mark.parametrize("dtype", ["half"])
|
|
|
|
@pytest.mark.parametrize("max_tokens", MAX_TOKENS)
|
|
|
|
@pytest.mark.parametrize("beam_width", BEAM_WIDTHS)
|
|
|
|
def test_beam_search_single_input(
|
|
|
|
hf_runner,
|
|
|
|
vllm_runner,
|
|
|
|
example_prompts,
|
|
|
|
model: str,
|
|
|
|
dtype: str,
|
|
|
|
max_tokens: int,
|
|
|
|
beam_width: int,
|
|
|
|
) -> None:
|
2024-02-20 14:37:39 -08:00
|
|
|
example_prompts = example_prompts[:1]
|
2023-09-04 17:29:42 -07:00
|
|
|
hf_model = hf_runner(model, dtype=dtype)
|
|
|
|
hf_outputs = hf_model.generate_beam_search(example_prompts, beam_width,
|
|
|
|
max_tokens)
|
|
|
|
del hf_model
|
|
|
|
|
|
|
|
vllm_model = vllm_runner(model, dtype=dtype)
|
|
|
|
vllm_outputs = vllm_model.generate_beam_search(example_prompts, beam_width,
|
|
|
|
max_tokens)
|
|
|
|
del vllm_model
|
|
|
|
|
|
|
|
for i in range(len(example_prompts)):
|
|
|
|
hf_output_ids, _ = hf_outputs[i]
|
|
|
|
vllm_output_ids, _ = vllm_outputs[i]
|
|
|
|
assert len(hf_output_ids) == len(vllm_output_ids)
|
|
|
|
for j in range(len(hf_output_ids)):
|
|
|
|
assert hf_output_ids[j] == vllm_output_ids[j], (
|
|
|
|
f"Test{i} output{j}:\nHF: {hf_output_ids}\n"
|
|
|
|
f"vLLM: {vllm_output_ids}")
|