test_common.py 6.13 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
6
7
import torch

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

9
from ....utils import large_gpu_mark
10
from ...registry import HF_EXAMPLE_MODELS
11
from ...utils import check_logprobs_close
12

13
14
15
16
17
18
19
20
# 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",
21
    "Qwen/Qwen-7B-Chat",
22
    "Qwen/Qwen2.5-0.5B-Instruct",
23
    "TitanML/tiny-mixtral",
24
    "Qwen/Qwen3-8B",
25
26
]

Woosuk Kwon's avatar
Woosuk Kwon committed
27

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

122
123
124
125
126
127
128
129
130
    if use_rocm_aiter and (model in AITER_MODEL_LIST):
        monkeypatch.setenv("VLLM_ROCM_USE_AITER", "1")
    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.")

131
    with hf_runner(model) as hf_model:
132
        hf_outputs = hf_model.generate_greedy_logprobs_limit(
133
134
            example_prompts, max_tokens, num_logprobs
        )
Woosuk Kwon's avatar
Woosuk Kwon committed
135

136
        prompt_embeds: list[torch.Tensor] | None = [] if use_prompt_embeds else None
137

138
139
        prompt_token_ids = []
        for prompt in example_prompts:
140
141
142
            token_ids = hf_model.tokenizer(prompt, return_tensors="pt").input_ids.to(
                hf_model.model.device
            )
143
144
            prompt_token_ids.append(token_ids)
            if prompt_embeds is not None:
145
146
147
                prompt_embeds.append(
                    hf_model.model.get_input_embeddings()(token_ids).squeeze(0)
                )
148

149
    with vllm_runner(
150
151
152
153
154
155
        model,
        tokenizer_name=model_info.tokenizer or model,
        tokenizer_mode=model_info.tokenizer_mode,
        trust_remote_code=model_info.trust_remote_code,
        max_num_seqs=2,
        enable_prompt_embeds=use_prompt_embeds,
156
    ) as vllm_model:
157
        vllm_outputs = vllm_model.generate_greedy_logprobs(
158
159
            example_prompts, max_tokens, num_logprobs
        )
160
161
        if prompt_embeds is not None:
            vllm_outputs_from_embeds = vllm_model.generate_greedy_logprobs(
162
163
                prompt_embeds, max_tokens, num_logprobs
            )
164

165
    check_logprobs_close(
166
167
168
169
170
        outputs_0_lst=hf_outputs,
        outputs_1_lst=vllm_outputs,
        name_0="hf",
        name_1="vllm",
    )
171
172
173
174
175
176
177
178
    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",
        )

179
180
181
182
183
184
185
    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
        torch.cuda.synchronize()