scheduler.py 62.1 KB
Newer Older
1
import enum
2
3
import os
import random
4
import time
5
from collections import deque
6
from dataclasses import dataclass, field
7
8
from typing import (Callable, Deque, Dict, Iterable, List, Optional, Set,
                    Tuple, Union)
Woosuk Kwon's avatar
Woosuk Kwon committed
9

10
from vllm.config import CacheConfig, LoRAConfig, SchedulerConfig
11
from vllm.core.interfaces import AllocStatus, BlockSpaceManager
Woosuk Kwon's avatar
Woosuk Kwon committed
12
from vllm.logger import init_logger
13
from vllm.lora.request import LoRARequest
14
from vllm.prompt_adapter.request import PromptAdapterRequest
Woosuk Kwon's avatar
Woosuk Kwon committed
15
from vllm.sequence import (Sequence, SequenceData, SequenceGroup,
16
17
                           SequenceGroupMetadata, SequenceGroupMetadataDelta,
                           SequenceStatus)
18
from vllm.utils import Device, PyObjectCache
Woosuk Kwon's avatar
Woosuk Kwon committed
19

Woosuk Kwon's avatar
Woosuk Kwon committed
20
logger = init_logger(__name__)
21

22
23
24
25
26
27
28
# Test-only. If configured, decode is preempted with
# ARTIFICIAL_PREEMPTION_PROB% probability.
ENABLE_ARTIFICIAL_PREEMPT = bool(
    os.getenv("VLLM_TEST_ENABLE_ARTIFICIAL_PREEMPT", False))  # noqa
ARTIFICIAL_PREEMPTION_PROB = 0.5
ARTIFICIAL_PREEMPTION_MAX_CNT = 500

Woosuk Kwon's avatar
Woosuk Kwon committed
29

30
31
32
33
34
35
36
37
38
39
40
41
42
class PreemptionMode(enum.Enum):
    """Preemption modes.

    1. Swapping: Swap out the blocks of the preempted sequences to CPU memory
    and swap them back in when the sequences are resumed.
    2. Recomputation: Discard the blocks of the preempted sequences and
    recompute them when the sequences are resumed, treating the sequences as
    new prompts.
    """
    SWAP = enum.auto()
    RECOMPUTE = enum.auto()


43
44
@dataclass
class SchedulingBudget:
45
46
47
48
49
50
51
52
53
    """The available slots for scheduling.

    TODO(sang): Right now, the budget is request_id-aware meaning it can ignore
    budget update from the same request_id. It is because in normal scheduling
    path, we update RUNNING num_seqs ahead of time, meaning it could be
    updated more than once when scheduling RUNNING requests. Since this won't
    happen if we only have chunked prefill scheduling, we can remove this
    feature from the API when chunked prefill is enabled by default.
    """
54
55
    token_budget: int
    max_num_seqs: int
56
57
    _request_ids_num_batched_tokens: Set[str] = field(default_factory=set)
    _request_ids_num_curr_seqs: Set[str] = field(default_factory=set)
58
59
    _num_batched_tokens: int = 0
    _num_curr_seqs: int = 0
60
61

    def can_schedule(self, *, num_new_tokens: int, num_new_seqs: int):
62
63
        assert num_new_tokens != 0
        assert num_new_seqs != 0
64
65
66
        return (self.num_batched_tokens + num_new_tokens <= self.token_budget
                and self.num_curr_seqs + num_new_seqs <= self.max_num_seqs)

67
68
69
70
    def remaining_token_budget(self):
        return self.token_budget - self.num_batched_tokens

    def add_num_batched_tokens(self, req_id: str, num_batched_tokens: int):
71
        if req_id in self._request_ids_num_batched_tokens:
72
73
            return

74
        self._request_ids_num_batched_tokens.add(req_id)
75
76
77
78
        self._num_batched_tokens += num_batched_tokens

    def subtract_num_batched_tokens(self, req_id: str,
                                    num_batched_tokens: int):
79
80
        if req_id in self._request_ids_num_batched_tokens:
            self._request_ids_num_batched_tokens.remove(req_id)
81
82
83
            self._num_batched_tokens -= num_batched_tokens

    def add_num_seqs(self, req_id: str, num_curr_seqs: int):
84
        if req_id in self._request_ids_num_curr_seqs:
85
86
            return

87
        self._request_ids_num_curr_seqs.add(req_id)
88
89
90
        self._num_curr_seqs += num_curr_seqs

    def subtract_num_seqs(self, req_id: str, num_curr_seqs: int):
91
92
        if req_id in self._request_ids_num_curr_seqs:
            self._request_ids_num_curr_seqs.remove(req_id)
93
94
95
96
97
98
99
100
101
102
            self._num_curr_seqs -= num_curr_seqs

    @property
    def num_batched_tokens(self):
        return self._num_batched_tokens

    @property
    def num_curr_seqs(self):
        return self._num_curr_seqs

103

104
105
106
107
108
109
110
111
112
113
@dataclass
class ScheduledSequenceGroup:
    # A sequence group that's scheduled.
    seq_group: SequenceGroup
    # The total chunk size (number of tokens) to process for next iteration.
    # 1 for decoding. Same as prompt tokens for prefill, but if prefill is
    # chunked, it can be smaller than that.
    token_chunk_size: int


114
@dataclass
115
class SchedulerOutputs:
116
    """The scheduling decision made from a scheduler."""
117
118
119
120
121
122
    # Scheduled sequence groups.
    scheduled_seq_groups: Iterable[ScheduledSequenceGroup]
    # Number of prefill groups scheduled.
    num_prefill_groups: int
    # Total number of batched tokens.
    num_batched_tokens: int
123
124
125
126
    # Blocks to swap in. List of CPU -> GPU block number.
    blocks_to_swap_in: List[Tuple[int, int]]
    # Blocks to swap out. List of GPU -> CPU block number.
    blocks_to_swap_out: List[Tuple[int, int]]
127
128
    # Blocks to copy. Source to dest block.
    blocks_to_copy: List[Tuple[int, int]]
129
130
131
132
    # Sequence groups that are going to be ignored.
    ignored_seq_groups: List[SequenceGroup]
    # The number of slots for lookahead decoding.
    num_lookahead_slots: int
133
134
    # The number of requests in the running queue
    running_queue_size: int
135
    preempted: int
136
137

    def __post_init__(self):
138
        # Swap in and swap out should never happen at the same time.
139
        assert not (self.blocks_to_swap_in and self.blocks_to_swap_out)
140

141
        self.num_loras: int = len(self.lora_requests)
142
143
144
        if self.num_loras > 0:
            self._sort_by_lora_ids()

145
146
        self.num_prompt_adapters: int = len(self.prompt_adapter_requests)

147
    def is_empty(self) -> bool:
Woosuk Kwon's avatar
Woosuk Kwon committed
148
149
150
        # NOTE: We do not consider the ignored sequence groups.
        return (not self.scheduled_seq_groups and not self.blocks_to_swap_in
                and not self.blocks_to_swap_out and not self.blocks_to_copy)
151

152
    def _sort_by_lora_ids(self):
153
154
155
        self.scheduled_seq_groups = sorted(
            self.scheduled_seq_groups,
            key=lambda g: (g.seq_group.lora_int_id, g.seq_group.request_id))
156
157
158

    @property
    def lora_requests(self) -> Set[LoRARequest]:
159
160
161
162
163
        return {
            g.seq_group.lora_request
            for g in self.scheduled_seq_groups
            if g.seq_group.lora_request is not None
        }
164

165
166
167
168
169
170
171
172
    @property
    def prompt_adapter_requests(self) -> Set[PromptAdapterRequest]:
        return {
            g.seq_group.prompt_adapter_request
            for g in self.scheduled_seq_groups
            if g.seq_group.prompt_adapter_request is not None
        }

173

174
@dataclass
175
176
177
178
179
180
181
class SchedulerRunningOutputs:
    """The requests that are scheduled from a running queue.

    Could contain prefill (prefill that's chunked) or decodes. If there's not
    enough memory, it can be preempted (for recompute) or swapped out.
    """
    # Selected sequences that are running and in a decoding phase.
182
    decode_seq_groups: List[ScheduledSequenceGroup]
