tpu.py 5.75 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
from typing import TYPE_CHECKING, Optional, Union
4

5
6
import torch

7
import vllm.envs as envs
8
from vllm.inputs import PromptType
9
from vllm.logger import init_logger
10
from vllm.sampling_params import SamplingParams, SamplingType
11
12

from .interface import Platform, PlatformEnum, _Backend
13

14
if TYPE_CHECKING:
15
    from vllm.config import ModelConfig, VllmConfig
16
    from vllm.pooling_params import PoolingParams
17
else:
18
    ModelConfig = None
19
    VllmConfig = None
20
    PoolingParams = None
21

22
23
logger = init_logger(__name__)

24
25
26

class TpuPlatform(Platform):
    _enum = PlatformEnum.TPU
27
    device_name: str = "tpu"
28
    device_type: str = "tpu"
29
    dispatch_key: str = "XLA"
30
    ray_device_key: str = "TPU"
31
    device_control_env_var: str = "TPU_VISIBLE_CHIPS"
32

33
34
35
    supported_quantization: list[str] = [
        "tpu_int8", "compressed-tensors", "compressed_tensors"
    ]
36

37
38
39
40
    additional_env_vars: list[str] = [
        "TPU_CHIPS_PER_HOST_BOUNDS", "TPU_HOST_BOUNDS"
    ]

41
    @classmethod
42
43
    def get_attn_backend_cls(cls, selected_backend: _Backend, head_size: int,
                             dtype: torch.dtype, kv_cache_dtype: Optional[str],
44
45
                             block_size: int, use_v1: bool,
                             use_mla: bool) -> str:
46
47
        if (selected_backend != _Backend.PALLAS
                and selected_backend != _Backend.PALLAS_VLLM_V1):
48
            logger.info("Cannot use %s backend on TPU.", selected_backend)
49
50
51
52
53
54
55

        if use_v1:
            logger.info("Using Pallas V1 backend.")
            return "vllm.v1.attention.backends.pallas.PallasAttentionBackend"
        else:
            logger.info("Using Pallas backend.")
            return "vllm.attention.backends.pallas.PallasAttentionBackend"
56

57
58
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
59
        return "tpu"
60

61
62
63
64
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        raise NotImplementedError

65
66
    @classmethod
    def is_async_output_supported(cls, enforce_eager: Optional[bool]) -> bool:
67
        return not envs.VLLM_USE_V1
68

69
70
    @classmethod
    def inference_mode(cls):
71
        return torch.no_grad()
72
73
74
75

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
        from vllm.config import CompilationLevel
76
77
78
79
80

        cache_config = vllm_config.cache_config
        if cache_config and cache_config.block_size is None:
            cache_config.block_size = 16

81
        compilation_config = vllm_config.compilation_config
82
83
84
85

        # TPU only supports DYNAMO_ONCE compilation level
        if compilation_config.level != CompilationLevel.DYNAMO_ONCE:
            logger.info("[TPU] Forcing DYNAMO_ONCE compilation level")
86
            compilation_config.level = CompilationLevel.DYNAMO_ONCE
87
88
89

        if compilation_config.backend == "":
            compilation_config.backend = "openxla"
90
91
92
93

        assert vllm_config.speculative_config is None, \
            "TPU does not support speculative decoding"

94
95
96
97
98
99
        if vllm_config.model_config.dtype in (torch.float16, torch.float32):
            logger.warning(
                "The TPU backend currently does not support %s. "
                "Using bfloat16 instead.", vllm_config.model_config.dtype)
            vllm_config.model_config.dtype = torch.bfloat16

100
101
102
        parallel_config = vllm_config.parallel_config
        scheduler_config = vllm_config.scheduler_config
        if parallel_config.worker_cls == "auto":
103
104
105
106
107
108
109
            if scheduler_config.is_multi_step:
                if envs.VLLM_USE_V1:
                    raise NotImplementedError(
                        "Multi-step scheduling is not supported (and not "
                        "needed) on vLLM V1. Please launch without "
                        "--num-scheduler-steps.")
                else:
110
111
                    parallel_config.worker_cls = \
                        "vllm.worker.multi_step_tpu_worker.MultiStepTPUWorker"
112
113
114
115
            else:
                if envs.VLLM_USE_V1:
                    parallel_config.worker_cls = \
                        "vllm.v1.worker.tpu_worker.TPUWorker"
116
117
118
119
120
121
122
                else:
                    parallel_config.worker_cls = \
                        "vllm.worker.tpu_worker.TPUWorker"

        assert not vllm_config.speculative_config, (
            "Speculative decoding is not yet supported for TPU backend")

123
124
125
126
127
128
129
        if scheduler_config.is_multimodal_model and not \
            scheduler_config.disable_chunked_mm_input:
            logger.warning("TPU does not support running Multimodal models"\
            " without setting `--disable_chunked_mm_input`. " \
            "Forcing --disable_chunked_mm_input.")
            scheduler_config.disable_chunked_mm_input = True

130
131
132
133
    @classmethod
    def is_pin_memory_available(cls):
        logger.warning("Pin memory is not supported on TPU.")
        return False
134
135
136
137

    @classmethod
    def get_device_communicator_cls(cls) -> str:
        return "vllm.distributed.device_communicators.tpu_communicator.TpuCommunicator"  # noqa
138
139
140
141

    @classmethod
    def use_all_gather(cls) -> bool:
        return True
142
143
144
145
146

    @classmethod
    def supports_v1(cls, model_config: ModelConfig) -> bool:
        # V1 support on TPU is experimental
        return True
147
148

    @classmethod
149
150
151
152
153
154
    def validate_request(
        cls,
        prompt: PromptType,
        params: Union[SamplingParams, PoolingParams],
    ) -> None:
        """Raises if this request is unsupported on this platform"""
155
156
157
158
159
160
161
        if isinstance(params, SamplingParams):
            if params.guided_decoding is not None:
                raise ValueError("Structured output is not supported on "
                                 f"{cls.device_name}.")
            if params.sampling_type == SamplingType.RANDOM_SEED:
                raise ValueError(
                    "Torch XLA does not support per-request seed.")