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

4
5
6
7
import numpy as np
import pytest
import torch

8
from tests.v1.sample.utils import create_allowed_token_ids
9
from vllm.platforms import current_platform
10
11
from vllm.utils import is_pin_memory_available
from vllm.utils.torch_utils import make_tensor_with_pad
12
from vllm.v1.sample.logits_processor import LogitsProcessors
13
14
15
from vllm.v1.sample.metadata import SamplingMetadata
from vllm.v1.sample.sampler import Sampler

16
17
PIN_MEMORY_AVAILABLE = is_pin_memory_available()
MAX_NUM_REQS = 256
18
19
20
VOCAB_SIZE = 1024
NUM_OUTPUT_TOKENS = 20
CUDA_DEVICES = [
21
22
    f"{current_platform.device_type}:{i}"
    for i in range(1 if current_platform.device_count() == 1 else 2)
23
24
25
26
27
28
29
30
31
]
MAX_NUM_PROMPT_TOKENS = 64


def _create_fake_logits(batch_size: int, vocab_size: int) -> torch.Tensor:
    fake_logits = torch.full((batch_size, vocab_size), 1e-2, dtype=torch.float)
    return fake_logits


32
33
34
35
36
37
def _create_penalty_tensor(
    batch_size: int, penalty_value: float, device: torch.device
) -> torch.Tensor:
    return torch.full(
        (batch_size,), fill_value=penalty_value, dtype=torch.float, device=device
    )
38
39
40


def _create_prompt_tokens_tensor(
41
    prompt_token_ids: list[list[int]],
42
43
44
45
46
47
48
49
50
51
52
53
    vocab_size: int,
    device: torch.device,
) -> torch.Tensor:
    return make_tensor_with_pad(
        prompt_token_ids,
        pad=vocab_size,
        device=device,
        dtype=torch.int64,
        pin_memory=False,
    )


54
def _create_bad_words_token_ids(
55
56
57
58
    batch_size: int,
    vocab_size: int,
    bad_words_lengths: tuple[int, ...],
) -> dict[int, list[list[int]]]:
59
60
61
62
    bad_words_token_ids = {}
    for batch_idx in range(batch_size):
        token_ids_single_batch = []
        for bad_words_length in bad_words_lengths:
63
64
65
            token_ids = np.random.choice(
                vocab_size, size=bad_words_length, replace=True
            ).tolist()
66
67
68
69
70
71
72
73
74
            token_ids_single_batch.append(token_ids)
        bad_words_token_ids[batch_idx] = token_ids_single_batch
    if batch_size >= 2:
        # Test no bad_words for some batch
        no_bad_words_batch_idx = np.random.choice(batch_size)
        bad_words_token_ids.pop(no_bad_words_batch_idx, None)
    return bad_words_token_ids


75
76
77
# Returns all last tokens of bad word sequences that share the same prefix
# as `given_prefix` (excluding the last token).
def _collect_suffixes_with_same_prefix(
78
79
    given_prefix: list[int], bad_words_token_ids: list[list[int]]
) -> list[int]:
80
81
82
83
    return [bwt[-1] for bwt in bad_words_token_ids if bwt[:-1] == given_prefix]


# generate a valid token id that is not in bad_words_token_ids
84
85
86
def _generate_valid_token_id(
    bad_words_token_ids: list[list[int]], vocab_size: int
) -> int:
87
88
89
90
    forbidden_start_tokens = set()
    for bad_word in bad_words_token_ids:
        forbidden_start_tokens.add(bad_word[0])
    # Get a safe token that's not in forbidden starts
91
    safe_token_candidates = list(set(range(vocab_size)) - forbidden_start_tokens)
92
93
94
95
    # Pick a random safe token
    return np.random.choice(safe_token_candidates)