183
184
    # Selected sequences that are running and in a prefill phase.
    # I.e., it means the prefill has been chunked.
185
    prefill_seq_groups: List[ScheduledSequenceGroup]
186
187
188
189
190
    # The preempted sequences.
    preempted: List[SequenceGroup]
    # Sequences that are swapped out.
    swapped_out: List[SequenceGroup]
    # The blocks to swap out.
191
    blocks_to_swap_out: List[Tuple[int, int]]
192
    # The blocks to copy.
193
    blocks_to_copy: List[Tuple[int, int]]
194
    # The number of slots for lookahead decoding.
195
196
    num_lookahead_slots: int

197
198
199
200
    # Optimization for fast-access to seq_group lists
    decode_seq_groups_list: List[SequenceGroup]
    prefill_seq_groups_list: List[SequenceGroup]

201
    @classmethod
202
203
204
205
    def create_empty(cls) -> "SchedulerRunningOutputs":
        return SchedulerRunningOutputs(
            decode_seq_groups=[],
            prefill_seq_groups=[],
206
207
            preempted=[],
            swapped_out=[],
208
            blocks_to_swap_out=[],
209
            blocks_to_copy=[],
210
            num_lookahead_slots=0,
211
212
            decode_seq_groups_list=[],
            prefill_seq_groups_list=[],
213
214
215
216
217
        )


@dataclass
class SchedulerSwappedInOutputs:
218
219
220
221
222
223
    """The requests that are scheduled from a swap queue.

    Could contain prefill (prefill that's chunked) or decodes.
    """
    # Selected sequences that are going to be swapped in and is in a
    # decoding phase.
224
    decode_seq_groups: List[ScheduledSequenceGroup]
225
226
    # Selected sequences that are going to be swapped in and in a prefill
    # phase. I.e., it means the prefill has been chunked.
227
    prefill_seq_groups: List[ScheduledSequenceGroup]
228
    # The blocks to swap in.
229
    blocks_to_swap_in: List[Tuple[int, int]]
230
    # The blocks to copy.
231
    blocks_to_copy: List[Tuple[int, int]]
232
    # The number of slots for lookahead decoding.
233
    num_lookahead_slots: int
234
235
    # Infeasible sequence groups.
    infeasible_seq_groups: List[SequenceGroup]
236
237
238
239

    @classmethod
    def create_empty(cls) -> "SchedulerSwappedInOutputs":
        return SchedulerSwappedInOutputs(
240
241
            decode_seq_groups=[],
            prefill_seq_groups=[],
242
            blocks_to_swap_in=[],
243
            blocks_to_copy=[],
244
            num_lookahead_slots=0,
245
            infeasible_seq_groups=[],
246
247
248
249
250
        )


@dataclass
class SchedulerPrefillOutputs:
251
252
253
254
255
256
    """The requests that are scheduled from a waiting queue.

    Could contain a fresh prefill requests or preempted requests that need
    to be recomputed from scratch.
    """
    # Selected sequences for prefill.
257
    seq_groups: List[ScheduledSequenceGroup]
258
259
260
261
262
263
264
265
266
267
268
269
270
    # Ignored sequence groups.
    ignored_seq_groups: List[SequenceGroup]
    num_lookahead_slots: int

    @classmethod
    def create_empty(cls) -> "SchedulerPrefillOutputs":
        return SchedulerPrefillOutputs(
            seq_groups=[],
            ignored_seq_groups=[],
            num_lookahead_slots=0,
        )


271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
def seq_group_metadata_builder():
    return SequenceGroupMetadata(request_id="",
                                 is_prompt=False,
                                 seq_data={},
                                 sampling_params=None,
                                 block_tables={})


def scheduler_running_outputs_builder():
    return SchedulerRunningOutputs(decode_seq_groups=[],
                                   prefill_seq_groups=[],
                                   preempted=[],
                                   swapped_out=[],
                                   blocks_to_swap_out=[],
                                   blocks_to_copy=[],
                                   num_lookahead_slots=0,
                                   prefill_seq_groups_list=[],
                                   decode_seq_groups_list=[])


def scheduled_seq_group_builder():
292
293
294
    return ScheduledSequenceGroup(SequenceGroup("", [], -1),
                                  token_chunk_size=0)
    # return ScheduledSequenceGroup(seq_group=None, token_chunk_size=0)
295
296


Woosuk Kwon's avatar
Woosuk Kwon committed
297
298
class Scheduler:

Woosuk Kwon's avatar
Woosuk Kwon committed
299
    def __init__(
Woosuk Kwon's avatar
Woosuk Kwon committed
300
        self,
301
302
        scheduler_config: SchedulerConfig,
        cache_config: CacheConfig,
303
        lora_config: Optional[LoRAConfig],
304
        pipeline_parallel_size: int = 1,
305
        output_proc_callback_fn: Optional[Callable] = None,
Woosuk Kwon's avatar
Woosuk Kwon committed
306
    ) -> None:
307
308
        self.scheduler_config = scheduler_config
        self.cache_config = cache_config
309
310
311
312
        # Note for LoRA scheduling: the current policy is extremely
        # simple and NOT fair. It can lead to starvation of some
        # LoRAs. This should be improved in the future.
        self.lora_config = lora_config
Woosuk Kwon's avatar
Woosuk Kwon committed
313

314
315
316
317
318
319
        version = "v1"
        if self.scheduler_config.use_v2_block_manager:
            version = "v2"
        if self.scheduler_config.embedding_mode:
            version = "embedding"

320
        BlockSpaceManagerImpl = BlockSpaceManager.get_block_space_manager_class(
321
            version)
322

323
324
325
326
327
328
329
330
        num_gpu_blocks = cache_config.num_gpu_blocks
        if num_gpu_blocks:
            num_gpu_blocks //= pipeline_parallel_size

        num_cpu_blocks = cache_config.num_cpu_blocks
        if num_cpu_blocks:
            num_cpu_blocks //= pipeline_parallel_size

Woosuk Kwon's avatar
Woosuk Kwon committed
331
        # Create the block space manager.
332
        self.block_manager = BlockSpaceManagerImpl(
333
            block_size=self.cache_config.block_size,
334
335
            num_gpu_blocks=num_gpu_blocks,
            num_cpu_blocks=num_cpu_blocks,
336
337
            sliding_window=self.cache_config.sliding_window,
            enable_caching=self.cache_config.enable_prefix_caching)
338

339
        # Sequence groups in the WAITING state.
340
        # Contain new prefill or preempted requests.
341
        self.waiting: Deque[SequenceGroup] = deque()
342
        # Sequence groups in the RUNNING state.
343
        # Contain decode requests.
344
        self.running: Deque[SequenceGroup] = deque()
345
        # Sequence groups in the SWAPPED state.
346
        # Contain decode requests that are swapped out.
347
        self.swapped: Deque[SequenceGroup] = deque()
Mor Zusman's avatar
Mor Zusman committed
348
349
350
        # Sequence groups finished requests ids since last step iteration.
        # It lets the model know that any state associated with these requests
        # can and must be released after the current step.
351
        # This is used to evict the finished requests from the Mamba cache.
Mor Zusman's avatar
Mor Zusman committed
352
        self._finished_requests_ids: List[str] = list()
353
354
355
356
357
358
        # Time at previous scheduling step
        self.prev_time = 0.0
        # Did we schedule a prompt at previous step?
        self.prev_prompt = False
        # Latency of the last prompt step
        self.last_prompt_latency = 0.0
359
360
        # preemption mode, RECOMPUTE or SWAP
        self.user_specified_preemption_mode = scheduler_config.preemption_mode
361

362
363
364
365
366
367
        # The following field is test-only. It is used to inject artificial
        # preemption.
        self.enable_artificial_preemption = ENABLE_ARTIFICIAL_PREEMPT
        self.artificial_preempt_cnt = (ARTIFICIAL_PREEMPTION_MAX_CNT
                                       if self.enable_artificial_preemption
                                       else 0)
368
        self.num_cumulative_preemption: int = 0
369

