forked from Karylab-cklius/vllm
220 lines
6.9 KiB
Python
220 lines
6.9 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
import pytest
|
|
import torch
|
|
from transformers import AutoModel
|
|
|
|
from vllm import PoolingParams
|
|
from vllm.config import PoolerConfig
|
|
|
|
from ...utils import check_embeddings_close
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
# Be careful of the order of models, decoder-only models should be
|
|
# placed before encoder-only models, otherwise `Qwen2.5-0.5B-Instruct`
|
|
# case won't pass because gte-Qwen2-1.5B-instruct will cache custom
|
|
# model code with bidirectional attention.
|
|
# [Decoder-only]
|
|
pytest.param(
|
|
"BAAI/bge-multilingual-gemma2",
|
|
marks=[pytest.mark.core_model, pytest.mark.slow_test],
|
|
),
|
|
pytest.param(
|
|
"intfloat/e5-mistral-7b-instruct",
|
|
marks=[pytest.mark.core_model, pytest.mark.cpu_model],
|
|
),
|
|
pytest.param(
|
|
"ssmits/Qwen2-7B-Instruct-embed-base", marks=[pytest.mark.cpu_model]
|
|
),
|
|
# [Encoder-only]
|
|
pytest.param(
|
|
"BAAI/bge-base-en-v1.5",
|
|
marks=[
|
|
pytest.mark.core_model,
|
|
pytest.mark.cpu_model,
|
|
pytest.mark.slow_test,
|
|
],
|
|
),
|
|
pytest.param("sentence-transformers/all-MiniLM-L12-v2"),
|
|
pytest.param("intfloat/multilingual-e5-small"),
|
|
# [Cross-Encoder]
|
|
pytest.param(
|
|
"sentence-transformers/stsb-roberta-base-v2",
|
|
marks=[pytest.mark.core_model, pytest.mark.cpu_model],
|
|
),
|
|
],
|
|
)
|
|
def test_models(
|
|
hf_runner,
|
|
vllm_runner,
|
|
example_prompts,
|
|
model,
|
|
) -> None:
|
|
vllm_extra_kwargs = {}
|
|
if model == "ssmits/Qwen2-7B-Instruct-embed-base":
|
|
vllm_extra_kwargs["pooler_config"] = PoolerConfig(
|
|
seq_pooling_type="MEAN", use_activation=False
|
|
)
|
|
|
|
max_model_len: int | None = 512
|
|
if model in [
|
|
"sentence-transformers/all-MiniLM-L12-v2",
|
|
"sentence-transformers/stsb-roberta-base-v2",
|
|
]:
|
|
max_model_len = None
|
|
|
|
# The example_prompts has ending "\n", for example:
|
|
# "Write a short story about a robot that dreams for the first time.\n"
|
|
# sentence_transformers will strip the input texts, see:
|
|
# https://github.com/UKPLab/sentence-transformers/blob/v3.1.1/sentence_transformers/models/Transformer.py#L159
|
|
# This makes the input_ids different between hf_model and vllm_model.
|
|
# So we need to strip the input texts to avoid test failing.
|
|
example_prompts = [str(s).strip() for s in example_prompts]
|
|
|
|
with hf_runner(model, is_sentence_transformer=True) as hf_model:
|
|
hf_outputs = hf_model.encode(example_prompts)
|
|
|
|
with vllm_runner(
|
|
model, runner="pooling", max_model_len=max_model_len, **vllm_extra_kwargs
|
|
) as vllm_model:
|
|
vllm_outputs = vllm_model.embed(example_prompts)
|
|
|
|
check_embeddings_close(
|
|
embeddings_0_lst=hf_outputs,
|
|
embeddings_1_lst=vllm_outputs,
|
|
name_0="hf",
|
|
name_1="vllm",
|
|
tol=1e-2,
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"BAAI/bge-base-en-v1.5",
|
|
"intfloat/multilingual-e5-small",
|
|
],
|
|
)
|
|
@torch.inference_mode()
|
|
def test_encoder_only_model_runner_v2_attention(
|
|
hf_runner,
|
|
vllm_runner,
|
|
monkeypatch,
|
|
model: str,
|
|
) -> None:
|
|
prompts = [
|
|
"short input",
|
|
"a longer input that exercises mixed sequence lengths",
|
|
]
|
|
|
|
with hf_runner(model, dtype="float", auto_cls=AutoModel) as hf_model:
|
|
hf_outputs = []
|
|
for prompt in prompts:
|
|
inputs = hf_model.tokenizer(prompt, return_tensors="pt")
|
|
output = hf_model.model(**hf_model.wrap_device(inputs))
|
|
embedding = torch.nn.functional.normalize(
|
|
output.last_hidden_state[0, -1].float(), dim=0
|
|
)
|
|
hf_outputs.append(embedding.cpu().tolist())
|
|
|
|
monkeypatch.setenv("VLLM_USE_V2_MODEL_RUNNER", "1")
|
|
with vllm_runner(
|
|
model,
|
|
runner="pooling",
|
|
dtype="float",
|
|
max_model_len=64,
|
|
max_num_seqs=2,
|
|
gpu_memory_utilization=0.25,
|
|
pooler_config=PoolerConfig(
|
|
task="embed", seq_pooling_type="LAST", use_activation=True
|
|
),
|
|
) as vllm_model:
|
|
assert vllm_model.llm.llm_engine.vllm_config.use_v2_model_runner
|
|
vllm_outputs = vllm_model.embed(prompts)
|
|
|
|
check_embeddings_close(
|
|
embeddings_0_lst=hf_outputs,
|
|
embeddings_1_lst=vllm_outputs,
|
|
name_0="hf",
|
|
name_1="vllm",
|
|
tol=1e-2,
|
|
)
|
|
|
|
|
|
@pytest.mark.core_model
|
|
def test_encoder_model_runner_v2(hf_runner, vllm_runner, monkeypatch) -> None:
|
|
model = "sentence-transformers/all-MiniLM-L6-v2"
|
|
prompt_batches = [
|
|
["short input"],
|
|
[
|
|
"short input",
|
|
"a longer input that exercises mixed sequence lengths",
|
|
],
|
|
]
|
|
|
|
with hf_runner(model, is_sentence_transformer=True) as hf_model:
|
|
hf_outputs = [hf_model.encode(prompts) for prompts in prompt_batches]
|
|
|
|
monkeypatch.setenv("VLLM_USE_V2_MODEL_RUNNER", "1")
|
|
with vllm_runner(
|
|
model,
|
|
runner="pooling",
|
|
max_model_len=64,
|
|
) as vllm_model:
|
|
assert vllm_model.llm.llm_engine.vllm_config.use_v2_model_runner
|
|
vllm_outputs = [vllm_model.embed(prompts) for prompts in prompt_batches]
|
|
|
|
for hf_batch, vllm_batch in zip(hf_outputs, vllm_outputs):
|
|
check_embeddings_close(
|
|
embeddings_0_lst=hf_batch,
|
|
embeddings_1_lst=vllm_batch,
|
|
name_0="hf",
|
|
name_1="vllm",
|
|
tol=1e-2,
|
|
)
|
|
|
|
|
|
@pytest.mark.core_model
|
|
def test_matryoshka_dimensions_model_runner_v2(
|
|
hf_runner, vllm_runner, monkeypatch
|
|
) -> None:
|
|
model = "Snowflake/snowflake-arctic-embed-m-v1.5"
|
|
prompts = ["short input", "a longer input for a different output width"]
|
|
dimensions = [None, 256]
|
|
|
|
with hf_runner(model, is_sentence_transformer=True) as hf_model:
|
|
hf_outputs = hf_model.encode(prompts)
|
|
|
|
monkeypatch.setenv("VLLM_USE_V2_MODEL_RUNNER", "1")
|
|
with vllm_runner(
|
|
model,
|
|
runner="pooling",
|
|
max_model_len=64,
|
|
gpu_memory_utilization=0.25,
|
|
) as vllm_model:
|
|
assert vllm_model.llm.llm_engine.vllm_config.use_v2_model_runner
|
|
vllm_outputs = vllm_model.embed(
|
|
prompts,
|
|
pooling_params=[PoolingParams(dimensions=d) for d in dimensions],
|
|
)
|
|
|
|
expected_outputs = []
|
|
for output, dimension in zip(hf_outputs, dimensions):
|
|
output = torch.as_tensor(output)
|
|
if dimension is not None:
|
|
output = torch.nn.functional.normalize(output[:dimension], dim=0)
|
|
expected_outputs.append(output.tolist())
|
|
|
|
assert [len(output) for output in vllm_outputs] == [768, 256]
|
|
check_embeddings_close(
|
|
embeddings_0_lst=expected_outputs,
|
|
embeddings_1_lst=vllm_outputs,
|
|
name_0="hf",
|
|
name_1="vllm",
|
|
tol=1e-2,
|
|
)
|