test_common.py 6.85 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
4
import os
from typing import Optional
5

Woosuk Kwon's avatar
Woosuk Kwon committed
6
import pytest
7
import os
8
9
10
import torch

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

12
from ....utils import large_gpu_mark
13
from ...registry import HF_EXAMPLE_MODELS
14
from ...utils import check_logprobs_close
zhuwenwen's avatar
zhuwenwen committed
15
from ....utils import models_path_prefix
Woosuk Kwon's avatar
Woosuk Kwon committed
16

17
18
19
20
21
22
# These have unsupported head_dim for FA. We do not
# not have a clean way to fall back, so we fail with
# a clear msg when it happens.
# https://github.com/vllm-project/vllm/issues/14524
REQUIRES_V0 = ["microsoft/phi-2", "stabilityai/stablelm-3b-4e1t"]

23
24
25
26
27
28
29
30
# 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",
31
    "Qwen/Qwen-7B-Chat",
32
    "Qwen/Qwen2.5-0.5B-Instruct",
33
    "TitanML/tiny-mixtral",
34
    "Qwen/Qwen3-8B",
35
]
Woosuk Kwon's avatar
Woosuk Kwon committed
36
37


38
# @maybe_test_rocm_aiter
39
40
41
42
@pytest.mark.parametrize(
    "model",
    [
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
43
            os.path.join(models_path_prefix, "bigscience/bloom-560m"),  # bloom - testing alibi slopes
44
            marks=[pytest.mark.core_model],
45
46
        ),
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
47
            os.path.join(models_path_prefix, "openai-community/gpt2"),  # gpt2
48
49
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
zhuwenwen's avatar
zhuwenwen committed
50
51
52
        pytest.param(os.path.join(models_path_prefix, "Milos/slovak-gpt-j-405M")),  # gptj
        pytest.param(os.path.join(models_path_prefix, "bigcode/tiny_starcoder_py")),  # gpt_bigcode
        pytest.param(os.path.join(models_path_prefix, "EleutherAI/pythia-70m")),  # gpt_neox
53
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
54
            os.path.join(models_path_prefix, "google/gemma-1.1-2b-it"),  # gemma
55
56
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
57
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
58
            os.path.join(models_path_prefix, "THUDM/chatglm3-6b"),  # chatglm (text-only)
59
        ),
60
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
61
            os.path.join(models_path_prefix, "meta-llama/Llama-3.2-1B-Instruct"),  # llama
62
63
64
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
65
            os.path.join(models_path_prefix, "openbmb/MiniCPM3-4B"),
66
            # fused_moe not supported on CPU
67
68
            marks=[pytest.mark.core_model,
                   large_gpu_mark(min_gb=32)],
69
70
        ),
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
71
            os.path.join(models_path_prefix, "facebook/opt-125m"),  # opt
72
73
74
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
        ),
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
75
            os.path.join(models_path_prefix, "microsoft/phi-2"),  # phi
76
77
            marks=[pytest.mark.core_model],
        ),
78
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
79
            os.path.join(models_path_prefix, "Qwen/Qwen-7B-Chat"),  # qwen (text-only)
80
        ),
81
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
82
            os.path.join(models_path_prefix, "Qwen/Qwen2.5-0.5B-Instruct"),  # qwen2
83
            marks=[pytest.mark.core_model, pytest.mark.cpu_model],
84
        ),
85
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
86
            os.path.join(models_path_prefix, "Qwen/Qwen3-8B"),  # qwen (text-only)
87
        ),
zhuwenwen's avatar
zhuwenwen committed
88
89
        pytest.param(os.path.join(models_path_prefix, "stabilityai/stablelm-3b-4e1t")),  # stablelm
        pytest.param(os.path.join(models_path_prefix, "bigcode/starcoder2-3b")),  # starcoder2
90
        pytest.param(
zhuwenwen's avatar
zhuwenwen committed
91
            os.path.join(models_path_prefix, "TitanML/tiny-mixtral"),  # mixtral
92
93
94
            marks=[pytest.mark.core_model],
        ),
        pytest.param(
95
            os.path.join(models_path_prefix, "allenai/OLMoE-1B-7B-0924-Instruct"),
96
            marks=[pytest.mark.cpu_model],
97
        )
98
    ])
99
100
@pytest.mark.parametrize("max_tokens", [32])
@pytest.mark.parametrize("num_logprobs", [5])
101
102
103
@pytest.mark.parametrize(
    "use_rocm_aiter", [True, False] if current_platform.is_rocm() else [False])
def test_models(hf_runner, vllm_runner, example_prompts, model: str,
104
105
                max_tokens: int, num_logprobs: int, use_rocm_aiter: bool,
                monkeypatch) -> None:
106

107
108
109
    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")
110

111
112
    if model in REQUIRES_V0:
        monkeypatch.setenv("VLLM_USE_V1", "0")
113

114
115
116
117
118
119
120
121
    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.")
122

123
124
    use_prompt_embeds = os.getenv("VLLM_USE_V1") == "0"

125
    with hf_runner(model) as hf_model:
126
127
        hf_outputs = hf_model.generate_greedy_logprobs_limit(
            example_prompts, max_tokens, num_logprobs)
Woosuk Kwon's avatar
Woosuk Kwon committed
128

129
130
131
        prompt_embeds: Optional[list[torch.Tensor]] = ([] if use_prompt_embeds
                                                       else None)

132
133
134
135
136
137
138
139
140
141
        prompt_token_ids = []
        for prompt in example_prompts:
            token_ids = hf_model.tokenizer(prompt,
                                           return_tensors="pt").input_ids.to(
                                               hf_model.model.device)
            prompt_token_ids.append(token_ids)
            if prompt_embeds is not None:
                prompt_embeds.append(hf_model.model.get_input_embeddings()(
                    token_ids).squeeze(0))

142
143
144
145
146
147
    with vllm_runner(
            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,
148
            enable_prompt_embeds=use_prompt_embeds,
149
    ) as vllm_model:
150
151
        vllm_outputs = vllm_model.generate_greedy_logprobs(
            example_prompts, max_tokens, num_logprobs)
152
153
154
        if prompt_embeds is not None:
            vllm_outputs_from_embeds = vllm_model.generate_greedy_logprobs(
                prompt_embeds, max_tokens, num_logprobs)
155

156
    check_logprobs_close(
157
158
159
160
161
        outputs_0_lst=hf_outputs,
        outputs_1_lst=vllm_outputs,
        name_0="hf",
        name_1="vllm",
    )
162
163
164
165
166
167
168
169
    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",
        )

170
171
172
173
174
175
176
    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()