test_async_llm.py 6.78 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
7
8
9

import pytest

from vllm import SamplingParams
10
from vllm.assets.image import ImageAsset
11
from vllm.engine.arg_utils import AsyncEngineArgs
12
from vllm.inputs import PromptType
13
from vllm.platforms import current_platform
14
from vllm.sampling_params import RequestOutputKind
15
16
17
18
19
20
from vllm.v1.engine.async_llm import AsyncLLM

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

21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
TEXT_ENGINE_ARGS = AsyncEngineArgs(model="meta-llama/Llama-3.2-1B-Instruct",
                                   enforce_eager=True,
                                   disable_log_requests=True)

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

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
    }
}
42
43


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

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

        num_tokens = len(out.outputs[0].token_ids)
        if output_kind == RequestOutputKind.DELTA:
            count += num_tokens
        else:
            count = num_tokens
68
69
70
71
72
73

        await asyncio.sleep(0.)

    return count, request_id


74
75
@pytest.mark.parametrize(
    "output_kind", [RequestOutputKind.DELTA, RequestOutputKind.FINAL_ONLY])
76
77
78
@pytest.mark.parametrize("engine_args_and_prompt",
                         [(TEXT_ENGINE_ARGS, TEXT_PROMPT),
                          (VISION_ENGINE_ARGS, VISION_PROMPT)])
79
@pytest.mark.asyncio
80
async def test_load(monkeypatch, output_kind: RequestOutputKind,
81
                    engine_args_and_prompt: tuple[AsyncEngineArgs,
82
                                                  PromptType]):
83
84
85
    # 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.
86
    with monkeypatch.context() as m, ExitStack() as after:
87
        m.setenv("VLLM_USE_V1", "1")
88
        engine_args, prompt = engine_args_and_prompt
89

90
        engine = AsyncLLM.from_engine_args(engine_args)
91
        after.callback(engine.shutdown)
92

93
        NUM_REQUESTS = 100
94
95
96
97
98
99
100
101
102
        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(
103
                    generate(engine, request_id, prompt, output_kind,
104
                             NUM_EXPECTED_TOKENS)))
105
106

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

        assert not engine.output_processor.has_unfinished_requests()


120
121
@pytest.mark.parametrize(
    "output_kind", [RequestOutputKind.DELTA, RequestOutputKind.FINAL_ONLY])
122
123
124
@pytest.mark.parametrize("engine_args_and_prompt",
                         [(TEXT_ENGINE_ARGS, TEXT_PROMPT),
                          (VISION_ENGINE_ARGS, VISION_PROMPT)])
125
@pytest.mark.asyncio
126
async def test_abort(monkeypatch, output_kind: RequestOutputKind,
127
                     engine_args_and_prompt: tuple[AsyncEngineArgs,
128
                                                   PromptType]):
129

130
    with monkeypatch.context() as m, ExitStack() as after:
131
        m.setenv("VLLM_USE_V1", "1")
132
        engine_args, prompt = engine_args_and_prompt
133

134
        engine = AsyncLLM.from_engine_args(engine_args)
135
        after.callback(engine.shutdown)
136
137
138
139
140
141
142
143

        NUM_REQUESTS = 100
        NUM_EXPECTED_TOKENS = 100
        REQUEST_IDS_TO_ABORT = range(1, 100, 10)

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

        # Create concurrent requests.
144
        tasks: list[asyncio.Task] = []
145
146
147
        for request_id in request_ids:
            tasks.append(
                asyncio.create_task(
148
                    generate(engine, request_id, prompt, output_kind,
149
                             NUM_EXPECTED_TOKENS)))
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173

        # 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
                assert num_generated_tokens == NUM_EXPECTED_TOKENS, (
                    f"{request_id} generated {num_generated_tokens} but "
                    f"expected {NUM_EXPECTED_TOKENS}")

        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(
174
175
            generate(engine, request_id, prompt, output_kind,
                     NUM_EXPECTED_TOKENS))
176
177
178
        num_generated_tokens, request_id = await task
        assert num_generated_tokens == NUM_EXPECTED_TOKENS
        assert not engine.output_processor.has_unfinished_requests()