370
        # Used to cache python objects
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
        self._seq_group_metadata_cache: List[PyObjectCache] = []
        self._scheduler_running_outputs_cache: List[PyObjectCache] = []
        self._scheduled_seq_group_cache: List[PyObjectCache] = []

        # For async output processing, we need to swap cache buffers between
        # iterations. I.e. since the output processing is lagged one step,
        # we cannot reuse the cached objects immediately when the schedule()
        # is called again, but only when schedule() is called the second time.
        self.output_proc_callback_fn = output_proc_callback_fn
        self.use_async_output_proc = self.output_proc_callback_fn is not None
        self.num_cache_iters = 2 if self.use_async_output_proc else 1

        self.cache_id = 0
        for i in range(self.num_cache_iters):
            self._seq_group_metadata_cache.append(
                PyObjectCache(seq_group_metadata_builder))
            self._scheduler_running_outputs_cache.append(
                PyObjectCache(scheduler_running_outputs_builder))
            self._scheduled_seq_group_cache.append(
                PyObjectCache(scheduled_seq_group_builder))

        # For async postprocessor, the extra decode run cannot be done
        # when the request reaches max_model_len. In this case, the request
        # will be stopped during schedule() call and added to this stop list
        # for processing and deallocation by the free_finished_seq_groups()
        self._async_stopped: List[SequenceGroup] = []

    @property
    def next_cache_id(self):
        return (self.cache_id + 1) % self.num_cache_iters
401

402
403
404
405
    @property
    def lora_enabled(self) -> bool:
        return bool(self.lora_config)

406
407
408
409
410
    @property
    def num_decoding_tokens_per_seq(self) -> int:
        """The number of new tokens."""
        return 1

411
    def add_seq_group(self, seq_group: SequenceGroup) -> None:
412
        # Add sequence groups to the waiting queue.
413
        self.waiting.append(seq_group)
Woosuk Kwon's avatar
Woosuk Kwon committed
414

415
416
417
418
419
420
421
422
423
424
    def _add_seq_group_to_running(self, seq_group: SequenceGroup) -> None:
        # Add sequence groups to the running queue.
        # Only for testing purposes.
        self.running.append(seq_group)

    def _add_seq_group_to_swapped(self, seq_group: SequenceGroup) -> None:
        # Add sequence groups to the swapped queue.
        # Only for testing purposes.
        self.swapped.append(seq_group)

Antoni Baum's avatar
Antoni Baum committed
425
    def abort_seq_group(self, request_id: Union[str, Iterable[str]]) -> None:
426
427
428
429
430
431
432
433
434
435
436
437
        """Aborts a sequence group with the given ID.

        Check if the sequence group with the given ID
            is present in any of the state queue.
        If present, remove the sequence group from the state queue.
            Also, if any of the sequences in the sequence group is not finished,
                free the sequence with status `FINISHED_ABORTED`.
        Otherwise, do nothing.

        Args:
            request_id: The ID(s) of the sequence group to abort.
        """
Antoni Baum's avatar
Antoni Baum committed
438
439
440
        if isinstance(request_id, str):
            request_id = (request_id, )
        request_ids = set(request_id)
441
        for state_queue in [self.waiting, self.running, self.swapped]:
ljss's avatar
ljss committed
442
            aborted_groups: List[SequenceGroup] = []
443
444
445
            for seq_group in state_queue:
                if not request_ids:
                    # Using 'break' here may add two extra iterations,
446
                    # but is acceptable to reduce complexity.
447
                    break
Antoni Baum's avatar
Antoni Baum committed
448
                if seq_group.request_id in request_ids:
449
450
                    # Appending aborted group into pending list.
                    aborted_groups.append(seq_group)
Antoni Baum's avatar
Antoni Baum committed
451
                    request_ids.remove(seq_group.request_id)
452
453
454
            for aborted_group in aborted_groups:
                # Remove the sequence group from the state queue.
                state_queue.remove(aborted_group)
455
                # Remove the aborted request from the Mamba cache.
456
                self._finished_requests_ids.append(aborted_group.request_id)
ljss's avatar
ljss committed
457
                for seq in aborted_group.get_seqs():
458
459
460
461
                    if seq.is_finished():
                        continue
                    seq.status = SequenceStatus.FINISHED_ABORTED
                    self.free_seq(seq)
462

463
464
465
466
467
468
469
470
471
472
473
474
475
                self._free_seq_group_cross_attn_blocks(aborted_group)

    def _free_seq_group_cross_attn_blocks(
        self,
        seq_group: SequenceGroup,
    ) -> None:
        """
        Free a sequence group from a cross-attention block table.
        Has no effect on decoder-only models.
        """
        if seq_group.is_encoder_decoder():
            self.block_manager.free_cross(seq_group)

476
    def has_unfinished_seqs(self) -> bool:
477
478
        return len(self.waiting) != 0 or len(self.running) != 0 or len(
            self.swapped) != 0
479

480
481
482
    def get_prefix_cache_hit_rate(self, device: Device) -> float:
        return self.block_manager.get_prefix_cache_hit_rate(device)

483
484
485
    def get_num_unfinished_seq_groups(self) -> int:
        return len(self.waiting) + len(self.running) + len(self.swapped)

Mor Zusman's avatar
Mor Zusman committed
486
487
488
489
490
491
    def get_and_reset_finished_requests_ids(self) -> List[str]:
        """Flushes the list of request ids of previously finished seq_groups."""
        finished_requests_ids = self._finished_requests_ids
        self._finished_requests_ids = list()
        return finished_requests_ids

492
    def _schedule_running(
493
494
495
        self,
        budget: SchedulingBudget,
        curr_loras: Optional[Set[int]],
496
        enable_chunking: bool = False,
497
    ) -> SchedulerRunningOutputs:
498
        """Schedule sequence groups that are running.
499

500
        Running queue should include decode and chunked prefill requests.
Woosuk Kwon's avatar
Woosuk Kwon committed
501

502
503
504
505
506
        Args:
            budget: The scheduling budget. The argument is in-place updated
                when any decodes are preempted.
            curr_loras: Currently batched lora request ids. The argument is
                in-place updated when any decodes are preempted.
507
508
509
510
511
            enable_chunking: If True, seq group can be chunked and only a
                chunked number of tokens are scheduled  if
                `budget.num_batched_tokens` has not enough capacity to schedule
                all tokens.
    
512
        Returns:
513
            SchedulerRunningOutputs.
514
        """
515
        ret: SchedulerRunningOutputs = \
516
            self._scheduler_running_outputs_cache[self.cache_id].get_object()
517
518
519
520
521
522
523
524
525
526
527
528
529
        ret.blocks_to_swap_out.clear()
        ret.blocks_to_copy.clear()
        ret.decode_seq_groups.clear()
        ret.prefill_seq_groups.clear()
        ret.preempted.clear()
        ret.swapped_out.clear()

        ret.num_lookahead_slots = self._get_num_lookahead_slots(
            is_prefill=False)

        ret.decode_seq_groups_list.clear()
        ret.prefill_seq_groups_list.clear()

530
        # Blocks that need to be swapped or copied before model execution.
531
532
        blocks_to_swap_out: List[Tuple[int, int]] = ret.blocks_to_swap_out
        blocks_to_copy: List[Tuple[int, int]] = ret.blocks_to_copy
Woosuk Kwon's avatar
Woosuk Kwon committed
533

534
535
536
537
538
        decode_seq_groups: List[ScheduledSequenceGroup] = ret.decode_seq_groups
        prefill_seq_groups: List[
            ScheduledSequenceGroup] = ret.prefill_seq_groups
        preempted: List[SequenceGroup] = ret.preempted
        swapped_out: List[SequenceGroup] = ret.swapped_out
Woosuk Kwon's avatar
Woosuk Kwon committed
539
540
541

        # NOTE(woosuk): Preemption happens only when there is no available slot
        # to keep all the sequence groups in the RUNNING state.
542

543
544
545
        # Store original running requests for the case of async + preemption
        if self.use_async_output_proc:
            orig_running = self.running.copy()
546

547
548
        running_queue = self.running
        assert len(self._async_stopped) == 0
549
550
        while running_queue:
            seq_group = running_queue[0]
551
552
553
            num_running_tokens = self._get_num_new_tokens(
                seq_group, SequenceStatus.RUNNING, enable_chunking, budget)

554
555
            if num_running_tokens == 0:
                break
