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

4
5
6
7
8
# flake8: noqa
"""Tests experts_int8 quantization startup and generation, 
doesn't test correctness
"""
import pytest
9
import os
10
11

from tests.quantization.utils import is_quant_method_supported
12
from ..utils import models_path_prefix
zhuwenwen's avatar
zhuwenwen committed
13
from vllm.platforms import current_platform
14

15
MODELS = [os.path.join(models_path_prefix, "ai21labs/Jamba-tiny-random")]
16
17


zhuwenwen's avatar
zhuwenwen committed
18
@pytest.mark.skipif(not is_quant_method_supported("experts_int8") or current_platform.is_rocm(),
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
                    reason="ExpertsInt8 is not supported on this GPU type.")
@pytest.mark.parametrize("model", MODELS)
@pytest.mark.parametrize("dtype", ["bfloat16"])
@pytest.mark.parametrize("max_tokens", [10])
def test_model_experts_int8_startup(
    hf_runner,
    vllm_runner,
    example_prompts,
    model: str,
    dtype: str,
    max_tokens: int,
) -> None:

    with vllm_runner(model, dtype=dtype,
                     quantization="experts_int8") as vllm_model:
        vllm_model.generate_greedy(example_prompts, max_tokens)