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

4
import time
5
from contextlib import contextmanager
6
from typing import Dict, List, Optional, Sequence, Tuple
7
8
9

import torch

10
from vllm.model_executor.layers.sampler import SamplerOutput
11
from vllm.platforms import current_platform
12
from vllm.sequence import (CompletionSequenceGroupOutput, Logprob,
13
14
                           PromptLogprobs, SequenceGroupMetadata,
                           SequenceOutput)
15
16
17
18

SeqId = int


19
20
21
22
23
24
25
26
def get_all_num_logprobs(
        seq_group_metadata_list: List[SequenceGroupMetadata]) -> List[int]:
    """Given a list of SequenceGroupMetadata, create a list of all num_logprobs.

    If the sampling params do not call for any logprobs, return 0 for that
    sequence.
    """

27
    all_num_logprobs: List[int] = []
28
29
    for seq_group_metadata in seq_group_metadata_list:
        num_logprobs = seq_group_metadata.sampling_params.logprobs
30
        if num_logprobs is None:
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
            num_logprobs = 0
        all_num_logprobs.append(num_logprobs)

    return all_num_logprobs


def get_sampled_token_logprobs(
        # shape [num_steps, batch_size, vocab_size]
        logprob_tensor: torch.Tensor,
        sampled_token_ids: torch.Tensor,  # shape [num_steps, batch_size]
) -> Tuple[torch.Tensor, torch.Tensor]:
    """Get the logprobs for the sampled tokens. Returns the ranks and logprobs.
    """
    num_steps, batch_size, vocab_size = logprob_tensor.shape

46
47
48
49
50
    selected_logprobs = logprob_tensor[
        torch.arange(num_steps).unsqueeze(1),
        torch.arange(batch_size),
        sampled_token_ids,
    ]
51
52
    expanded_selected_logprobs = selected_logprobs.unsqueeze(-1).expand(
        -1, -1, vocab_size)
53
54
    sampled_token_ids_ranks = (logprob_tensor
                               > expanded_selected_logprobs).sum(-1).add_(1)
55
56
57
58

    return sampled_token_ids_ranks, selected_logprobs


59
def create_logprobs_output(
60
61
62
    token_id: int,
    token_id_logprob_rank: int,
    token_id_logprob: float,
63
64
    topk_token_ids: List[Optional[int]],
    topk_logprobs: List[Optional[float]],
65
66
) -> Dict[int, Logprob]:
    """Create a Logprob Dict for a token given the sampling results.
67
68
69
70
71

    Args:
        token_id (int): The sampled token for the sequence.
        token_id_logprob_rank (int): The logprob rank of the sampled token.
        token_id_logprob (float): The logprob value of the sampled token.
72
73
        topk_token_ids (List[Optional[int]]): The list of top-k token ids.
        topk_logprobs (List[Optional[float]]): The list of top-k logprobs.
74
75
76
    """
    # vLLM logprobs always include the sampled token. In addition, the user may
    # request topk-logprobs (where top-k varies per user up to max_logprobs).
77
    logprobs: Dict[int, Logprob] = {
78
79
80
81
82
83
        token_id: Logprob(
            logprob=token_id_logprob,
            rank=token_id_logprob_rank,
        ),
    }
    logprobs.update({
84
85
86
        topk_token_id: Logprob(
            logprob=topk_logprob if topk_logprob is not None else 0.0,
            rank=topk_index + 1,
87
        )
88
89
90
        for topk_index, (topk_token_id, topk_logprob) \
            in enumerate(zip(topk_token_ids, topk_logprobs)) \
        if topk_token_id is not None
91
92
    })

93
94
95
96
    return logprobs


def create_sequence_group_output(
97
98
99
100
101
102
103
104
        token_id: int,
        token_id_logprob_rank: int,
        token_id_logprob: float,
        seq_id: SeqId,
        topk_token_ids: List[Optional[int]],
        topk_logprobs: List[Optional[float]],
        prompt_logprobs: Optional[PromptLogprobs] = None,
        step_index: Optional[int] = 0) -> CompletionSequenceGroupOutput:
105
106
107
108
109
110
111
112
113
    """Create a SequenceGroupOutput given the sampling results.

    Args:
        token_id (int): The sampled token for the sequence.
        token_id_logprob_rank (int): The logprob rank of the sampled token.
        token_id_logprob (float): The logprob value of the sampled token.
        seq_id (int): The sequence id.
        topk_token_ids (List[Optional[int]]): The list of top-k token ids.
        topk_logprobs (List[Optional[float]]): The list of top-k logprobs.
114
        step_index: (Optional[int]): The index of the speculative token.
115
116
117
118
119
120
121
122
123
124
    """

    logprobs = create_logprobs_output(
        token_id,
        token_id_logprob_rank,
        token_id_logprob,
        topk_token_ids,
        topk_logprobs,
    )

125
126
127
128
129
130
131
    return CompletionSequenceGroupOutput(samples=[
        SequenceOutput(parent_seq_id=seq_id,
                       output_token=token_id,
                       logprobs=logprobs)
    ],
                                         prompt_logprobs=prompt_logprobs,
                                         step_index=step_index)
132
133


134
135
def split_batch_by_proposal_len(
    seq_group_metadata_list: List[SequenceGroupMetadata],
136
137
138
    proposal_lens: List[int],
) -> Tuple[Tuple[List[SequenceGroupMetadata], List[int]], Tuple[
        List[SequenceGroupMetadata], List[int]]]:
139
140
141
142
143
    """Utility function that splits a batch based on whether the proposal len is
    zero or not. We should remove this once vLLM supports per-sequence proposal
    lens in a batch.
    """

144
145
146
147
148
149
150
151
    nonzero_lists: Tuple[List[SequenceGroupMetadata], List[int]] = ([], [])
    zero_lists: Tuple[List[SequenceGroupMetadata], List[int]] = ([], [])
    for i, (seq_group, proposal_len) in enumerate(
            zip(seq_group_metadata_list, proposal_lens)):
        seq_groups, indices = nonzero_lists if proposal_len else zero_lists
        seq_groups.append(seq_group)
        indices.append(i)
    return nonzero_lists, zero_lists
152
153
154


def sampler_output_to_torch(
155
    sampler_output_list: Sequence[SamplerOutput], sampler_transposed: bool
156
157
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor, Optional[torch.Tensor], 
           Optional[torch.Tensor], Optional[torch.Tensor]]:
158
159
    """Utility function which converts a list of SamplerOutput to tensors.

160
161
162
        sampler_transposed here is used as the indicator for whether
        we need do additional tensor transpose logic here.

163
164
165
166
167
168
169
170
171
        Returns:
            sampled_token_ids: torch.Tensor
                shape: [batch_size, len(sampler_output_list)]

            sampled_token_probs: torch.Tensor
                shape: [batch_size, len(sampler_output_list), vocab_size]
        """

    # shape: [batch_size, num_sampler_output, vocab_size]
172
173
174
175
176
177
178
179
180
181
    sampled_token_probs = None
    if sampler_output_list[0].sampled_token_probs is not None:
        sampled_token_probs = torch.stack(
            [
                sampler_output.sampled_token_probs
                for sampler_output in sampler_output_list
            ],
            dim=0,
        )
    
182
    # shape: [batch_size, num_sampler_output, vocab_size]
183
184
185
186
187
188
    sampled_token_logprobs = None
    if sampler_output_list[0].logprobs is not None:
        sampled_token_logprobs = torch.stack(
            [sampler_output.logprobs for sampler_output in sampler_output_list],
            dim=0,
        )
189

190
191
192
193
194
195
196
    # shape: [batch_size, num_sampler_output]
    sampled_token_ids = torch.stack(
        [
            sampler_output.sampled_token_ids.flatten()
            for sampler_output in sampler_output_list
        ],
        dim=0,
197
    )
198