556
557

            running_queue.popleft()
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579

            # With async postprocessor, an extra decode run is done
            # to process the final tokens. The check below avoids this extra
            # decode run when the model max len is reached, in order to avoid
            # a memory overflow.
            if self.use_async_output_proc and seq_group.seqs[0].get_len(
            ) > self.scheduler_config.max_model_len:
                self._async_stopped.append(seq_group)
                continue

            # With async postprocessor, when preemption kicks in, we need
            # first to drain the async postprocessor, so that all async
            # block_table freeing is applied before the preemption freeing
            # is applied.
            if self.use_async_output_proc and not self._can_append_slots(
                    seq_group):
                tmp = self.running
                self.running = orig_running
                assert self.output_proc_callback_fn is not None
                self.output_proc_callback_fn(is_async=True)
                self.running = tmp

580
            while not self._can_append_slots(seq_group):
581
582
                budget.subtract_num_batched_tokens(seq_group.request_id,
                                                   num_running_tokens)
583
                num_running_seqs = seq_group.get_max_num_running_seqs()
584
585
                budget.subtract_num_seqs(seq_group.request_id,
                                         num_running_seqs)
586
587
588

                if (curr_loras is not None and seq_group.lora_int_id > 0
                        and seq_group.lora_int_id in curr_loras):
589
                    curr_loras.remove(seq_group.lora_int_id)
590
591

                if running_queue:
592
                    # Preempt the lowest-priority sequence groups.
593
594
595
596
597
598
599
                    victim_seq_group = running_queue.pop()
                    preempted_mode = self._preempt(victim_seq_group,
                                                   blocks_to_swap_out)
                    if preempted_mode == PreemptionMode.RECOMPUTE:
                        preempted.append(victim_seq_group)
                    else:
                        swapped_out.append(victim_seq_group)
600
601
602
                else:
                    # No other sequence groups can be preempted.
                    # Preempt the current sequence group.
603
604
605
606
607
608
                    preempted_mode = self._preempt(seq_group,
                                                   blocks_to_swap_out)
                    if preempted_mode == PreemptionMode.RECOMPUTE:
                        preempted.append(seq_group)
                    else:
                        swapped_out.append(seq_group)
Woosuk Kwon's avatar
Woosuk Kwon committed
609
610
                    break
            else:
611
                self._append_slots(seq_group, blocks_to_copy)
612
                is_prefill = seq_group.is_prefill()
613
614

                scheduled_seq_group: ScheduledSequenceGroup = \
615
                    self._scheduled_seq_group_cache[self.cache_id].get_object()
616
                scheduled_seq_group.seq_group = seq_group
617
                if is_prefill:
618
619
620
                    scheduled_seq_group.token_chunk_size = num_running_tokens
                    prefill_seq_groups.append(scheduled_seq_group)
                    ret.prefill_seq_groups_list.append(seq_group)
621
                else:
622
623
624
625
                    scheduled_seq_group.token_chunk_size = 1
                    decode_seq_groups.append(scheduled_seq_group)
                    ret.decode_seq_groups_list.append(seq_group)

626
627
                budget.add_num_batched_tokens(seq_group.request_id,
                                              num_running_tokens)
628
629
630
631
632
633
634
                # OPTIMIZATION:  Note that get_max_num_running_seqs is
                # expensive. For the default scheduling chase where
                # enable_chunking is False, num_seqs are updated before running
                # this method, so we don't have to update it again here.
                if enable_chunking:
                    num_running_seqs = seq_group.get_max_num_running_seqs()
                    budget.add_num_seqs(seq_group.request_id, num_running_seqs)
635
636
637
                if curr_loras is not None and seq_group.lora_int_id > 0:
                    curr_loras.add(seq_group.lora_int_id)

638
639
        self._scheduler_running_outputs_cache[self.next_cache_id].reset()
        self._scheduled_seq_group_cache[self.next_cache_id].reset()
640
641

        return ret
642

643
644
645
646
    def _schedule_swapped(
        self,
        budget: SchedulingBudget,
        curr_loras: Optional[Set[int]],
647
        enable_chunking: bool = False,
648
    ) -> SchedulerSwappedInOutputs:
649
        """Schedule sequence groups that are swapped out.
650

651
652
653
        It schedules swapped requests as long as it fits `budget` and
        curr_loras <= max_lora from the scheduling config. The input arguments
        `budget` and `curr_loras` are updated based on scheduled seq_groups.
654

655
656
657
658
659
        Args:
            budget: The scheduling budget. The argument is in-place updated
                when any requests are swapped in.
            curr_loras: Currently batched lora request ids. The argument is
                in-place updated when any requests are swapped in.
660
661
662
663
664
            enable_chunking: If True, seq group can be chunked and only a
                chunked number of tokens are scheduled  if
                `budget.num_batched_tokens` has not enough capacity to schedule
                all tokens.

665
666
667
668
        Returns:
            SchedulerSwappedInOutputs.
        """
        # Blocks that need to be swapped or copied before model execution.
669
        blocks_to_swap_in: List[Tuple[int, int]] = []
670
        blocks_to_copy: List[Tuple[int, int]] = []
671
672
        decode_seq_groups: List[ScheduledSequenceGroup] = []
        prefill_seq_groups: List[ScheduledSequenceGroup] = []
673
        infeasible_seq_groups: List[SequenceGroup] = []
674

675
676
        swapped_queue = self.swapped

677
        leftover_swapped: Deque[SequenceGroup] = deque()
678
679
680
681
        while swapped_queue:
            seq_group = swapped_queue[0]

            # If the sequence group cannot be swapped in, stop.
682
683
684
            is_prefill = seq_group.is_prefill()
            alloc_status = self.block_manager.can_swap_in(
                seq_group, self._get_num_lookahead_slots(is_prefill))
685
            if alloc_status == AllocStatus.LATER:
686
                break
687
688
689
690
691
692
693
694
695
696
            elif alloc_status == AllocStatus.NEVER:
                logger.warning(
                    "Failing the request %s because there's not enough kv "
                    "cache blocks to run the entire sequence.",
                    seq_group.request_id)
                for seq in seq_group.get_seqs():
                    seq.status = SequenceStatus.FINISHED_IGNORED
                infeasible_seq_groups.append(seq_group)
                swapped_queue.popleft()
                continue
697
698
699
700

            lora_int_id = 0
            if self.lora_enabled:
                lora_int_id = seq_group.lora_int_id
701
702
703
                assert curr_loras is not None
                assert self.lora_config is not None
                if (lora_int_id > 0 and (lora_int_id not in curr_loras)
704
705
706
707
708
709
710
711
712
713
                        and len(curr_loras) >= self.lora_config.max_loras):
                    # We don't have a space for another LoRA, so
                    # we ignore this request for now.
                    leftover_swapped.appendleft(seq_group)
                    swapped_queue.popleft()
                    continue

            # The total number of sequences in the RUNNING state should not
            # exceed the maximum number of sequences.
            num_new_seqs = seq_group.get_max_num_running_seqs()
714
715
716
            num_new_tokens = self._get_num_new_tokens(seq_group,
                                                      SequenceStatus.SWAPPED,
                                                      enable_chunking, budget)
717

718
719
720
            if (num_new_tokens == 0
                    or not budget.can_schedule(num_new_tokens=num_new_tokens,
                                               num_new_seqs=num_new_seqs)):
721
722
723
724
725
726
727
                break

            if lora_int_id > 0 and curr_loras is not None:
                curr_loras.add(lora_int_id)
            swapped_queue.popleft()
            self._swap_in(seq_group, blocks_to_swap_in)
            self._append_slots(seq_group, blocks_to_copy)
728
729
730
731
732
733
734
735
736
737
            is_prefill = seq_group.is_prefill()
            if is_prefill:
                prefill_seq_groups.append(
                    ScheduledSequenceGroup(seq_group,
                                           token_chunk_size=num_new_tokens))
            else:
                decode_seq_groups.append(
                    ScheduledSequenceGroup(seq_group, token_chunk_size=1))
            budget.add_num_batched_tokens(seq_group.request_id, num_new_tokens)
            budget.add_num_seqs(seq_group.request_id, num_new_seqs)
738
739
740

        swapped_queue.extendleft(leftover_swapped)