96
def _update_output_token_ids_for_bad_words(
97
98
    metadata: SamplingMetadata, vocab_size: int
) -> dict[int, list[int]]:
99
100
101
102
103
104
105
106
107
108
109
110
    bad_words_last_tokens = {}
    for batch_idx, bad_words_token_ids in metadata.bad_words_token_ids.items():
        output_token_ids = metadata.output_token_ids[batch_idx]
        bad_words_last_token: list[int] = []
        for i, bad_word_token_ids in enumerate(bad_words_token_ids):
            if len(bad_word_token_ids) == 1:
                # Single token id always affects logits
                bad_words_last_token.append(bad_word_token_ids[0])
            else:
                prefix_length = len(bad_word_token_ids) - 1
                has_bad_words = np.random.choice([True, False])
                if has_bad_words:
111
112
113
114
115
                    prefix = bad_word_token_ids[:-1]
                    output_token_ids[-prefix_length:] = prefix
                    # Collect all last tokens from other bad words
                    # that share this prefix
                    bad_words_last_token.extend(
116
117
                        _collect_suffixes_with_same_prefix(prefix, bad_words_token_ids)
                    )
118
119
                    break  # Maximum one update to output_token_ids
                else:  # Make sure no accidental match to bad words
120
                    output_token_ids[-1] = _generate_valid_token_id(
121
122
                        bad_words_token_ids, vocab_size
                    )
123
124
125
126
        bad_words_last_tokens[batch_idx] = bad_words_last_token
    return bad_words_last_tokens


127
128
129
130
131
132
def _create_default_sampling_metadata(
    num_output_tokens: int,
    batch_size: int,
    vocab_size: int,
    device: torch.device,
) -> SamplingMetadata:
133
134
    output_token_ids: list[list[int]] = []
    prompt_token_ids: list[list[int]] = []
135
136
    for _ in range(batch_size):
        output_token_ids.append(
137
138
            np.random.randint(0, vocab_size, size=num_output_tokens).tolist()
        )
139
        prompt_token_ids.append(
140
141
142
143
            np.random.randint(
                0, vocab_size, size=np.random.randint(1, MAX_NUM_PROMPT_TOKENS)
            ).tolist()
        )
144
    fake_sampling_metadata = SamplingMetadata(
145
        temperature=torch.full((batch_size,), 0.0),
146
147
        all_greedy=True,
        all_random=False,
148
149
        top_p=None,
        top_k=None,
150
        generators={},
151
        max_num_logprobs=0,
152
153
154
        prompt_token_ids=_create_prompt_tokens_tensor(
            prompt_token_ids, vocab_size, device
        ),
155
        output_token_ids=output_token_ids,
156
        spec_token_ids=[[] for _ in range(batch_size)],
157
158
159
160
        frequency_penalties=_create_penalty_tensor(batch_size, 0.0, device),
        presence_penalties=_create_penalty_tensor(batch_size, 0.0, device),
        repetition_penalties=_create_penalty_tensor(batch_size, 1.0, device),
        no_penalties=True,
161
        allowed_token_ids_mask=None,
162
        bad_words_token_ids={},
163
        logitsprocs=LogitsProcessors(),
164
165
166
167
168
    )
    return fake_sampling_metadata


def _create_weighted_output_token_list(
169
170
    batch_size: int, vocab_size: int
) -> tuple[list[list[int]], list[list[int]]]:
171
    """
172
    Creates an output token list where each token occurs a distinct
173
174
175
176
177
178
179
    number of times.

    For each batch, a random subset of token IDs is selected from the
    vocabulary. The selected tokens are then added to the output token
    list, each with a different frequency.

    Returns:
180
        tuple[list[list[int]], list[list[int]]]:
181
182
            - The first element is the output token list, where each sublist
              corresponds to a batch and contains tokens with weighted
183
184
185
186
187
              frequencies.
            - The second element is a list of distinct token IDs for each
              batch, ordered by their frequency in the corresponding output
              list.
    """
188
189
    output_token_ids: list[list[int]] = []
    sorted_token_ids_in_output: list[list[int]] = []
190
    for _ in range(batch_size):
191
192
193
        distinct_token_ids = np.random.choice(
            vocab_size, size=np.random.randint(1, 10), replace=False
        ).tolist()
194
195
196
        sorted_token_ids_in_output.append(distinct_token_ids)
        output_token_ids_for_batch = []
        for index, token_id in enumerate(distinct_token_ids):
