sampler.py 8.27 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
4
5
6
7
"""A layer that samples the next tokens from the model's outputs."""

import torch
import torch.nn as nn

8
from vllm.utils import is_pin_memory_available
9
from vllm.v1.outputs import LogprobsTensors, SamplerOutput
10
from vllm.v1.sample.metadata import SamplingMetadata
11
from vllm.v1.sample.ops.bad_words import apply_bad_words
12
from vllm.v1.sample.ops.logprobs import batched_count_greater_than
13
from vllm.v1.sample.ops.penalties import apply_all_penalties
14
from vllm.v1.sample.ops.topk_topp_sampler import TopKTopPSampler
15
16
17
18
19
20

_SAMPLING_EPS = 1e-5


class Sampler(nn.Module):

21
22
23
    def __init__(self):
        super().__init__()
        self.topk_topp_sampler = TopKTopPSampler()
Yu Guo's avatar
Yu Guo committed
24
        self.pin_memory = is_pin_memory_available()
25

26
27
28
29
30
    def forward(
        self,
        logits: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> SamplerOutput:
31
32
33
34
35
36
37
38
39
        # NOTE(woosuk): Use the original logits (before any penalties or
        # temperature scaling) for the top-k logprobs.
        # This is different from the V0 sampler, which uses the logits that
        # is used for sampling (after penalties and temperature scaling).
        # TODO(rob): provide option for logprobs post sampling.
        # See https://vllm-dev.slack.com/archives/C07UUL8E61Z/p1735907856007919 # noqa: E501
        num_logprobs = sampling_metadata.max_num_logprobs
        if num_logprobs is not None:
            raw_logprobs = self.compute_logprobs(logits)
40

41
42
        # Use float32 for the logits.
        logits = logits.to(torch.float32)
43
44
        # Apply allowed token ids.
        logits = self.apply_allowed_token_ids(logits, sampling_metadata)
45
46
        # Apply bad words exclusion.
        logits = self.apply_bad_words(logits, sampling_metadata)
47
48
49
50
51

        # Apply logits processors which can impact greedy sampling
        for processor in (sampling_metadata.logitsprocs.non_argmax_invariant):
            logits = processor.apply(logits)

52
53
54
55
        # Apply penalties (e.g., min_tokens, freq_penalties).
        logits = self.apply_penalties(logits, sampling_metadata)
        # Sample the next token.
        sampled = self.sample(logits, sampling_metadata)
56
57
58
59
60
        # Convert sampled token ids to int64 (long) type to ensure compatibility
        # with subsequent operations that may use these values as indices.
        # This conversion is necessary because FlashInfer sampling operations
        # return int32 (while PyTorch argmax and topk return int64).
        sampled = sampled.long()
61
62
63
64
65
66

        # Gather the logprobs of the topk and sampled token (if requested).
        # Get logprobs and rank tensors (if requested)
        logprobs_tensors = None if num_logprobs is None else \
            self.gather_logprobs(raw_logprobs, num_logprobs, token_ids=sampled)

67
68
69
        # Use int32 to reduce the tensor size.
        sampled = sampled.to(torch.int32)

70
        # These are GPU tensors.
71
        sampler_output = SamplerOutput(
72
73
74
75
            # The sampled tokens are expanded to 2D tensor with shape
            # [num_requests, 1], where each row represents one generated
            # token per request.
            sampled_token_ids=sampled.unsqueeze(-1),
76
            logprobs_tensors=logprobs_tensors,
77
78
79
80
81
82
83
84
85
        )
        return sampler_output

    def apply_temperature(
        self,
        logits: torch.Tensor,
        temp: torch.Tensor,
    ) -> torch.Tensor:
        # Use in-place division to avoid creating a new tensor.
86
        return logits.div_(temp.unsqueeze(dim=1))
87

88
89
90
91
    def greedy_sample(self, logits: torch.Tensor) -> torch.Tensor:
        return logits.argmax(dim=-1).view(-1)

    def sample(
92
93
94
95
        self,
        logits: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> torch.Tensor:
96
97
98
99
100
101
        """Sample logits based on sampling metadata.

        The various logits processing functions called in this method
        may update the logits tensor in-place.
        """

102
103
        assert not (sampling_metadata.all_greedy
                    and sampling_metadata.all_random)
104
105
106
107
108
109
        if sampling_metadata.all_random:
            greedy_sampled = None
        else:
            greedy_sampled = self.greedy_sample(logits)
            if sampling_metadata.all_greedy:
                return greedy_sampled
110

111
112
        assert sampling_metadata.temperature is not None

113
114
115
        # Apply temperature.
        logits = self.apply_temperature(logits, sampling_metadata.temperature)

116
117
118
119
        # Apply logits processors that only apply to random sampling
        # (argmax invariant)
        for processor in sampling_metadata.logitsprocs.argmax_invariant:
            logits = processor.apply(logits)
120
121

        # Apply top_k and/or top_p.
122
        random_sampled = self.topk_topp_sampler(
123
            logits,
124
            sampling_metadata.generators,
125
126
127
            sampling_metadata.top_k,
            sampling_metadata.top_p,
        )
128

129
        if greedy_sampled is None:
130
            return random_sampled
131
132
133
134
135

        sampled = torch.where(
            sampling_metadata.temperature < _SAMPLING_EPS,
            greedy_sampled,
            random_sampled,
136
            out=greedy_sampled,  # Reuse tensor
137
138
139
        )
        return sampled

140
141
142
143
    def compute_logprobs(self, logits: torch.Tensor) -> torch.Tensor:
        return logits.log_softmax(dim=-1, dtype=torch.float32)

    def gather_logprobs(
144
        self,
145
146
147
148
149
150
151
152
        logprobs: torch.Tensor,
        num_logprobs: int,
        token_ids: torch.Tensor,
    ) -> LogprobsTensors:
        """
        Gather logprobs for topk and sampled/prompt token.

        Args:
Chen1022's avatar
Chen1022 committed
153
          logprobs: (num tokens) x (vocab) tensor
154
155
156
157
158
159
          num_logprobs: minimum number of logprobs to
                        retain per token
          token_ids: prompt tokens (if prompt logprobs)
                     or sampled tokens (if sampled
                     logprobs); 1D token ID tensor
                     with (num tokens) elements
160
                     Must be int64.
161
162
163
164
165
166

        Returns:
          Top-k int indices tensor, (num tokens) x (num_logprobs + 1)
          Top-k float logprobs tensor, (num tokens) x (num_logprobs + 1)
          Sampled token rank tensor, (num tokens)
        """
167
        assert token_ids.dtype == torch.int64
168
169
170
171
172
173
        # Find the topK values.
        topk_logprobs, topk_indices = torch.topk(logprobs,
                                                 num_logprobs,
                                                 dim=-1)

        # Get with the logprob of the prompt or sampled token.
174
        token_ids = token_ids.unsqueeze(-1)
175
176
177
        token_logprobs = logprobs.gather(-1, token_ids)

        # Compute the ranks of the actual token.
178
        token_ranks = batched_count_greater_than(logprobs, token_logprobs)
179
180
181
182
183

        # Concatenate together with the topk.
        indices = torch.cat((token_ids, topk_indices), dim=1)
        logprobs = torch.cat((token_logprobs, topk_logprobs), dim=1)

184
        # Use int32 to reduce the tensor size.
185
186
187
        indices = indices.to(torch.int32)

        return LogprobsTensors(indices, logprobs, token_ranks)
188

189
190
191
192
193
194
195
    def apply_penalties(
        self,
        logits: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> torch.Tensor:
        if not sampling_metadata.no_penalties:
            assert sampling_metadata.prompt_token_ids is not None
Woosuk Kwon's avatar
Woosuk Kwon committed
196
            logits = apply_all_penalties(
197
198
                logits,
                sampling_metadata.prompt_token_ids,
Woosuk Kwon's avatar
Woosuk Kwon committed
199
200
201
                sampling_metadata.presence_penalties,
                sampling_metadata.frequency_penalties,
                sampling_metadata.repetition_penalties,
202
203
                sampling_metadata.output_token_ids,
            )
204
        return logits
205

206
207
208
209
210
211
212
213
214
    def apply_allowed_token_ids(
        self,
        logits: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> torch.Tensor:
        if sampling_metadata.allowed_token_ids_mask is not None:
            logits.masked_fill_(sampling_metadata.allowed_token_ids_mask,
                                float("-inf"))
        return logits
215
216
217
218
219
220
221
222
223
224
225
226
227

    def apply_bad_words(
        self,
        logits: torch.Tensor,
        sampling_metadata: SamplingMetadata,
    ) -> torch.Tensor:
        if sampling_metadata.bad_words_token_ids:
            apply_bad_words(
                logits,
                sampling_metadata.bad_words_token_ids,
                sampling_metadata.output_token_ids,
            )
        return logits