test_lm_head.py 1.78 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
9
"""Tests whether gptq models with quantized lm_head can be loaded.

Run `pytest tests/quantization/test_quant_lm_head_true.py --forked`.
"""

import pytest
import torch
10
import os
11
12
13
14

from vllm.model_executor.layers.quantization.gptq import GPTQLinearMethod
from vllm.model_executor.layers.quantization.gptq_marlin import (
    GPTQMarlinLinearMethod)
15
16
from vllm.model_executor.layers.vocab_parallel_embedding import (
    UnquantizedEmbeddingMethod)
17
from ..utils import models_path_prefix
18
19
20

PROMPT = "On the surface of Mars, we found"

21
MODELS_QUANT = [
zhuwenwen's avatar
zhuwenwen committed
22
    (os.path.join(models_path_prefix, "ModelCloud/Qwen1.5-1.8B-Chat-GPTQ-4bits-dynamic-cfg-with-lm_head"), True),
23
    (os.path.join(models_path_prefix, "TheBloke/TinyLlama-1.1B-Chat-v1.0-GPTQ"), False),
24
]
25
26


27
@pytest.mark.parametrize("model_id, lm_head_quantized", MODELS_QUANT)
28
29
def test_lm_head(
    vllm_runner,
30
31
    model_id: str,
    lm_head_quantized: bool,
32
    monkeypatch,
33
) -> None:
34
35
    # vllm_runner.apply_model() relies on V0 internals.
    monkeypatch.setenv("VLLM_USE_V1", "0")
36
    with vllm_runner(model_id, dtype=torch.float16,
37
38
39
40
41
                     max_model_len=2048) as vllm_model:

        def check_model(model):
            lm_head_layer = model.lm_head
            if lm_head_quantized:
42
                assert isinstance(lm_head_layer.quant_method,
43
                                  (GPTQLinearMethod, GPTQMarlinLinearMethod))
44
            else:
45
                assert isinstance(lm_head_layer.quant_method,
46
47
48
49
50
                                  UnquantizedEmbeddingMethod)

        vllm_model.apply_model(check_model)

        print(
51
            vllm_model.generate_greedy(["Hello my name is"],
52
                                       max_tokens=10)[0][1])