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

4
import weakref
5
import os
6

7
8
import pytest

9
from vllm import LLM, SamplingParams
10
from vllm.distributed import cleanup_dist_env_and_memory
11
from ...utils import models_path_prefix
12

zhuwenwen's avatar
zhuwenwen committed
13
MODEL_NAME = os.path.join(models_path_prefix, "distilbert/distilgpt2")
14
15
16
17
18
19
20

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

22
23
24
25
26
27
TOKEN_IDS = [
    [0],
    [0, 1],
    [0, 2, 1],
    [0, 3, 1, 2],
]
28

29

30
31
32
33
34
35
@pytest.fixture(autouse=True)
def v1(run_with_both_engines):
    """We can run both engines for this test."""
    pass


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

46
    yield weakref.proxy(llm)
47

48
    del llm
49

50
    cleanup_dist_env_and_memory()
51
52
53
54


@pytest.mark.skip_global_cleanup
def test_multiple_sampling_params(llm: LLM):
55
56
57
58
59
60
61
62
    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
63
64
    outputs = llm.generate(PROMPTS, sampling_params=sampling_params)
    assert len(PROMPTS) == len(outputs)
65
66
67

    # Exception raised, if the size of params does not match the size of prompts
    with pytest.raises(ValueError):
68
        outputs = llm.generate(PROMPTS, sampling_params=sampling_params[:3])
69
70
71

    # Single SamplingParams should be applied to every prompt
    single_sampling_params = SamplingParams(temperature=0.3, top_p=0.95)
72
73
    outputs = llm.generate(PROMPTS, sampling_params=single_sampling_params)
    assert len(PROMPTS) == len(outputs)
74
75

    # sampling_params is None, default params should be applied
76
77
    outputs = llm.generate(PROMPTS, sampling_params=None)
    assert len(PROMPTS) == len(outputs)
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92


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(
            output.outputs[0].token_ids)
93
94
95
96
        # Total tokens must not exceed max_model_len.
        # It can be less if generation finishes due to other reasons (e.g., EOS)
        # before reaching the absolute model length limit.
        assert num_total_tokens <= max_model_len