197
            output_token_ids_for_batch.extend([token_id for _ in range(index + 1)])
198
        output_token_ids.append(output_token_ids_for_batch)
199
    return output_token_ids, sorted_token_ids_in_output
200
201
202
203
204


@pytest.mark.parametrize("device", CUDA_DEVICES)
@pytest.mark.parametrize("batch_size", [1, 2, 32])
@pytest.mark.parametrize("presence_penalty", [-2.0, 2.0])
205
206
207
def test_sampler_presence_penalty(
    device: str, batch_size: int, presence_penalty: float
):
208
209
210
211
212
213
214
215
216
    """
    Test to verify that if presence penalty is enabled then tokens
    are penalized as per their presence in the existing output.
    """
    torch.set_default_device(device)
    # Create fake logits where each token is assigned the same
    # logit value.
    fake_logits = _create_fake_logits(batch_size, VOCAB_SIZE)
    sampling_metadata = _create_default_sampling_metadata(
217
218
        NUM_OUTPUT_TOKENS, batch_size, VOCAB_SIZE, torch.device(device)
    )
219
220
    output_token_ids = sampling_metadata.output_token_ids
    sampling_metadata.presence_penalties = _create_penalty_tensor(
221
222
        batch_size, presence_penalty, torch.device(device)
    )
223
224
    sampling_metadata.no_penalties = False
    sampler = Sampler()
225
226
227
    logits = sampler.apply_penalties(
        fake_logits, sampling_metadata, sampling_metadata.output_token_ids
    )
228
    logits = logits.cpu()
229
    for batch_idx in range(batch_size):
230
231
232
233
234
        # Since all tokens initially have the same logits, the non-penalized
        # token ID will be the one with the highest logit value, while the
        # penalized token ID will be the one with the lowest logit value.
        non_penalized_token_id = logits[batch_idx].argmax().item()
        penalized_token_id = logits[batch_idx].argmin().item()
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
        if presence_penalty > 0:
            # If `presence_penalty` is set to a value greater than 0, it
            # indicates a preference for new tokens over those already
            # present in the output.
            # Verify that the penalized token ID exists in the output, while the
            # non-penalized token ID does not.
            assert penalized_token_id in output_token_ids[batch_idx]
            assert non_penalized_token_id not in output_token_ids[batch_idx]
        elif presence_penalty < 0:
            # If `presence_penalty` is set to a value less than 0, it indicates
            # a preference for existing tokens over new ones. Verify that the
            # non-penalized token ID exists in the output, while the penalized
            # token ID does not.
            assert non_penalized_token_id in output_token_ids[batch_idx]
            assert penalized_token_id not in output_token_ids[batch_idx]


@pytest.mark.parametrize("device", CUDA_DEVICES)
@pytest.mark.parametrize("batch_size", [1, 2, 32])
@pytest.mark.parametrize("frequency_penalty", [-2.0, 2.0])
255
256
257
def test_sampler_frequency_penalty(
    device: str, batch_size: int, frequency_penalty: float
):
258
259
260
261
262
263
264
265
266
    """
    Test to verify that if frequency penalty is enabled then tokens are
    penalized as per their frequency of occurrence.
    """
    torch.set_default_device(device)
    # Create fake logits where each token is assigned the same
    # logit value.
    fake_logits = _create_fake_logits(batch_size, VOCAB_SIZE)
    sampling_metadata = _create_default_sampling_metadata(
267
268
        NUM_OUTPUT_TOKENS, batch_size, VOCAB_SIZE, torch.device(device)
    )
269
    sampling_metadata.frequency_penalties = _create_penalty_tensor(
270
271
272
273
274
275
        batch_size, frequency_penalty, torch.device(device)
    )
    output_token_ids, sorted_token_ids_in_output = _create_weighted_output_token_list(
        batch_size,
        VOCAB_SIZE,
    )
276
277
278
    sampling_metadata.output_token_ids = output_token_ids
    sampling_metadata.no_penalties = False
    sampler = Sampler()
