utils.py 6.1 KB
Newer Older
1
2
3
4
5
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project

import torch

6
7
8
9
10
11
12
13
14
15
16
17
18
from vllm.config import (
    CacheConfig,
    KVTransferConfig,
    ModelConfig,
    SchedulerConfig,
    SpeculativeConfig,
    VllmConfig,
)
from vllm.multimodal.inputs import (
    MultiModalFeatureSpec,
    MultiModalKwargsItem,
    PlaceholderRange,
)
19
from vllm.sampling_params import SamplingParams
20
from vllm.utils.hashing import sha256
21
from vllm.v1.core.kv_cache_utils import get_request_block_hasher, init_none_hash
22
23
from vllm.v1.core.sched.async_scheduler import AsyncScheduler
from vllm.v1.core.sched.scheduler import Scheduler
24
25
26
27
28
from vllm.v1.kv_cache_interface import (
    FullAttentionSpec,
    KVCacheConfig,
    KVCacheGroupSpec,
)
29
30
31
32
33
34
35
36
37
38
from vllm.v1.request import Request
from vllm.v1.structured_output import StructuredOutputManager

EOS_TOKEN_ID = 50256


def create_scheduler(
    model: str = "facebook/opt-125m",
    max_num_seqs: int = 16,
    max_num_batched_tokens: int = 8192,
39
    enable_prefix_caching: bool | None = None,
40
41
42
43
44
    long_prefill_token_threshold: int = 0,
    disable_chunked_mm_input: bool = False,
    use_kv_connector: bool = False,
    num_blocks: int = 10000,
    block_size: int = 16,
45
46
    max_model_len: int | None = None,
    num_speculative_tokens: int | None = None,
47
48
    skip_tokenizer_init: bool = False,
    async_scheduling: bool = False,
49
    disable_hybrid_kv_cache_manager: bool = False,
50
) -> Scheduler | AsyncScheduler:
51
    """Create scheduler under test.
52
53
54
55
56
57
58
59
60
61
62

    Args:
      model: model under test
      max_num_seqs: max sequences to schedule
      max_num_batch_tokens: max num tokens to batch
      enable_prefix_caching: optionally force APC config
                             (True/False) or use default
                             (None)

    Returns:
      {class}`Scheduler` instance
63
    """
64
65
66
67
68
69
70
71
72
73
    if max_model_len is None:
        max_model_len = max_num_batched_tokens
    scheduler_config = SchedulerConfig(
        max_num_seqs=max_num_seqs,
        max_num_batched_tokens=max_num_batched_tokens,
        max_model_len=max_model_len,
        long_prefill_token_threshold=long_prefill_token_threshold,
        disable_chunked_mm_input=disable_chunked_mm_input,
        enable_chunked_prefill=True,
        async_scheduling=async_scheduling,
74
        disable_hybrid_kv_cache_manager=disable_hybrid_kv_cache_manager,
75
76
77
78
79
80
81
82
83
    )
    model_config = ModelConfig(
        model=model,
        trust_remote_code=True,
        dtype="float16",
        seed=42,
        skip_tokenizer_init=skip_tokenizer_init,
    )
    # Cache config, optionally force APC
84
85
86
87
88
    kwargs_cache = (
        {}
        if enable_prefix_caching is None
        else {"enable_prefix_caching": enable_prefix_caching}
    )
89
90
91
92
93
94
95
    cache_config = CacheConfig(
        block_size=block_size,
        gpu_memory_utilization=0.9,
        swap_space=0,
        cache_dtype="auto",
        **kwargs_cache,
    )
96
97
98
99
100
101
102
103
104
    kv_transfer_config = (
        KVTransferConfig(
            kv_connector="SharedStorageConnector",
            kv_role="kv_both",
            kv_connector_extra_config={"shared_storage_path": "local_storage"},
        )
        if use_kv_connector
        else None
    )
105

106
    speculative_config: SpeculativeConfig | None = None
107
108
    if num_speculative_tokens is not None:
        speculative_config = SpeculativeConfig(
109
110
            model="ngram", num_speculative_tokens=num_speculative_tokens
        )
111
112
113
114
115
116
117
118
119
120
121
122

    vllm_config = VllmConfig(
        scheduler_config=scheduler_config,
        model_config=model_config,
        cache_config=cache_config,
        kv_transfer_config=kv_transfer_config,
        speculative_config=speculative_config,
    )
    kv_cache_config = KVCacheConfig(
        num_blocks=num_blocks,  # A large number of blocks to hold all requests
        kv_cache_tensors=[],
        kv_cache_groups=[
123
124
125
            KVCacheGroupSpec(
                ["layer"], FullAttentionSpec(block_size, 1, 1, torch.float32, False)
            )
126
127
128
129
130
131
132
        ],
    )
    cache_config.num_gpu_blocks = num_blocks
    scheduler_cls = AsyncScheduler if async_scheduling else Scheduler
    return scheduler_cls(
        vllm_config=vllm_config,
        kv_cache_config=kv_cache_config,
133
        block_size=block_size,
134
135
136
137
138
        log_stats=True,
        structured_output_manager=StructuredOutputManager(vllm_config),
    )


139
140
141
_none_hash_initialized = False


142
143
144
def create_requests(
    num_requests: int,
    num_tokens: int = 10,
145
    mm_positions: list[list[PlaceholderRange]] | None = None,
146
    max_tokens: int = 16,
147
148
    stop_token_ids: list[int] | None = None,
    prompt_logprobs: int | None = None,
149
    same_prompt: bool = False,
150
    block_size: int = 16,
151
) -> list[Request]:
152
153
    global _none_hash_initialized
    if not _none_hash_initialized:
154
        init_none_hash(sha256)
155
156
        _none_hash_initialized = True

157
    block_hasher = get_request_block_hasher(block_size, sha256)
158
159
160
161
162
163
    sampling_params = SamplingParams(
        ignore_eos=False,
        max_tokens=max_tokens,
        stop_token_ids=stop_token_ids,
        prompt_logprobs=prompt_logprobs,
    )
164
165
    requests = []
    for i in range(num_requests):
166
        mm_features = []
167
168
        if mm_positions is not None:
            mm_position = mm_positions[i]
169
170
171
172
173
174
175
176
            for j, position in enumerate(mm_position):
                # Dummy hash for each mm item should be unique
                # since encoder cache tracks entries by hash
                identifier = f"hash{i}_{j}"
                mm_feature = MultiModalFeatureSpec(
                    data=MultiModalKwargsItem.dummy("dummy_m"),
                    mm_position=position,
                    identifier=identifier,
177
178
                    modality="image",
                )
179
180
                mm_features.append(mm_feature)

181
        prompt_token_ids = [0] * num_tokens if same_prompt else [i] * num_tokens
182
183
184
185
186
        request = Request(
            request_id=f"{i}",
            prompt_token_ids=prompt_token_ids,
            sampling_params=sampling_params,
            pooling_params=None,
187
            mm_features=mm_features if mm_features else None,
188
            eos_token_id=EOS_TOKEN_ID,
189
            block_hasher=block_hasher,
190
191
192
        )
        requests.append(request)
    return requests