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

4
5
import weakref

6
7
import pytest

8
from vllm import LLM, SamplingParams
9
from vllm.distributed import cleanup_dist_env_and_memory
10

11
MODEL_NAME = "distilbert/distilgpt2"
12
13
14
15
16
17
18

PROMPTS = [
    "Hello, my name is",
    "The president of the United States is",
    "The capital of France is",
    "The future of AI is",
]
19

20
21
22
23
24
25
TOKEN_IDS = [
    [0],
    [0, 1],
    [0, 2, 1],
    [0, 3, 1, 2],
]
26

27
28
29
30
31

@pytest.fixture(scope="module")
def llm():
    # pytest caches the fixture so we use weakref.proxy to
    # enable garbage collection
32
33
34
35
36
37
38
    llm = LLM(
        model=MODEL_NAME,
        max_num_batched_tokens=4096,
        tensor_parallel_size=1,
        gpu_memory_utilization=0.10,
        enforce_eager=True,
    )
39

40
    yield weakref.proxy(llm)
41

42
    del llm
43

44
    cleanup_dist_env_and_memory()
45
46
47
48


@pytest.mark.skip_global_cleanup
def test_multiple_sampling_params(llm: LLM):
49
50
51
52
53
54
55
56
    sampling_params = [
        SamplingParams(temperature=0.01, top_p=0.95),
        SamplingParams(temperature=0.3, top_p=0.95),
        SamplingParams(temperature=0.7, top_p=0.95),
        SamplingParams(temperature=0.99, top_p=0.95),
    ]

    # Multiple SamplingParams should be matched with each prompt
57
58
    outputs = llm.generate(PROMPTS, sampling_params=sampling_params)
    assert len(PROMPTS) == len(outputs)
59
60
61

    # Exception raised, if the size of params does not match the size of prompts
    with pytest.raises(ValueError):
62
        outputs = llm.generate(PROMPTS, sampling_params=sampling_params[:3])
63
64
65

    # Single SamplingParams should be applied to every prompt
    single_sampling_params = SamplingParams(temperature=0.3, top_p=0.95)
66
67
    outputs = llm.generate(PROMPTS, sampling_params=single_sampling_params)
    assert len(PROMPTS) == len(outputs)
68
69

    # sampling_params is None, default params should be applied
70
71
    outputs = llm.generate(PROMPTS, sampling_params=None)
    assert len(PROMPTS) == len(outputs)
72
73
74
75
76
77
78
79
80
81
82
83
84
85


def test_max_model_len():
    max_model_len = 20
    llm = LLM(
        model=MODEL_NAME,
        max_model_len=max_model_len,
        gpu_memory_utilization=0.10,
        enforce_eager=True,  # reduce test time
    )
    sampling_params = SamplingParams(max_tokens=max_model_len + 10)
    outputs = llm.generate(PROMPTS, sampling_params)
    for output in outputs:
        num_total_tokens = len(output.prompt_token_ids) + len(
86
87
            output.outputs[0].token_ids
        )
88
89
        # Total tokens must not exceed max_model_len + 1 (the last token can be
        # generated with the context length equal to the max model length)
90
91
        # It can be less if generation finishes due to other reasons (e.g., EOS)
        # before reaching the absolute model length limit.
92
        assert num_total_tokens <= max_model_len + 1
93
94
95
96
97
98
99
100
101
102
103
104
105


def test_log_stats():
    llm = LLM(
        model=MODEL_NAME,
        disable_log_stats=False,
        gpu_memory_utilization=0.10,
        enforce_eager=True,  # reduce test time
    )
    outputs = llm.generate(PROMPTS, sampling_params=None)

    # disable_log_stats is False, every output should have metrics
    assert all(output.metrics is not None for output in outputs)