279
280
281
    logits = sampler.apply_penalties(
        fake_logits, sampling_metadata, sampling_metadata.output_token_ids
    )
282
    logits = logits.cpu()
283
    for batch_idx in range(batch_size):
284
285
        non_penalized_token_id = logits[batch_idx].argmax().item()
        penalized_token_id = logits[batch_idx].argmin().item()
286
        distinct_sorted_token_ids_in_output = sorted_token_ids_in_output[batch_idx]
287
        most_frequent_token_id = distinct_sorted_token_ids_in_output[
288
289
            len(distinct_sorted_token_ids_in_output) - 1
        ]
290
291
292
293
294
295
        if frequency_penalty > 0:
            # If `frequency_penalty` is set to > 0, it indicates
            # a preference for new tokens over existing ones. Verify that the
            # non-penalized token ID is not present in the output, while the
            # most penalized token is the one that occurs most frequently in
            # the output.
296
            assert non_penalized_token_id not in distinct_sorted_token_ids_in_output
297
298
299
300
301
302
303
304
            assert penalized_token_id == most_frequent_token_id
        elif frequency_penalty < 0:
            # If `frequency_penalty` is set to < 0, it indicates
            # a preference for existing tokens over new ones. Verify that the
            # non-penalized token ID is the one that occurs most frequently
            # in the output, while the penalized token ID is one that has not
            # yet appeared.
            assert non_penalized_token_id == most_frequent_token_id
305
            assert penalized_token_id not in distinct_sorted_token_ids_in_output
306
307
308
309
310


@pytest.mark.parametrize("device", CUDA_DEVICES)
@pytest.mark.parametrize("batch_size", [1, 2, 32])
@pytest.mark.parametrize("repetition_penalty", [0.1, 1.9])
311
312
313
def test_sampler_repetition_penalty(
    device: str, batch_size: int, repetition_penalty: float
):
314
    """
315
    Test to verify that when the repetition penalty is enabled, tokens
316
317
318
319
320
321
322
323
    are penalized based on their presence in the prompt or the existing
    output.
    """
    torch.set_default_device(device)
    # Create fake logits where each token is assigned the same
    # logit value.
    fake_logits = _create_fake_logits(batch_size, VOCAB_SIZE)
    sampling_metadata = _create_default_sampling_metadata(
324
325
        NUM_OUTPUT_TOKENS, batch_size, VOCAB_SIZE, torch.device(device)
    )
326
    sampling_metadata.repetition_penalties = _create_penalty_tensor(
327
328
        batch_size, repetition_penalty, torch.device(device)
    )
329
330
    sampling_metadata.no_penalties = False
    sampler = Sampler()
331
332
333
    logits = sampler.apply_penalties(
        fake_logits, sampling_metadata, sampling_metadata.output_token_ids
    )
334
    logits = logits.cpu()
335
    for batch_idx in range(batch_size):
336
337
        non_penalized_token_id = logits[batch_idx].argmax().item()
        penalized_token_id = logits[batch_idx].argmin().item()
338
        prompt_tokens = sampling_metadata.prompt_token_ids[batch_idx][:].tolist()
339
340
341
342
343
        output_tokens = sampling_metadata.output_token_ids[batch_idx]
        if repetition_penalty > 1.0:
            # If `repetition_penalty` > 1.0, verify that the non-penalized
            # token ID has not been seen before, while the penalized token ID
            # exists either in the prompt or the output.
344
345
346
347
348
349
350
351
            assert (
                non_penalized_token_id not in prompt_tokens
                and non_penalized_token_id not in output_tokens
            )
            assert (
                penalized_token_id in prompt_tokens
                or penalized_token_id in output_tokens
            )
352
353
354
355
        elif repetition_penalty < 1.0:
            # If `repetition_penalty` < 1.0, verify that the penalized
            # token ID has not been seen before, while the non-penalized
            # token ID exists either in the prompt or the output.
356
357
358
359
360
361
362
363
            assert (
                penalized_token_id not in prompt_tokens
                and penalized_token_id not in output_tokens
            )
            assert (
                non_penalized_token_id in prompt_tokens
                or non_penalized_token_id in output_tokens
            )
