neuron_executor.py 3.24 KB
Newer Older
1
2
from typing import Dict, List, Optional

3
from vllm.config import (CacheConfig, DeviceConfig, LoRAConfig, ModelConfig,
4
5
                         ParallelConfig, SchedulerConfig, SpeculativeConfig,
                         VisionLanguageConfig)
6
7
from vllm.executor.executor_base import ExecutorBase
from vllm.logger import init_logger
8
from vllm.lora.request import LoRARequest
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from vllm.sequence import SamplerOutput, SequenceGroupMetadata

logger = init_logger(__name__)


class NeuronExecutor(ExecutorBase):

    def __init__(
        self,
        model_config: ModelConfig,
        cache_config: CacheConfig,
        parallel_config: ParallelConfig,
        scheduler_config: SchedulerConfig,
        device_config: DeviceConfig,
        lora_config: Optional[LoRAConfig],
24
        vision_language_config: Optional[VisionLanguageConfig],
25
        speculative_config: Optional[SpeculativeConfig],
26
27
28
29
30
31
    ) -> None:
        self.model_config = model_config
        assert lora_config is None, "LoRA is not supported for Neuron backend."
        self.parallel_config = parallel_config
        self.scheduler_config = scheduler_config
        self.device_config = device_config
32
33
        assert (not speculative_config
                ), "Speculative decoding not yet supported for Neuron backend."
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

        # 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,
        )
        self.driver_worker.init_device()
        self.driver_worker.load_model()

50
51
52
53
54
55
56
57
58
59
60
61
    def determine_num_available_blocks(self) -> tuple[int, int]:
        """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)

62
63
64
65
66
67
68
69
70
71
72
73
74
75
    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:
        assert (blocks_to_swap_in == {} and blocks_to_swap_out == {}
                and blocks_to_copy == {}), (
                    "Cache operations are not supported for Neuron backend.")

        output = self.driver_worker.execute_model(
            seq_group_metadata_list=seq_group_metadata_list)
        return output

    def add_lora(self, lora_request: LoRARequest) -> bool:
76
        return self.driver_worker.add_lora(lora_request)
77
78

    def remove_lora(self, lora_id: int) -> bool:
79
        return self.driver_worker.remove_lora(lora_id)
80
81

    def list_loras(self) -> List[int]:
82
        return self.driver_worker.list_loras()
83
84
85
86
87

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