neuron_executor.py 3.18 KB
Newer Older
1
from typing import List, Set, Tuple
2

3
from vllm.executor.executor_base import ExecutorAsyncBase, ExecutorBase
4
from vllm.logger import init_logger
5
from vllm.lora.request import LoRARequest
6
from vllm.sequence import ExecuteModelRequest, SamplerOutput
7
from vllm.utils import make_async
8
9
10
11
12
13

logger = init_logger(__name__)


class NeuronExecutor(ExecutorBase):

14
15
16
17
    def _init_executor(self) -> None:
        assert (self.lora_config is
                None), "LoRA is not supported for Neuron backend."
        assert (not self.speculative_config
18
                ), "Speculative decoding not yet supported for Neuron backend."
19
20
21
22
23
24
25
26
27
28
29
30

        # Instantiate the worker and load the model to the device.
        self._init_worker()

    def _init_worker(self):
        from vllm.worker.neuron_worker import NeuronWorker

        self.driver_worker = NeuronWorker(
            self.model_config,
            self.parallel_config,
            self.scheduler_config,
            self.device_config,
31
            self.cache_config,
32
33
34
35
        )
        self.driver_worker.init_device()
        self.driver_worker.load_model()

36
    def determine_num_available_blocks(self) -> Tuple[int, int]:
37
38
39
40
41
42
43
44
45
46
47
        """Determine the number of available KV blocks by invoking the
        underlying worker.
        """
        return self.driver_worker.determine_num_available_blocks()

    def initialize_cache(self, num_gpu_blocks: int,
                         num_cpu_blocks: int) -> None:
        """Initialize the KV cache by invoking the underlying worker.
        """
        self.driver_worker.initialize_cache(num_gpu_blocks, num_cpu_blocks)

48
49
50
    def execute_model(
            self,
            execute_model_req: ExecuteModelRequest) -> List[SamplerOutput]:
51
52
53
        assert (not execute_model_req.blocks_to_swap_in
                and not execute_model_req.blocks_to_swap_out
                and not execute_model_req.blocks_to_copy), (
54
                    "Cache operations are not supported for Neuron backend.")
55
        assert execute_model_req.num_lookahead_slots == 0, (
56
            "lookahead not supported for Neuron backend.")
57

58
        output = self.driver_worker.execute_model(execute_model_req)
59
60
61
        return output

    def add_lora(self, lora_request: LoRARequest) -> bool:
62
        return self.driver_worker.add_lora(lora_request)
63
64

    def remove_lora(self, lora_id: int) -> bool:
65
        return self.driver_worker.remove_lora(lora_id)
66

67
68
69
    def pin_lora(self, lora_id: int) -> bool:
        return self.driver_worker.pin_lora(lora_id)

70
    def list_loras(self) -> Set[int]:
71
        return self.driver_worker.list_loras()
72
73
74
75
76

    def check_health(self) -> None:
        # NeuronExecutor will always be healthy as long as
        # it's running.
        return
77
78
79
80
81
82


class NeuronExecutorAsync(NeuronExecutor, ExecutorAsyncBase):

    async def execute_model_async(
        self,
83
        execute_model_req: ExecuteModelRequest,
84
    ) -> List[SamplerOutput]:
85
86
87
        output = await make_async(
            self.driver_worker.execute_model
        )(seq_group_metadata_list=execute_model_req.seq_group_metadata_list, )
88
89
90
91
92
93
        return output

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