364
365


366
367
368
@pytest.mark.parametrize("device", CUDA_DEVICES)
@pytest.mark.parametrize("batch_size", [1, 2, 32])
@pytest.mark.parametrize("num_allowed_token_ids", [0, 1, 2])
369
370
371
def test_sampler_allowed_token_ids(
    device: str, batch_size: int, num_allowed_token_ids: int
):
372
373
374
375
376
377
378
379
380
381
    """
    Test to verify that when the repetition penalty is enabled, tokens
    are penalized based on their presence in the prompt or the existing
    output.
    """
    torch.set_default_device(device)
    # Create fake logits where each token is assigned the same
    # logit value.
    fake_logits = _create_fake_logits(batch_size, VOCAB_SIZE)
    sampling_metadata = _create_default_sampling_metadata(
382
383
        NUM_OUTPUT_TOKENS, batch_size, VOCAB_SIZE, torch.device(device)
    )
384
    mask = create_allowed_token_ids(
385
386
387
388
389
390
391
        batch_size=batch_size,
        vocab_size=VOCAB_SIZE,
        num_allowed_token_ids=num_allowed_token_ids,
        device=device,
    )
    sampling_metadata.allowed_token_ids_mask = mask
    sampler = Sampler()
392
393
394
    logits = sampler.apply_logits_processors(
        fake_logits, sampling_metadata, predict_bonus_token=False
    )
395
396
397
398
399
400
401
402
403
404
    logits = logits.cpu()
    for batch_idx in range(batch_size):
        logits_for_req = logits[batch_idx]
        if batch_idx % 2 == 1:
            assert torch.all(logits_for_req != -float("inf"))
            continue
        for token_id in range(VOCAB_SIZE):
            start = min(batch_idx, VOCAB_SIZE - 1)
            end = min(batch_idx + num_allowed_token_ids, VOCAB_SIZE - 1)
            if token_id >= start and token_id < end:
405
406
407
                assert logits_for_req[token_id] == -float("inf"), (
                    f"{batch_idx}, {token_id}"
                )
408
409
            else:
                assert logits_for_req[token_id] != -float("inf")
410
411
412
413


@pytest.mark.parametrize("device", CUDA_DEVICES)
@pytest.mark.parametrize("batch_size", [1, 2, 32])
414
415
416
417
@pytest.mark.parametrize("bad_words_lengths", [(1,), (1, 3), (2, 2)])
def test_sampler_bad_words(
    device: str, batch_size: int, bad_words_lengths: tuple[int, ...]
):
418
419
420
421
422
423
424
425
426
    """
    Test to verify that when the bad words restriction is present, tokens
    are penalized based on their match with the bad words.
    """
    torch.set_default_device(device)
    # Create fake logits where each token is assigned the same
    # logit value.
    fake_logits = _create_fake_logits(batch_size, VOCAB_SIZE)
    sampling_metadata = _create_default_sampling_metadata(
427
428
        NUM_OUTPUT_TOKENS, batch_size, VOCAB_SIZE, torch.device(device)
    )
429
    sampling_metadata.bad_words_token_ids = _create_bad_words_token_ids(
430
431
        batch_size, VOCAB_SIZE, bad_words_lengths
    )
432
    bad_words_last_tokens = _update_output_token_ids_for_bad_words(
433
434
        sampling_metadata, VOCAB_SIZE
    )
435
    sampler = Sampler()
436
437
438
    logits = sampler.apply_logits_processors(
        fake_logits, sampling_metadata, predict_bonus_token=False
    )
439
440
441
442
    logits = logits.cpu()
    for batch_idx in range(batch_size):
        logits_for_req = logits[batch_idx]
        for token_id in range(VOCAB_SIZE):
443
444
445
446
            if (
                batch_idx in bad_words_last_tokens
                and token_id in bad_words_last_tokens[batch_idx]
            ):
447
448
449
                assert logits_for_req[token_id] == -float("inf")
            else:
                assert logits_for_req[token_id] != -float("inf")