741
        return SchedulerSwappedInOutputs(
742
743
            decode_seq_groups=decode_seq_groups,
            prefill_seq_groups=prefill_seq_groups,
744
745
            blocks_to_swap_in=blocks_to_swap_in,
            blocks_to_copy=blocks_to_copy,
746
            num_lookahead_slots=self._get_num_lookahead_slots(
747
748
749
                is_prefill=False),
            infeasible_seq_groups=infeasible_seq_groups,
        )
750

751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
    def _get_prompt_limit(self, seq_group: SequenceGroup) -> int:
        if self.scheduler_config.chunked_prefill_enabled:
            prompt_limit = self.scheduler_config.max_model_len
        else:
            prompt_limit = min(self.scheduler_config.max_model_len,
                               self.scheduler_config.max_num_batched_tokens)

        # Model is fine tuned with long context. Return the fine tuned max_len.
        if (seq_group.lora_request
                and seq_group.lora_request.long_lora_max_len):
            assert prompt_limit <= seq_group.lora_request.long_lora_max_len
            return seq_group.lora_request.long_lora_max_len
        else:
            return prompt_limit

766
767
768
769
    def _schedule_prefills(
        self,
        budget: SchedulingBudget,
        curr_loras: Optional[Set[int]],
770
        enable_chunking: bool = False,
771
    ) -> SchedulerPrefillOutputs:
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
        """Schedule sequence groups that are in prefill stage.

        Note that the current scheduler treats PREEMPTED_FOR_RECOMPUTE
        as a new prefill (that starts from beginning -> most recently generated
        tokens).

        It schedules waiting requests as long as it fits `budget` and
        curr_loras <= max_lora from the scheduling config. The input arguments
        `budget` and `curr_loras` are updated based on scheduled seq_groups.

        Args:
            budget: The scheduling budget. The argument is in-place updated
                when any requests are scheduled.
            curr_loras: Currently batched lora request ids. The argument is
                in-place updated when any requests are scheduled.
787
788
789
790
            enable_chunking: If True, seq group can be chunked and only a
                chunked number of tokens are scheduled  if
                `budget.num_batched_tokens` has not enough capacity to schedule
                all tokens.
791
792

        Returns:
793
            SchedulerPrefillOutputs.
794
795
        """
        ignored_seq_groups: List[SequenceGroup] = []
796
        seq_groups: List[ScheduledSequenceGroup] = []
797
798

        waiting_queue = self.waiting
799

800
        leftover_waiting_sequences: Deque[SequenceGroup] = deque()
801
802
803
804
805
806
807
        while self._passed_delay(time.time()) and waiting_queue:
            seq_group = waiting_queue[0]

            waiting_seqs = seq_group.get_seqs(status=SequenceStatus.WAITING)
            assert len(waiting_seqs) == 1, (
                "Waiting sequence group should have only one prompt "
                "sequence.")
808
809
810
811
812
813
814
            num_new_tokens = self._get_num_new_tokens(seq_group,
                                                      SequenceStatus.WAITING,
                                                      enable_chunking, budget)
            if not enable_chunking:
                num_prompt_tokens = waiting_seqs[0].get_len()
                assert num_new_tokens == num_prompt_tokens

815
816
            prompt_limit = self._get_prompt_limit(seq_group)
            if num_new_tokens > prompt_limit:
817
                logger.warning(
818
                    "Input prompt (%d tokens) is too long"
819
                    " and exceeds limit of %d", num_new_tokens, prompt_limit)
820
821
822
823
824
825
826
827
828
829
830
831
                for seq in waiting_seqs:
                    seq.status = SequenceStatus.FINISHED_IGNORED
                ignored_seq_groups.append(seq_group)
                waiting_queue.popleft()
                continue

            # If the sequence group cannot be allocated, stop.
            can_allocate = self.block_manager.can_allocate(seq_group)
            if can_allocate == AllocStatus.LATER:
                break
            elif can_allocate == AllocStatus.NEVER:
                logger.warning(
832
833
834
                    "Input prompt (%d tokens) is too long"
                    " and exceeds the capacity of block_manager",
                    num_new_tokens)
835
836
837
838
839
840
841
842
843
                for seq in waiting_seqs:
                    seq.status = SequenceStatus.FINISHED_IGNORED
                ignored_seq_groups.append(seq_group)
                waiting_queue.popleft()
                continue

            lora_int_id = 0
            if self.lora_enabled:
                lora_int_id = seq_group.lora_int_id
844
845
                assert curr_loras is not None
                assert self.lora_config is not None
846
847
848
849
850
851
852
853
854
855
                if (self.lora_enabled and lora_int_id > 0
                        and lora_int_id not in curr_loras
                        and len(curr_loras) >= self.lora_config.max_loras):
                    # We don't have a space for another LoRA, so
                    # we ignore this request for now.
                    leftover_waiting_sequences.appendleft(seq_group)
                    waiting_queue.popleft()
                    continue

            num_new_seqs = seq_group.get_max_num_running_seqs()
856
857
858
            if (num_new_tokens == 0
                    or not budget.can_schedule(num_new_tokens=num_new_tokens,
                                               num_new_seqs=num_new_seqs)):
859
860
861
862
863
864
                break

            # Can schedule this request.
            if curr_loras is not None and lora_int_id > 0:
                curr_loras.add(lora_int_id)
            waiting_queue.popleft()
865
            self._allocate_and_set_running(seq_group)
866
867
868
            seq_group.init_multi_step(
                num_scheduler_steps=self._get_num_lookahead_slots(
                    is_prefill=True) + 1)
869
870
            seq_groups.append(
                ScheduledSequenceGroup(seq_group=seq_group,
871
872
873
                                       token_chunk_size=num_new_tokens))
            budget.add_num_batched_tokens(seq_group.request_id, num_new_tokens)
            budget.add_num_seqs(seq_group.request_id, num_new_seqs)
874
875
876
877
878
879

        # Queue requests that couldn't be scheduled.
        waiting_queue.extendleft(leftover_waiting_sequences)
        if len(seq_groups) > 0:
            self.prev_prompt = True

880
        return SchedulerPrefillOutputs(
881
882
883
884
            seq_groups=seq_groups,
            ignored_seq_groups=ignored_seq_groups,
            num_lookahead_slots=self._get_num_lookahead_slots(is_prefill=True))

885
886
    def _schedule_default(self) -> SchedulerOutputs:
        """Schedule queued requests.
887
        
888
        The current policy is designed to optimize the throughput. First,
889
890
891
892
893
894
895
896
897
        it batches as many prefill requests as possible. And it schedules
        decodes. If there's a pressure on GPU memory, decode requests can
        be swapped or preempted.
        """
        # Include running requests to the budget.
        budget = SchedulingBudget(
            token_budget=self.scheduler_config.max_num_batched_tokens,
            max_num_seqs=self.scheduler_config.max_num_seqs,
        )
898
899
900
901
902
        # Make sure we include num running seqs before scheduling prefill,
        # so that we don't schedule beyond max_num_seqs for prefill.
        for seq_group in self.running:
            budget.add_num_seqs(seq_group.request_id,
                                seq_group.get_max_num_running_seqs())
903
        curr_loras = set(
904
905
            seq_group.lora_int_id for seq_group in self.running
            if seq_group.lora_int_id > 0) if self.lora_enabled else None
906

907
908
909
        prefills = SchedulerPrefillOutputs.create_empty()
        running_scheduled = SchedulerRunningOutputs.create_empty()
        swapped_in = SchedulerSwappedInOutputs.create_empty()
910
911
912

        # If any requests are swapped, prioritized swapped requests.
        if not self.swapped:
913
914
915
            prefills = self._schedule_prefills(budget,
                                               curr_loras,
                                               enable_chunking=False)
916
917

        # Don't schedule decodes if prefills are scheduled.
918
919
        # NOTE: If `_schedule_prefills` doesn't enable chunking, self.running
        # only contains decode requests, not chunked prefills.
920
        if len(prefills.seq_groups) == 0:
921
922
923
            running_scheduled = self._schedule_running(budget,
                                                       curr_loras,
                                                       enable_chunking=False)
924

925
926
            # If any sequence group is preempted, do not swap in any sequence
            # group. because it means there's no slot for new running requests.
927
928
            if len(running_scheduled.preempted) + len(
                    running_scheduled.swapped_out) == 0:
