abstract.py 3.5 KB
Newer Older
1
from typing import Type
2
3

from vllm.config import VllmConfig
4
5
6
7
8
9
10
from vllm.executor.executor_base import ExecutorBase
from vllm.executor.ray_distributed_executor import (  # noqa
    RayDistributedExecutor as RayDistributedExecutorV0)
from vllm.executor.uniproc_executor import (  # noqa
    ExecutorWithExternalLauncher as ExecutorWithExternalLauncherV0)
from vllm.executor.uniproc_executor import (  # noqa
    UniProcExecutor as UniProcExecutorV0)
11
from vllm.v1.kv_cache_interface import KVCacheConfig, KVCacheSpec
12
13
14
from vllm.v1.outputs import ModelRunnerOutput


15
16
17
18
class Executor(ExecutorBase):
    """
    Abstract class for v1 executors, mainly define some methods for v1.
    For methods shared by v0 and v1, define them in ExecutorBase"""
19

20
21
22
    @staticmethod
    def get_class(vllm_config: VllmConfig) -> Type["Executor"]:
        executor_class: Type[Executor]
23
        parallel_config = vllm_config.parallel_config
24
        distributed_executor_backend = (
25
26
27
28
29
30
31
32
33
            parallel_config.distributed_executor_backend)
        if distributed_executor_backend is None:
            # If the user does not specify the distributed executor backend,
            # we will choose the backend based on the world size.
            if parallel_config.world_size > 1:
                distributed_executor_backend = "mp"
            else:
                distributed_executor_backend = "uni"

34
        if distributed_executor_backend == "ray":
35
            executor_class = RayDistributedExecutor
36
37
38
        elif distributed_executor_backend == "mp":
            from vllm.v1.executor.multiproc_executor import MultiprocExecutor
            executor_class = MultiprocExecutor
39
40
41
42
43
44
        elif distributed_executor_backend == "uni":
            executor_class = UniProcExecutor
        elif distributed_executor_backend == "external_launcher":
            # TODO: make v1 scheduling deterministic
            # to support external launcher
            executor_class = ExecutorWithExternalLauncher
45
        else:
46
47
            raise ValueError("Unknown distributed executor backend: "
                             f"{distributed_executor_backend}")
48
49
        return executor_class

50
    def initialize(self, kv_cache_config: KVCacheConfig) -> None:
51
52
53
54
55
56
        """
        Initialize the KV caches and begin the model execution loop of the
        underlying workers.
        """
        self.collective_rpc("initialize_cache", args=(kv_cache_config, ))
        self.collective_rpc("compile_or_warm_up_model")
57

58
    def determine_available_memory(self) -> int:  # in bytes
59
60
61
62
63
        output = self.collective_rpc("determine_available_memory")
        # Since we use a shared centralized controller, we take the minimum
        # memory size across all workers to make sure all the memory
        # operators can be applied to all workers.
        return min(output)
64
65

    def get_kv_cache_spec(self) -> KVCacheSpec:
66
67
68
69
        output = self.collective_rpc("get_kv_cache_spec")
        for x in output:
            assert x == output[0]
        return output[0]
70
71
72
73
74

    def execute_model(
        self,
        scheduler_output,
    ) -> ModelRunnerOutput:
75
76
77
        output = self.collective_rpc("execute_model",
                                     args=(scheduler_output, ))
        return output[0]
78

79
    def profile(self, is_start: bool = True):
80
81
82
83
84
85
86
87
88
        self.collective_rpc("profile", args=(is_start, ))


class UniProcExecutor(UniProcExecutorV0, Executor):
    pass


class ExecutorWithExternalLauncher(ExecutorWithExternalLauncherV0, Executor):
    pass
89
90


91
92
class RayDistributedExecutor(RayDistributedExecutorV0, Executor):
    pass