test_common.py 4.77 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
Woosuk Kwon's avatar
Woosuk Kwon committed
2
import pytest
3
4
5
import torch

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

7
from ....utils import large_gpu_mark
8
from ...registry import HF_EXAMPLE_MODELS
9
from ...utils import check_logprobs_close
10

11
12
13
14
15
16
# 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"]

17
18
19
20
21
22
23
24
# 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",
25
    "Qwen/Qwen-7B-Chat",
26
    "Qwen/Qwen2.5-0.5B-Instruct",
27
    "TitanML/tiny-mixtral",
28
29
]

Woosuk Kwon's avatar
Woosuk Kwon committed
30

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

93
94
95
    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")
96

97
98
    if model in REQUIRES_V0:
        monkeypatch.setenv("VLLM_USE_V1", "0")
99

100
101
102
103
104
105
106
107
108
    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.")

109
    with hf_runner(model) as hf_model:
110
111
        hf_outputs = hf_model.generate_greedy_logprobs_limit(
            example_prompts, max_tokens, num_logprobs)
Woosuk Kwon's avatar
Woosuk Kwon committed
112

113
114
115
116
117
118
119
    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,
    ) as vllm_model:
120
121
        vllm_outputs = vllm_model.generate_greedy_logprobs(
            example_prompts, max_tokens, num_logprobs)
122

123
    check_logprobs_close(
124
125
126
127
128
        outputs_0_lst=hf_outputs,
        outputs_1_lst=vllm_outputs,
        name_0="hf",
        name_1="vllm",
    )
129
130
131
132
133
134
135
    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()