929
                swapped_in = self._schedule_swapped(budget, curr_loras)
930
931
932
933
934
935

        assert (budget.num_batched_tokens <=
                self.scheduler_config.max_num_batched_tokens)
        assert budget.num_curr_seqs <= self.scheduler_config.max_num_seqs

        # Update waiting requests.
936
        self.waiting.extendleft(running_scheduled.preempted)
937
        # Update new running requests.
938
939
940
941
942
943
944
945
946
        if len(prefills.seq_groups) > 0:
            self.running.extend([s.seq_group for s in prefills.seq_groups])

        self.running.extend(running_scheduled.decode_seq_groups_list)

        if len(swapped_in.decode_seq_groups) > 0:
            self.running.extend(
                [s.seq_group for s in swapped_in.decode_seq_groups])

947
        # Update swapped requests.
948
        self.swapped.extend(running_scheduled.swapped_out)
949
950
        preempted = (len(running_scheduled.preempted) +
                     len(running_scheduled.swapped_out))
951

952
953
954
955
        # There should be no prefill from running queue because this policy
        # doesn't allow chunked prefills.
        assert len(running_scheduled.prefill_seq_groups) == 0
        assert len(swapped_in.prefill_seq_groups) == 0
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971

        # Merge lists
        num_prefill_groups = len(prefills.seq_groups)
        if num_prefill_groups > 0:
            scheduled_seq_groups = prefills.seq_groups
            scheduled_seq_groups.extend(running_scheduled.decode_seq_groups)
        else:
            scheduled_seq_groups = running_scheduled.decode_seq_groups
        scheduled_seq_groups.extend(swapped_in.decode_seq_groups)

        blocks_to_copy = running_scheduled.blocks_to_copy
        blocks_to_copy.extend(swapped_in.blocks_to_copy)

        ignored_seq_groups = prefills.ignored_seq_groups
        ignored_seq_groups.extend(swapped_in.infeasible_seq_groups)

972
        return SchedulerOutputs(
973
974
            scheduled_seq_groups=scheduled_seq_groups,
            num_prefill_groups=num_prefill_groups,
975
976
            num_batched_tokens=budget.num_batched_tokens,
            blocks_to_swap_in=swapped_in.blocks_to_swap_in,
977
            blocks_to_swap_out=running_scheduled.blocks_to_swap_out,
978
979
            blocks_to_copy=blocks_to_copy,
            ignored_seq_groups=ignored_seq_groups,
980
            num_lookahead_slots=running_scheduled.num_lookahead_slots,
981
            running_queue_size=len(self.running),
982
            preempted=preempted,
983
984
        )

985
    def _schedule_chunked_prefill(self) -> SchedulerOutputs:
986
987
988
989
990
991
992
993
994
995
        """Schedule queued requests.
        
        Chunked prefill allows to chunk prefill requests, batch them together
        with decode requests. This policy 1. schedule as many decoding requests
        as possible. 2. schedule chunked prefill requests that are not
        finished. 3. schedule swapped request. 4. schedule new prefill
        requests.

        The policy can sustain the high GPU utilization because it can put
        prefill and decodes requests to the same batch, while it improves
996
        inter token latency because decodes requests don't need to be blocked
997
998
999
1000
1001
1002
        by prefill requests.
        """
        budget = SchedulingBudget(
            token_budget=self.scheduler_config.max_num_batched_tokens,
            max_num_seqs=self.scheduler_config.max_num_seqs,
        )
1003
        curr_loras: Set[int] = set()
1004

1005
1006
        prefills = SchedulerPrefillOutputs.create_empty()
        swapped_in = SchedulerSwappedInOutputs.create_empty()
1007
1008

        # Decoding should be always scheduled first by fcfs.
1009
1010
1011
        running_scheduled = self._schedule_running(budget,
                                                   curr_loras,
                                                   enable_chunking=True)
1012
1013
1014
1015
1016

        # Schedule swapped out requests.
        # If preemption happens, it means we don't have space for swap-in.
        if len(running_scheduled.preempted) + len(
                running_scheduled.swapped_out) == 0:
1017
            swapped_in = self._schedule_swapped(budget, curr_loras)
1018
1019

        # Schedule new prefills.
1020
1021
1022
        prefills = self._schedule_prefills(budget,
                                           curr_loras,
                                           enable_chunking=True)
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044

        assert (budget.num_batched_tokens <=
                self.scheduler_config.max_num_batched_tokens)
        assert budget.num_curr_seqs <= self.scheduler_config.max_num_seqs

        # Update waiting requests.
        self.waiting.extendleft(running_scheduled.preempted)
        # Update new running requests.
        self.running.extend([s.seq_group for s in prefills.seq_groups])
        self.running.extend(
            [s.seq_group for s in running_scheduled.decode_seq_groups])
        self.running.extend(
            [s.seq_group for s in running_scheduled.prefill_seq_groups])
        self.running.extend(
            [s.seq_group for s in swapped_in.decode_seq_groups])
        self.running.extend(
            [s.seq_group for s in swapped_in.prefill_seq_groups])
        # Update swapped requests.
        self.swapped.extend(running_scheduled.swapped_out)
        return SchedulerOutputs(
            scheduled_seq_groups=(prefills.seq_groups +
                                  running_scheduled.prefill_seq_groups +
1045
1046
1047
                                  swapped_in.prefill_seq_groups +
                                  running_scheduled.decode_seq_groups +
                                  swapped_in.decode_seq_groups),
1048
1049
1050
1051
1052
1053
            num_prefill_groups=(len(prefills.seq_groups) +
                                len(swapped_in.prefill_seq_groups) +
                                len(running_scheduled.prefill_seq_groups)),
            num_batched_tokens=budget.num_batched_tokens,
            blocks_to_swap_in=swapped_in.blocks_to_swap_in,
            blocks_to_swap_out=running_scheduled.blocks_to_swap_out,
1054
1055
            blocks_to_copy=running_scheduled.blocks_to_copy +
            swapped_in.blocks_to_copy,
1056
1057
            ignored_seq_groups=prefills.ignored_seq_groups +
            swapped_in.infeasible_seq_groups,
1058
            num_lookahead_slots=running_scheduled.num_lookahead_slots,
1059
            running_queue_size=len(self.running),
1060
1061
            preempted=(len(running_scheduled.preempted) +
                       len(running_scheduled.swapped_out)),
1062
        )
Woosuk Kwon's avatar
Woosuk Kwon committed
1063

1064
1065
1066
1067
1068
1069
1070
    def _schedule(self) -> SchedulerOutputs:
        """Schedule queued requests."""
        if self.scheduler_config.chunked_prefill_enabled:
            return self._schedule_chunked_prefill()
        else:
            return self._schedule_default()

1071
1072
1073
1074
    def _can_append_slots(self, seq_group: SequenceGroup) -> bool:
        """Determine whether or not we have enough space in the KV cache to
        continue generation of the sequence group.
        """
1075
1076
1077
1078
1079
1080
1081
        # It is True only for testing case to trigger artificial preemption.
        if (self.enable_artificial_preemption
                and random.uniform(0, 1) < ARTIFICIAL_PREEMPTION_PROB
                and self.artificial_preempt_cnt > 0):
            self.artificial_preempt_cnt -= 1
            return False

1082
1083
1084
1085
1086
1087
1088
1089
        # Appending slots only occurs in decoding.
        is_prefill = False

        return self.block_manager.can_append_slots(
            seq_group=seq_group,
            num_lookahead_slots=self._get_num_lookahead_slots(is_prefill),
        )

1090
1091
1092
1093
1094
1095
1096
1097
1098
    def _allow_async_output_proc(self, seq_group: SequenceGroup) -> bool:
        no_beam_search = (seq_group.sampling_params.best_of == 1
                          and not seq_group.sampling_params.use_beam_search)

        return no_beam_search

    def schedule(
            self
    ) -> Tuple[List[SequenceGroupMetadata], SchedulerOutputs, bool]:
1099
1100
1101
        # Schedule sequence groups.
        # This function call changes the internal states of the scheduler
        # such as self.running, self.swapped, and self.waiting.
1102
        scheduler_start_time = time.perf_counter()
1103

