test_common.py 8 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

Woosuk Kwon's avatar
Woosuk Kwon committed
4
import pytest
5
import torch
6
7
from packaging.version import Version
from transformers import __version__ as TRANSFORMERS_VERSION
8
9

from vllm.platforms import current_platform
Woosuk Kwon's avatar
Woosuk Kwon committed
10

11
from ....utils import large_gpu_mark
12
from ...registry import HF_EXAMPLE_MODELS
13
from ...utils import check_logprobs_close
14

15
16
17
18
19
# Models that require embedding scaling for prompt_embeds test
EMBED_SCALING_MODELS = {
    "openbmb/MiniCPM4.1-8B",
}

20
21
22
23
24
25
26
27
# This list contains the model that are using AITER kernel.
# Skip model that are not using AITER tests.
# When more AITER kernels are added, this list will not be
# needed as all the models will be calling AITER kernels
# in parts of the operators
AITER_MODEL_LIST = [
    "meta-llama/Llama-3.2-1B-Instruct",
    "openbmb/MiniCPM3-4B",
28
    "Qwen/Qwen-7B-Chat",
29
    "Qwen/Qwen2.5-0.5B-Instruct",
30
    "TitanML/tiny-mixtral",
31
    "Qwen/Qwen3-8B",
32
33
]

Woosuk Kwon's avatar
Woosuk Kwon committed
34

