gpu_executor.py 4.26 KB
Newer Older
1
from typing import Dict, List, Set, Tuple
2
3
4

from vllm.executor.executor_base import ExecutorAsyncBase, ExecutorBase
from vllm.logger import init_logger
5
from vllm.lora.request import LoRARequest
6
from vllm.sequence import SamplerOutput, SequenceGroupMetadata
7
from vllm.utils import (get_distributed_init_method, get_ip, get_open_port,
8
9
10
11
12
13
14
                        make_async)

logger = init_logger(__name__)


class GPUExecutor(ExecutorBase):

15
16
    def _init_executor(self) -> None:
        assert (not self.speculative_config
17
18
                ), "Speculative decoding not yet supported for GPU backend"

19
20
21
22
23
24
        # Instantiate the worker and load the model to GPU.
        self._init_worker()

    def _init_worker(self):
        # Lazy import the Worker to avoid importing torch.cuda/xformers
        # before CUDA_VISIBLE_DEVICES is set in the Worker
25
        from vllm.worker.worker import Worker
26
27
28
29
30
31
32

        assert self.parallel_config.world_size == 1, (
            "GPUExecutor only supports single GPU.")

        distributed_init_method = get_distributed_init_method(
            get_ip(), get_open_port())
        self.driver_worker = Worker(
33
34
35
36
37
            model_config=self.model_config,
            parallel_config=self.parallel_config,
            scheduler_config=self.scheduler_config,
            device_config=self.device_config,
            cache_config=self.cache_config,
38
            load_config=self.load_config,
39
40
41
42
            local_rank=0,
            rank=0,
            distributed_init_method=distributed_init_method,
            lora_config=self.lora_config,
43
            vision_language_config=self.vision_language_config,
44
45
            is_driver_worker=True,
        )
46
        self.driver_worker.init_device()
47
48
        self.driver_worker.load_model()

49
    def determine_num_available_blocks(self) -> Tuple[int, int]:
50
51
        """Determine the number of available KV blocks by invoking the
        underlying worker.
52
        """
53
        return self.driver_worker.determine_num_available_blocks()
54

55
56
57
58
59
60
    def initialize_cache(self, num_gpu_blocks: int, num_cpu_blocks) -> None:
        """Initialize the KV cache by invoking the underlying worker.
        """
        # NOTE: This is logged in the executor because there can be >1 worker
        # with other executors. We could log in the engine level, but work
        # remains to abstract away the device for non-GPU configurations.
61
62
63
        logger.info(f"# GPU blocks: {num_gpu_blocks}, "
                    f"# CPU blocks: {num_cpu_blocks}")

64
        self.driver_worker.initialize_cache(num_gpu_blocks, num_cpu_blocks)
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86

    def execute_model(self,
                      seq_group_metadata_list: List[SequenceGroupMetadata],
                      blocks_to_swap_in: Dict[int, int],
                      blocks_to_swap_out: Dict[int, int],
                      blocks_to_copy: Dict[int, List[int]]) -> SamplerOutput:
        output = self.driver_worker.execute_model(
            seq_group_metadata_list=seq_group_metadata_list,
            blocks_to_swap_in=blocks_to_swap_in,
            blocks_to_swap_out=blocks_to_swap_out,
            blocks_to_copy=blocks_to_copy,
        )
        return output

    def add_lora(self, lora_request: LoRARequest) -> bool:
        assert lora_request.lora_int_id > 0, "lora_id must be greater than 0."
        return self.driver_worker.add_lora(lora_request)

    def remove_lora(self, lora_id: int) -> bool:
        assert lora_id > 0, "lora_id must be greater than 0."
        return self.driver_worker.remove_lora(lora_id)

87
    def list_loras(self) -> Set[int]:
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
        return self.driver_worker.list_loras()

    def check_health(self) -> None:
        # GPUExecutor will always be healthy as long as
        # it's running.
        return


class GPUExecutorAsync(GPUExecutor, ExecutorAsyncBase):

    async def execute_model_async(
        self,
        seq_group_metadata_list: List[SequenceGroupMetadata],
        blocks_to_swap_in: Dict[int, int],
        blocks_to_swap_out: Dict[int, int],
        blocks_to_copy: Dict[int, List[int]],
    ) -> SamplerOutput:
        output = await make_async(self.driver_worker.execute_model)(
            seq_group_metadata_list=seq_group_metadata_list,
            blocks_to_swap_in=blocks_to_swap_in,
            blocks_to_swap_out=blocks_to_swap_out,
            blocks_to_copy=blocks_to_copy)
        return output