Woosuk Kwon's avatar
Woosuk Kwon committed
1104
        scheduler_outputs = self._schedule()
1105
        now = time.time()
1106

1107
1108
1109
        if not self.cache_config.enable_prefix_caching:
            common_computed_block_nums = []

1110
1111
1112
1113
1114
        # TODO: Combine multi-step and async postprocessor
        allow_async_output_proc: bool = (
            self.use_async_output_proc
            and not self.scheduler_config.is_multi_step)

1115
        # Create input data structures.
1116
        seq_group_metadata_list: List[SequenceGroupMetadata] = []
1117
1118
        for i, scheduled_seq_group in enumerate(
                scheduler_outputs.scheduled_seq_groups):
1119
1120
            seq_group = scheduled_seq_group.seq_group
            token_chunk_size = scheduled_seq_group.token_chunk_size
1121
1122
            seq_group.maybe_set_first_scheduled_time(now)

1123
1124
1125
1126
1127
            seq_group_metadata = self._seq_group_metadata_cache[
                self.cache_id].get_object()
            seq_group_metadata.seq_data.clear()
            seq_group_metadata.block_tables.clear()

1128
            # seq_id -> SequenceData
1129
            seq_data: Dict[int, SequenceData] = {}
1130
            # seq_id -> physical block numbers
1131
            block_tables: Dict[int, List[int]] = {}
1132

1133
1134
            if seq_group.is_encoder_decoder():
                # Encoder associated with SequenceGroup
1135
1136
1137
                encoder_seq = seq_group.get_encoder_seq()
                assert encoder_seq is not None
                encoder_seq_data = encoder_seq.data
1138
1139
1140
1141
1142
1143
1144
1145
                # Block table for cross-attention
                # Also managed at SequenceGroup level
                cross_block_table = self.block_manager.get_cross_block_table(
                    seq_group)
            else:
                encoder_seq_data = None
                cross_block_table = None

1146
            for seq in seq_group.get_seqs(status=SequenceStatus.RUNNING):
1147
                seq_id = seq.seq_id
1148
                seq_data[seq_id] = seq.data
1149
                block_tables[seq_id] = self.block_manager.get_block_table(seq)
1150
                self.block_manager.access_all_blocks_in_seq(seq, now)
1151

1152
1153
1154
1155
            if self.cache_config.enable_prefix_caching:
                common_computed_block_nums = (
                    self.block_manager.get_common_computed_block_ids(
                        seq_group.get_seqs(status=SequenceStatus.RUNNING)))
1156

1157
            do_sample = True
1158
1159
1160
1161
1162
            is_prompt = seq_group.is_prefill()
            # We should send the metadata to workers when the first prefill
            # is sent. Subsequent requests could be chunked prefill or decode.
            is_first_prefill = False
            if is_prompt:
1163
1164
1165
                seqs = seq_group.get_seqs()
                # Prefill has only 1 sequence.
                assert len(seqs) == 1
1166
1167
                num_computed_tokens = seqs[0].data.get_num_computed_tokens()
                is_first_prefill = num_computed_tokens == 0
1168
1169
1170
1171
1172
                # In the next iteration, all prompt tokens are not computed.
                # It means the prefill is chunked, and we don't need sampling.
                # NOTE: We use get_len instead of get_prompt_len because when
                # a sequence is preempted, prefill includes previous generated
                # output tokens.
1173
                if (token_chunk_size + num_computed_tokens <
1174
1175
1176
                        seqs[0].data.get_len()):
                    do_sample = False

1177
1178
            # It assumes the scheduled_seq_groups is ordered by
            # prefill < decoding.
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
            if is_first_prefill or not self.scheduler_config.send_delta_data:
                seq_group_metadata = SequenceGroupMetadata(
                    request_id=seq_group.request_id,
                    is_prompt=is_prompt,
                    seq_data=seq_data,
                    sampling_params=seq_group.sampling_params,
                    block_tables=block_tables,
                    do_sample=do_sample,
                    pooling_params=seq_group.pooling_params,
                    token_chunk_size=token_chunk_size,
                    lora_request=seq_group.lora_request,
                    computed_block_nums=common_computed_block_nums,
                    encoder_seq_data=encoder_seq_data,
                    cross_block_table=cross_block_table,
                    state=seq_group.state,
                    # `multi_modal_data` will only be present for the 1st comm
                    # between engine and worker.
                    # the subsequent comms can still use delta, but
                    # `multi_modal_data` will be None.
                    multi_modal_data=seq_group.multi_modal_data
                    if scheduler_outputs.num_prefill_groups > 0 else None,
                    prompt_adapter_request=seq_group.prompt_adapter_request,
                )
            else:
                # When SPMD mode is enabled, we only send delta data except for
                # the first request to reduce serialization cost.
                seq_data_delta = {}
                for id, data in seq_data.items():
                    seq_data_delta[id] = data.get_delta_and_reset()
                seq_group_metadata = SequenceGroupMetadataDelta(
                    seq_data_delta,
                    seq_group.request_id,
                    block_tables,
                    is_prompt,
                    do_sample=do_sample,
                    token_chunk_size=token_chunk_size,
                    computed_block_nums=common_computed_block_nums,
                )
1217
            seq_group_metadata_list.append(seq_group_metadata)
1218

1219
1220
1221
1222
            if allow_async_output_proc:
                allow_async_output_proc = self._allow_async_output_proc(
                    seq_group)

1223
1224
1225
1226
        # Now that the batch has been created, we can assume all blocks in the
        # batch will have been computed before the next scheduling invocation.
        # This is because the engine assumes that a failure in model execution
        # will crash the vLLM instance / will not retry.
1227
1228
1229
        for scheduled_seq_group in scheduler_outputs.scheduled_seq_groups:
            self.block_manager.mark_blocks_as_computed(
                scheduled_seq_group.seq_group)
1230

1231
1232
        self._seq_group_metadata_cache[self.next_cache_id].reset()

1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
        scheduler_time = time.perf_counter() - scheduler_start_time
        # Add this to scheduler time to all the sequences that are currently
        # running. This will help estimate if the scheduler is a significant
        # component in the e2e latency.
        for seq_group in self.running:
            if seq_group is not None and seq_group.metrics is not None:
                if seq_group.metrics.scheduler_time is not None:
                    seq_group.metrics.scheduler_time += scheduler_time
                else:
                    seq_group.metrics.scheduler_time = scheduler_time

1244
1245
1246
1247
1248
1249
        # Move to next cache (if exists)
        self.cache_id = self.next_cache_id

        # Return results
        return (seq_group_metadata_list, scheduler_outputs,
                allow_async_output_proc)
1250

1251
1252
    def fork_seq(self, parent_seq: Sequence, child_seq: Sequence) -> None:
        self.block_manager.fork(parent_seq, child_seq)
Woosuk Kwon's avatar
Woosuk Kwon committed
1253

1254
    def free_seq(self, seq: Sequence) -> None:
1255
        """Free a sequence from a block table."""
1256
        self.block_manager.free(seq)
Woosuk Kwon's avatar
Woosuk Kwon committed
1257

1258
1259
1260
1261
1262
1263
    def _free_finished_seqs(self, seq_group: SequenceGroup) -> None:
        """Free finished seqs in a sequence group."""
        for seq in seq_group.get_seqs():
            if seq.is_finished():
                self.free_seq(seq)

1264
    def free_finished_seq_groups(self) -> None:
1265
1266
1267
        remaining: Deque[SequenceGroup] = deque()
        for seq_group in self.running:
            if seq_group.is_finished():
1268
1269
                # Free cross-attention block table, if it exists
                self._free_seq_group_cross_attn_blocks(seq_group)
1270
1271
1272
1273
1274
1275
                # Add the finished requests to the finished requests list.
                # This list will be used to update the Mamba cache in the
                # next step.
                self._finished_requests_ids.append(seq_group.request_id)
            else:
                remaining.append(seq_group)
1276
1277
1278
1279

            # Free finished seqs
            self._free_finished_seqs(seq_group)

1280
        self.running = remaining
Woosuk Kwon's avatar
Woosuk Kwon committed
1281