199
    if sampler_transposed:
200
201
        sampled_token_probs = sampled_token_probs.transpose(0, 1)
        sampled_token_logprobs = sampled_token_logprobs.transpose(0, 1)
202
        sampled_token_ids = sampled_token_ids.transpose(0, 1)
203

204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
    if sampler_output_list[0].hidden_states is not None:
        # shape: [batch_size, num_sampler_output, hidden_dim]
        sampled_hidden_states = torch.stack(
            [
                sampler_output.hidden_states
                for sampler_output in sampler_output_list
            ],
            dim=0,
        )

        if sampler_transposed:
            sampled_hidden_states = sampled_hidden_states.transpose(0, 1)
    else:
        sampled_hidden_states = None

219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
    sampled_cart_candidates = None
    if sampler_output_list[0].cart_candidates is not None:
        sampled_cart_candidates = torch.cat(
            [
                sampler_output.cart_candidates
                for sampler_output in sampler_output_list
            ],
            dim=0,
        )
        if sampler_transposed:
            sampled_cart_candidates = sampled_cart_candidates.transpose(0, 1)

    sampled_tree_attn_masks = None
    if sampler_output_list[0].tree_attn_masks is not None:
        sampled_tree_attn_masks = torch.stack(
            [
                sampler_output.tree_attn_masks
                for sampler_output in sampler_output_list
            ],
            dim=0,
        )
        if sampler_transposed:
            sampled_tree_attn_masks = sampled_tree_attn_masks.transpose(0, 1)

243
    return (sampled_token_ids, sampled_token_probs, sampled_token_logprobs,
244
245
            sampled_hidden_states, sampled_cart_candidates, sampled_tree_attn_masks)

246
247


248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
def maybe_mock_device_tensors(sampler_output: SamplerOutput, batch_size: int,
                              vocab_size: int, device: str) -> None:
    """Helper method which mocks out the GPU tensors in SamplerOutput with dummy
    values. This will be removed in PR 7/9.
    https://docs.google.com/document/d/1rE4pr3IdspRw97XbImY4fS9IWYuJJ3HGtL7AdIKGrw8/edit#heading=h.qijw1sdidrer
    """
    values = [
        sampler_output.sampled_token_probs, sampler_output.sampled_token_ids
    ]
    assert all(v is None for v in values) or not any(v is None for v in values)
    if not any(v is None for v in values):
        # Do nothing if the tensors are already created (usually in unit tests).
        return

    # Softmax to ensure valid probs.
    sampler_output.sampled_token_probs = torch.nn.functional.softmax(
        torch.rand(batch_size, vocab_size, dtype=torch.float32, device=device),
        dim=-1)

    sampler_output.sampled_token_ids = torch.randint(low=10,
                                                     high=100,
                                                     size=(batch_size, ),
                                                     dtype=torch.long,
                                                     device=device)


274
275
276
277
278
279
280
281
282
283
284
285
@contextmanager
def nvtx_range(msg, *args, **kwargs):
    """ 
    Context manager / decorator that pushes an NVTX range at the beginning
    of its scope, and pops it at the end. If extra arguments are given,
    they are passed as arguments to msg.format().

    If running with cuda graphs, you must enable nsys cuda graph profiling.

    Arguments:
        msg (string): message to associate with the range
    """
286
287
288
289
290
291
292
    if current_platform.is_cuda_alike():
        torch.cuda.nvtx.range_push(msg.format(*args, **kwargs))
        try:
            yield
        finally:
            torch.cuda.nvtx.range_pop()
    else:
293
        yield
294
295
296
297
298
299
300
301
302
303
304
305
306
307


class Timer:
    """Basic timer context manager for measuring CPU time.
    """

    def __enter__(self):
        self.start_time = time.time()
        return self

    def __exit__(self, exc_type, exc_value, traceback):
        self.end_time = time.time()
        self.elapsed_time_s = self.end_time - self.start_time
        self.elapsed_time_ms = self.elapsed_time_s * 1000