test_async_llm.py 8.53 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
import asyncio
4
from contextlib import ExitStack
5
from typing import Optional
6

zhuwenwen's avatar
zhuwenwen committed
7
import os
8
9
10
import pytest

from vllm import SamplingParams
11
from vllm.assets.image import ImageAsset
12
from vllm.engine.arg_utils import AsyncEngineArgs
13
from vllm.inputs import PromptType
14
from vllm.platforms import current_platform
15
from vllm.sampling_params import RequestOutputKind
16
from vllm.v1.engine.async_llm import AsyncLLM
zhuwenwen's avatar
zhuwenwen committed
17
from ...utils import models_path_prefix
18
19
20
21
22

if not current_platform.is_cuda():
    pytest.skip(reason="V1 currently only supported on CUDA.",
                allow_module_level=True)

zhuwenwen's avatar
zhuwenwen committed
23
TEXT_ENGINE_ARGS = AsyncEngineArgs(model=os.path.join(models_path_prefix, "meta-llama/Llama-3.2-1B"),
24
                              enforce_eager=True,
25
26
                              disable_log_requests=True)

27
28
29
VISION_ENGINE_ARGS = AsyncEngineArgs(model="Qwen/Qwen2-VL-2B-Instruct",
                                     enforce_eager=True,
                                     disable_log_requests=True)
30

31
32
33
34
35
36
37
38
39
40
41
42
43
TEXT_PROMPT = "Hello my name is Robert and"

VISION_PROMPT_TEMPLATE = (
    "<|im_start|>system\nYou are a helpful assistant.<|im_end|>"
    "\n<|im_start|>user\n<|vision_start|><|image_pad|><|vision_end|>"
    "What is in the image?<|im_end|>\n"
    "<|im_start|>assistant\n")
VISION_PROMPT = {
    "prompt": VISION_PROMPT_TEMPLATE,
    "multi_modal_data": {
        "image": ImageAsset("stop_sign").pil_image
    }
}
44
45


46
47
async def generate(engine: AsyncLLM,
                   request_id: str,
48
                   prompt: PromptType,
49
                   output_kind: RequestOutputKind,
50
                   max_tokens: int,
51
                   n: int = 1,
52
                   prompt_logprobs: Optional[int] = None) -> tuple[int, str]:
53
54
55
    # Ensure generate doesn't complete too fast for cancellation test.
    await asyncio.sleep(0.2)

56
    count = 0
57
    sampling_params = SamplingParams(max_tokens=max_tokens,
58
                                     ignore_eos=True,
59
                                     output_kind=output_kind,
60
61
62
                                     temperature=0.5,
                                     seed=33,
                                     n=n,
63
                                     prompt_logprobs=prompt_logprobs)
64
    async for out in engine.generate(request_id=request_id,
65
                                     prompt=prompt,
66
67
                                     sampling_params=sampling_params):

68
        num_tokens = sum(len(output.token_ids) for output in out.outputs)
69
70
71
72
        if output_kind == RequestOutputKind.DELTA:
            count += num_tokens
        else:
            count = num_tokens
73
74
75
76
77
78

        await asyncio.sleep(0.)

    return count, request_id


79
80
@pytest.mark.parametrize(
    "output_kind", [RequestOutputKind.DELTA, RequestOutputKind.FINAL_ONLY])
81
@pytest.mark.parametrize("engine_args,prompt",
82
83
                         [(TEXT_ENGINE_ARGS, TEXT_PROMPT),
                          (VISION_ENGINE_ARGS, VISION_PROMPT)])
84
@pytest.mark.asyncio
85
86
87
async def test_load(monkeypatch: pytest.MonkeyPatch,
                    output_kind: RequestOutputKind,
                    engine_args: AsyncEngineArgs, prompt: PromptType):
88
89
90
    # TODO(rickyx): Remove monkeypatch once we have a better way to test V1
    # so that in the future when we switch, we don't have to change all the
    # tests.
91
    with monkeypatch.context() as m, ExitStack() as after:
92
93
        m.setenv("VLLM_USE_V1", "1")

94
        engine = AsyncLLM.from_engine_args(engine_args)
95
        after.callback(engine.shutdown)
96

97
        NUM_REQUESTS = 100
98
99
100
101
102
103
104
105
106
        NUM_EXPECTED_TOKENS = 10

        request_ids = [f"request-{i}" for i in range(NUM_REQUESTS)]

        # Create concurrent requests.
        tasks = []
        for request_id in request_ids:
            tasks.append(
                asyncio.create_task(
107
                    generate(engine, request_id, prompt, output_kind,
108
                             NUM_EXPECTED_TOKENS)))
109
110

        # Confirm that we got all the EXPECTED tokens from the requests.
111
112
113
114
115
        done, pending = await asyncio.wait(tasks,
                                           return_when=asyncio.FIRST_EXCEPTION)
        for task in pending:
            task.cancel()
        for task in done:
116
            num_generated_tokens, request_id = await task
117
118
119
            assert num_generated_tokens == NUM_EXPECTED_TOKENS, (
                f"{request_id} generated {num_generated_tokens} but "
                f"expected {NUM_EXPECTED_TOKENS}")
120

121
        assert not engine.output_processor.has_unfinished_requests()
122

123

124
125
@pytest.mark.parametrize(
    "output_kind", [RequestOutputKind.DELTA, RequestOutputKind.FINAL_ONLY])
126
@pytest.mark.parametrize("engine_args,prompt",
127
128
                         [(TEXT_ENGINE_ARGS, TEXT_PROMPT),
                          (VISION_ENGINE_ARGS, VISION_PROMPT)])
129
@pytest.mark.asyncio
130
131
async def test_abort(monkeypatch: pytest.MonkeyPatch,
                     output_kind: RequestOutputKind,
132
                     engine_args: AsyncEngineArgs, prompt: PromptType):
133

134
    with monkeypatch.context() as m, ExitStack() as after:
135
136
        m.setenv("VLLM_USE_V1", "1")

137
        engine = AsyncLLM.from_engine_args(engine_args)
138
        after.callback(engine.shutdown)
139
140
141

        NUM_REQUESTS = 100
        NUM_EXPECTED_TOKENS = 100
142
        NUM_EXPECTED_TOKENS_LONG = 50000
143
        REQUEST_IDS_TO_ABORT = range(1, 100, 10)
144
        PARALLEL_SAMPLE_REQ_IDS = range(1, 100, 15)
145
146
147
148

        request_ids = [f"request-{i}" for i in range(NUM_REQUESTS)]

        # Create concurrent requests.
149
        tasks: list[asyncio.Task] = []
150
151
152
153
        for idx, request_id in enumerate(request_ids):
            max_tokens = NUM_EXPECTED_TOKENS_LONG if (
                idx in REQUEST_IDS_TO_ABORT) else NUM_EXPECTED_TOKENS
            n = 3 if idx in PARALLEL_SAMPLE_REQ_IDS else 1
154
155
            tasks.append(
                asyncio.create_task(
156
                    generate(engine, request_id, prompt, output_kind,
157
                             max_tokens, n)))
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172

        # API server cancels requests when they disconnect.
        for idx in REQUEST_IDS_TO_ABORT:
            tasks[idx].cancel()
            await asyncio.sleep(0.1)

        # Confirm the other requests are okay.
        for idx, task in enumerate(tasks):
            # Confirm that it was actually canceled.
            if idx in REQUEST_IDS_TO_ABORT:
                with pytest.raises(asyncio.CancelledError):
                    await task
            else:
                # Otherwise, make sure the request was not impacted.
                num_generated_tokens, request_id = await task
173
174
175
                n = 3 if idx in PARALLEL_SAMPLE_REQ_IDS else 1
                expected_tokens = NUM_EXPECTED_TOKENS * n
                assert num_generated_tokens == expected_tokens, (
176
                    f"{request_id} generated {num_generated_tokens} but "
177
                    f"expected {expected_tokens}")
178

179
        # Make sure all aborted requests were really aborted.
180
181
182
183
184
        assert not engine.output_processor.has_unfinished_requests()

        # Confirm we can do another generation.
        request_id = f"request-{REQUEST_IDS_TO_ABORT[0]}"
        task = asyncio.create_task(
185
186
            generate(engine, request_id, prompt, output_kind,
                     NUM_EXPECTED_TOKENS))
187
188
189
        num_generated_tokens, request_id = await task
        assert num_generated_tokens == NUM_EXPECTED_TOKENS
        assert not engine.output_processor.has_unfinished_requests()
190
191
192


@pytest.mark.parametrize("n", [1, 3])
193
@pytest.mark.parametrize("engine_args,prompt",
194
195
196
                         [(TEXT_ENGINE_ARGS, TEXT_PROMPT),
                          (VISION_ENGINE_ARGS, VISION_PROMPT)])
@pytest.mark.asyncio
197
198
async def test_finished_flag(monkeypatch: pytest.MonkeyPatch, n: int,
                             engine_args: AsyncEngineArgs, prompt: PromptType):
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220

    with monkeypatch.context() as m, ExitStack() as after:
        m.setenv("VLLM_USE_V1", "1")

        engine = AsyncLLM.from_engine_args(engine_args)
        after.callback(engine.shutdown)

        sampling_params = SamplingParams(max_tokens=100,
                                         output_kind=RequestOutputKind.DELTA,
                                         temperature=1.0,
                                         seed=33,
                                         n=n)
        outputs = [
            out
            async for out in engine.generate(request_id="request-33",
                                             prompt=prompt,
                                             sampling_params=sampling_params)
        ]

        # Assert only the last output has the finished flag set
        assert all(not out.finished for out in outputs[:-1])
        assert outputs[-1].finished