1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
        # Handle async stopped sequence groups
        # (ones that reached max model len)
        if self._async_stopped:
            for seq_group in self._async_stopped:
                self._free_seq_group_cross_attn_blocks(seq_group)
                self._finished_requests_ids.append(seq_group.request_id)

                # Free finished seqs
                self._free_finished_seqs(seq_group)

            self._async_stopped.clear()

1294
    def _allocate_and_set_running(self, seq_group: SequenceGroup) -> None:
1295
        self.block_manager.allocate(seq_group)
1296
        for seq in seq_group.get_seqs(status=SequenceStatus.WAITING):
1297
1298
            seq.status = SequenceStatus.RUNNING

1299
    def _append_slots(
1300
1301
        self,
        seq_group: SequenceGroup,
1302
        blocks_to_copy: List[Tuple[int, int]],
1303
    ) -> None:
1304
1305
1306
1307
1308
        """Appends new slots to the sequences in the given sequence group.

        Args:
            seq_group (SequenceGroup): The sequence group containing the
                sequences to append slots to.
1309
1310
1311
1312
1313
            blocks_to_copy (List[Tuple[int, int]]): A list of tuple of two
                ints, the first int is the source block index, and the second
                int is the destination block index. This list is updated with
                the new source and destination block indices for the appended
                slots.
1314
1315
        """
        num_lookahead_slots = self._get_num_lookahead_slots(is_prefill=False)
1316
        seq_group.init_multi_step(num_scheduler_steps=num_lookahead_slots + 1)
1317

1318
        for seq in seq_group.get_seqs(status=SequenceStatus.RUNNING):
1319
            cows = self.block_manager.append_slots(seq, num_lookahead_slots)
1320
1321
            if len(cows) > 0:
                blocks_to_copy.extend(cows)
1322
1323
1324
1325

    def _preempt(
        self,
        seq_group: SequenceGroup,
1326
        blocks_to_swap_out: List[Tuple[int, int]],
1327
        preemption_mode: Optional[PreemptionMode] = None,
1328
    ) -> PreemptionMode:
1329
1330
1331
        # If preemption mode is not specified, we determine the mode as follows:
        # We use recomputation by default since it incurs lower overhead than
        # swapping. However, when the sequence group has multiple sequences
1332
1333
        # (e.g., beam search), recomputation is not currently supported. In
        # such a case, we use swapping instead.
1334
1335
1336
1337
1338
1339
        # FIXME(woosuk): This makes our scheduling policy a bit bizarre.
        # As swapped sequences are prioritized over waiting sequences,
        # sequence groups with multiple sequences are implicitly prioritized
        # over sequence groups with a single sequence.
        # TODO(woosuk): Support recomputation for sequence groups with multiple
        # sequences. This may require a more sophisticated CUDA kernel.
1340
        if self.user_specified_preemption_mode is None:
1341
            if seq_group.get_max_num_running_seqs() == 1:
1342
1343
1344
                preemption_mode = PreemptionMode.RECOMPUTE
            else:
                preemption_mode = PreemptionMode.SWAP
1345

1346
1347
1348
1349
1350
        elif self.user_specified_preemption_mode == "swap":
            preemption_mode = PreemptionMode.SWAP
        else:
            preemption_mode = PreemptionMode.RECOMPUTE

1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
        if self.num_cumulative_preemption % 50 == 0:
            logger.warning(
                "Sequence group %s is preempted by %s mode because there is "
                "not enough KV cache space. This can affect the end-to-end "
                "performance. Increase gpu_memory_utilization or "
                "tensor_parallel_size to provide more KV cache memory. "
                "total_num_cumulative_preemption=%d", seq_group.request_id,
                preemption_mode, self.num_cumulative_preemption + 1)
        self.num_cumulative_preemption += 1

1361
1362
1363
1364
1365
        if preemption_mode == PreemptionMode.RECOMPUTE:
            self._preempt_by_recompute(seq_group)
        elif preemption_mode == PreemptionMode.SWAP:
            self._preempt_by_swap(seq_group, blocks_to_swap_out)
        else:
1366
            raise AssertionError("Invalid preemption mode.")
1367
        return preemption_mode
1368
1369
1370
1371
1372
1373
1374
1375
1376

    def _preempt_by_recompute(
        self,
        seq_group: SequenceGroup,
    ) -> None:
        seqs = seq_group.get_seqs(status=SequenceStatus.RUNNING)
        assert len(seqs) == 1
        for seq in seqs:
            seq.status = SequenceStatus.WAITING
1377
1378
            self.free_seq(seq)
            seq.reset_state_for_recompute()
1379
1380
1381
1382

    def _preempt_by_swap(
        self,
        seq_group: SequenceGroup,
1383
        blocks_to_swap_out: List[Tuple[int, int]],
1384
1385
1386
1387
1388
1389
    ) -> None:
        self._swap_out(seq_group, blocks_to_swap_out)

    def _swap_in(
        self,
        seq_group: SequenceGroup,
1390
        blocks_to_swap_in: List[Tuple[int, int]],
1391
1392
    ) -> None:
        mapping = self.block_manager.swap_in(seq_group)
1393
        blocks_to_swap_in.extend(mapping)
1394
1395
1396
1397
1398
1399
        for seq in seq_group.get_seqs(status=SequenceStatus.SWAPPED):
            seq.status = SequenceStatus.RUNNING

    def _swap_out(
        self,
        seq_group: SequenceGroup,
1400
        blocks_to_swap_out: List[Tuple[int, int]],
1401
    ) -> None:
1402
1403
1404
1405
1406
1407
        if not self.block_manager.can_swap_out(seq_group):
            # FIXME(woosuk): Abort the sequence group instead of aborting the
            # entire engine.
            raise RuntimeError(
                "Aborted due to the lack of CPU swap space. Please increase "
                "the swap space to avoid this error.")
1408
        mapping = self.block_manager.swap_out(seq_group)
1409
        blocks_to_swap_out.extend(mapping)
1410
1411
        for seq in seq_group.get_seqs(status=SequenceStatus.RUNNING):
            seq.status = SequenceStatus.SWAPPED
1412

1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
    def _passed_delay(self, now: float) -> bool:
        if self.prev_prompt:
            self.last_prompt_latency = now - self.prev_time
        self.prev_time, self.prev_prompt = now, False
        # Delay scheduling prompts to let waiting queue fill up
        if self.scheduler_config.delay_factor > 0 and self.waiting:
            earliest_arrival_time = min(
                [e.metrics.arrival_time for e in self.waiting])
            passed_delay = (
                (now - earliest_arrival_time) >
                (self.scheduler_config.delay_factor * self.last_prompt_latency)
                or not self.running)
        else:
            passed_delay = True
        return passed_delay
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440

    def _get_num_lookahead_slots(self, is_prefill: bool) -> int:
        """The number of slots to allocate per sequence per step, beyond known
        token ids. Speculative decoding uses these slots to store KV activations
        of tokens which may or may not be accepted.

        Speculative decoding does not yet support prefill, so we do not perform
        lookahead allocation for prefill.
        """
        if is_prefill:
            return 0

        return self.scheduler_config.num_lookahead_slots
1441
1442
1443

    def _get_num_new_tokens(self, seq_group: SequenceGroup,
                            status: SequenceStatus, enable_chunking: bool,
1444
                            budget: SchedulingBudget) -> int:
1445
1446
1447
1448
1449
1450
1451
        """Get the next new tokens to compute for a given sequence group
            that's in a given `status`.

        The API could chunk the number of tokens to compute based on `budget`
        if `enable_chunking` is True. If a sequence group has multiple
        sequences (e.g., running beam search), it means it is in decoding
        phase, so chunking doesn't happen.
1452
1453

        Returns 0 if the new token cannot be computed due to token budget.
1454
1455
1456
1457
1458
        """
        num_new_tokens = 0
        seqs = seq_group.get_seqs(status=status)
        for seq in seqs:
            num_new_tokens += seq.get_num_new_tokens()
1459
        assert num_new_tokens > 0
1460
1461
1462
1463
1464
1465
1466
        # Chunk if a running request cannot fit in.
        # If number of seq > 1, it means it is doing beam search in a
        # decode phase. Do not chunk in that case.
        if enable_chunking and len(seqs) == 1:
            num_new_tokens = min(num_new_tokens,
                                 budget.remaining_token_budget())
        return num_new_tokens