35
# @maybe_test_rocm_aiter
36
@pytest.mark.parametrize(
37
    "model",
38
39
    [
        pytest.param(
40
            "bigscience/bloom-560m",  # bloom - testing alibi slopes
41
42
43
44
45
            marks=[
                pytest.mark.core_model,
                pytest.mark.slow_test,
                pytest.mark.cpu_model,
            ],
46
47
        ),
        pytest.param(
48
            "openai-community/gpt2",  # gpt2
49
50
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
51
52
53
        pytest.param("Milos/slovak-gpt-j-405M"),  # gptj
        pytest.param("bigcode/tiny_starcoder_py"),  # gpt_bigcode
        pytest.param("EleutherAI/pythia-70m"),  # gpt_neox
54
        pytest.param(
55
            "google/gemma-1.1-2b-it",  # gemma
56
            marks=[
57
58
59
                pytest.mark.core_model,
                pytest.mark.cpu_model,
                pytest.mark.slow_test,
60
            ],
61
        ),
62
63
64
65
        pytest.param(
            "google/gemma-2-2b-it",  # test hybrid attention
            marks=[pytest.mark.cpu_model],
        ),
66
        pytest.param(
67
            "zai-org/chatglm3-6b",  # chatglm (text-only)
68
69
70
        ),
        pytest.param(
            "meta-llama/Llama-3.2-1B-Instruct",  # llama
71
72
73
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
        pytest.param(
74
75
            "openbmb/MiniCPM4.1-8B",  # minicpm
            marks=[pytest.mark.core_model, large_gpu_mark(min_gb=48)],
76
77
        ),
        pytest.param(
78
            "facebook/opt-125m",  # opt
79
80
81
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
        pytest.param(
82
            "microsoft/phi-2",  # phi
83
            marks=[pytest.mark.core_model, pytest.mark.slow_test],
84
        ),
85
        pytest.param(
86
87
88
89
            "Qwen/Qwen-7B-Chat",  # qwen (text-only)
        ),
        pytest.param(
            "Qwen/Qwen2.5-0.5B-Instruct",  # qwen2
90
            marks=[
91
92
93
                pytest.mark.core_model,
                pytest.mark.cpu_model,
                pytest.mark.slow_test,
94
            ],
95
        ),
96
97
98
        pytest.param(
            "Qwen/Qwen3-8B",  # qwen (text-only)
        ),
99
100
        pytest.param("stabilityai/stablelm-3b-4e1t"),  # stablelm
        pytest.param("bigcode/starcoder2-3b"),  # starcoder2
101
        pytest.param(
102
            "TitanML/tiny-mixtral",  # mixtral
103
            marks=[pytest.mark.core_model],
104
        ),
105
        pytest.param("swiss-ai/Apertus-8B-Instruct-2509"),  # apertus
106
107
108
109
        pytest.param(
            "naver-hyperclovax/HyperCLOVAX-SEED-Think-14B",  # hyperclovax
            marks=[large_gpu_mark(min_gb=32)],
        ),
110
111
    ],
)
112
113
@pytest.mark.parametrize("max_tokens", [32])
@pytest.mark.parametrize("num_logprobs", [5])
114
@pytest.mark.parametrize(
115
116
    "use_rocm_aiter", [True, False] if current_platform.is_rocm() else [False]
)
117
@pytest.mark.parametrize("use_prompt_embeds", [True, False])
118
119
120
121
122
123
124
125
126
127
128
def test_models(
    hf_runner,
    vllm_runner,
    example_prompts,
    model: str,
    max_tokens: int,
    num_logprobs: int,
    use_rocm_aiter: bool,
    use_prompt_embeds: bool,
    monkeypatch,
) -> None:
129
130
131
    model_info = HF_EXAMPLE_MODELS.find_hf_info(model)
    model_info.check_available_online(on_fail="skip")
    model_info.check_transformers_version(on_fail="skip")
132

133
134
    if use_rocm_aiter and (model in AITER_MODEL_LIST):
        monkeypatch.setenv("VLLM_ROCM_USE_AITER", "1")
135
136
137
138
        if model == "TitanML/tiny-mixtral":
            # Untrained model: near-uniform logits make argmax sensitive to
            # AITER's bfloat16 rounding error in plain rms_norm.
            monkeypatch.setenv("VLLM_ROCM_USE_AITER_RMSNORM", "0")
139
140
141
142
143
144
145
    elif use_rocm_aiter and model not in AITER_MODEL_LIST:
        # Skip model that are not using AITER tests.
        # When more AITER kernels are added, this list will not be
        # needed as all the models will be calling AITER kernels
        # in parts of the operators
        pytest.skip(f"Skipping '{model}' model test with AITER kernel.")

146
147
148
    if current_platform.is_cpu() and model in ("openai-community/gpt2",):
        # These models are sensitive to the rounding error
        # Fuse ops to reduce rounding
149
150
        monkeypatch.setenv("VLLM_CPU_CI_ENV", "0")

151
    with hf_runner(model) as hf_model:
152
        hf_outputs = hf_model.generate_greedy_logprobs_limit(
153
154
            example_prompts, max_tokens, num_logprobs
        )
Woosuk Kwon's avatar
Woosuk Kwon committed
155

156
        prompt_embeds: list[torch.Tensor] | None = [] if use_prompt_embeds else None
157

158
        for prompt in example_prompts:
159
160
161
            token_ids = hf_model.tokenizer(prompt, return_tensors="pt").input_ids.to(
                hf_model.model.device
            )
162
            if prompt_embeds is not None:
163
164
                embed = hf_model.model.get_input_embeddings()(token_ids)

165
166
167
168
169
170
171
172
173
174
                if "gemma" in model.lower() and (
                    Version(TRANSFORMERS_VERSION) < Version("5.3.0.dev0")
                ):
                    # For Gemma 1/2 models with Transformers 5.4.0+, the prompt
                    # embeddings are normalised in `get_prompt_embeddings`,
                    # like Gemma 3. For older versions, we need to manually normalise.
                    embed_scale = hf_model.config.hidden_size**0.5
                    normalizer = torch.tensor(embed_scale, dtype=embed.dtype)
                    embed *= normalizer

175
176
177
178
179
180
181
                # MiniCPM models apply scale_emb to embeddings internally.
                # vLLM expects pre-scaled embeddings when using inputs_embeds.
                if model in EMBED_SCALING_MODELS:
                    config = hf_model.model.config
                    embed = embed * config.scale_emb

                prompt_embeds.append(embed.squeeze(0))
182

183
    with vllm_runner(
184
185
186
187
        model,
        tokenizer_name=model_info.tokenizer or model,
        tokenizer_mode=model_info.tokenizer_mode,
        trust_remote_code=model_info.trust_remote_code,
188
189
190
191
        # Remove the effects of batch variance on ROCm since batch invariance
        # is not yet supported.
        # See: https://github.com/vllm-project/vllm/issues/27433
        max_num_seqs=1 if current_platform.is_rocm() else 2,
192
        enable_prompt_embeds=use_prompt_embeds,
193
        compilation_config={"cudagraph_capture_sizes": [1, 2]},
194
    ) as vllm_model:
195
        vllm_outputs = vllm_model.generate_greedy_logprobs(
196
197
            example_prompts, max_tokens, num_logprobs
        )
198
199
        if prompt_embeds is not None:
            vllm_outputs_from_embeds = vllm_model.generate_greedy_logprobs(
200
201
                prompt_embeds, max_tokens, num_logprobs
            )
202

203
    check_logprobs_close(
204
205
206
207
208
        outputs_0_lst=hf_outputs,
        outputs_1_lst=vllm_outputs,
        name_0="hf",
        name_1="vllm",
    )
209
210
211
212
213
214
215
216
    if prompt_embeds is not None:
        check_logprobs_close(
            outputs_0_lst=vllm_outputs,
            outputs_1_lst=vllm_outputs_from_embeds,
            name_0="vllm",
            name_1="vllm_from_embeds",
        )

217
218
219
220
221
222
    if use_rocm_aiter:
        # this is to ensure that vllm engine
        # has deallocated the memory before running the next
        # unit tests. On ROCm, when using AITER
        # the memory might not be deallocated completely
        # before running the next test case
223
        torch.accelerator.synchronize()