tpu.py 9.71 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
import contextlib
5
from typing import TYPE_CHECKING, Optional, cast
6

7
import torch
8
from tpu_info import device
9

10

11
from vllm.attention.backends.registry import AttentionBackendEnum
12
from vllm.inputs import ProcessorInputs, PromptType
13
14
from vllm.logger import init_logger

15
from .interface import Platform, PlatformEnum
16

17
if TYPE_CHECKING:
18
19
    from typing import TypeAlias

20
    from vllm.attention.selector import AttentionSelectorConfig
21
    from vllm.config import VllmConfig
22
    from vllm.config.cache import BlockSize
23
    from vllm.pooling_params import PoolingParams
24
25
26
    from vllm.sampling_params import SamplingParams

    ParamsType: TypeAlias = SamplingParams | PoolingParams
27
else:
28
    BlockSize = None
29
    VllmConfig = None
30
    PoolingParams = None
31
    ParamsType = None
32

33
34
logger = init_logger(__name__)

35
USE_TPU_INFERENCE = False
36

37
38
39

class TpuPlatform(Platform):
    _enum = PlatformEnum.TPU
40
    device_name: str = "tpu"
41
    device_type: str = "tpu"
42
    dispatch_key: str = "XLA"
43
    ray_device_key: str = "TPU"
44
    dist_backend: str = "gloo"
45
    device_control_env_var: str = "TPU_VISIBLE_CHIPS"
46
    simple_compile_backend: str = "openxla"
47

48
    supported_quantization: list[str] = ["fp8", "tpu_int8", "compressed-tensors"]
49

50
    additional_env_vars: list[str] = ["TPU_CHIPS_PER_HOST_BOUNDS", "TPU_HOST_BOUNDS"]
51

52
    @classmethod
53
54
55
56
    def import_kernels(cls) -> None:
        # Do not import vllm._C
        with contextlib.suppress(ImportError):
            import vllm._moe_C  # noqa: F401
57

58
    @classmethod
59
60
    def get_attn_backend_cls(
        cls,
61
        selected_backend: "AttentionBackendEnum",
62
        attn_selector_config: "AttentionSelectorConfig",
63
    ) -> str:
64
        if attn_selector_config.use_sparse:
65
            raise NotImplementedError("Sparse Attention is not supported on TPU.")
66
        if selected_backend != AttentionBackendEnum.PALLAS:
67
            logger.info("Cannot use %s backend on TPU.", selected_backend)
68

69
        logger.info("Using Pallas V1 backend.")
70
        return AttentionBackendEnum.PALLAS.get_path()
71

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
    @classmethod
    def get_supported_vit_attn_backends(cls) -> list["AttentionBackendEnum"]:
        return [
            AttentionBackendEnum.PALLAS,
        ]

    @classmethod
    def get_vit_attn_backend(
        cls,
        head_size: int,
        dtype: torch.dtype,
        backend: Optional["AttentionBackendEnum"] = None,
    ) -> "AttentionBackendEnum":
        if backend is not None:
            assert backend in cls.get_supported_vit_attn_backends(), (
                f"Backend {backend} is not supported for vit attention"
                f"Supported backends are: {cls.get_supported_vit_attn_backends()}."
            )
            logger.info_once(f"Using backend {backend} for vit attention.")
            return backend

        logger.info_once(
            f"Using default backend {AttentionBackendEnum.PALLAS} for vit attention."
        )
        return AttentionBackendEnum.PALLAS

98
99
100
101
102
103
104
    @classmethod
    def set_device(cls, device: torch.device) -> None:
        """
        Set the device for the current platform.
        """
        torch.tpu.set_device(device)

105
106
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
107
108
        chip_type, _ = device.get_local_chips()
        return f"TPU {chip_type.name}"
109

110
111
112
113
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        raise NotImplementedError

114
115
116
117
118
    @classmethod
    def get_punica_wrapper(cls) -> str:
        return "vllm.lora.punica_wrapper.punica_tpu.PunicaWrapperTPU"

    @classmethod
119
    def get_infinity_values(cls, dtype: torch.dtype) -> tuple[float, float]:
120
121
122
123
124
125
126
127
128
129
        return torch.finfo(dtype).min, torch.finfo(dtype).max

    @classmethod
    def can_update_inplace(cls):
        return False

    @classmethod
    def get_lora_vocab_padding_size(cls) -> int:
        return 1

130
131
    @classmethod
    def inference_mode(cls):
132
        return torch.no_grad()
133
134
135

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
136
        from vllm.config import CompilationMode, CUDAGraphMode
137
138

        cache_config = vllm_config.cache_config
139
        # For v0, the default block size is 16.
140
        if cache_config and cache_config.block_size is None:
141
            cache_config.block_size = cast(BlockSize, 16)
142
        compilation_config = vllm_config.compilation_config
143

144
145
        # TPU only supports DYNAMO_TRACE_ONCE compilation mode
        if compilation_config.mode != CompilationMode.DYNAMO_TRACE_ONCE:
146
            logger.info(
147
148
                "[TPU] Forcing DYNAMO_TRACE_ONCE compilation mode, and\
                disabling cudagraph."
149
            )
150
            compilation_config.mode = CompilationMode.DYNAMO_TRACE_ONCE
151

152
153
154
155
156
157
158
159
        if (
            compilation_config.cudagraph_mode is None
            or compilation_config.cudagraph_mode.max_cudagraph_mode()
            != CUDAGraphMode.NONE
        ):
            logger.info(
                "[TPU] CUDA graph is not supported on TPU, disabling cudagraphs."
            )
160
161
            compilation_config.cudagraph_mode = CUDAGraphMode.NONE

162
163
        if compilation_config.backend == "":
            compilation_config.backend = "openxla"
164

165
        assert vllm_config.speculative_config is None, (
166
            "TPU does not support speculative decoding"
167
        )
168

169
        model_config = vllm_config.model_config
170
171
172
173
        if model_config is not None and model_config.dtype in (
            torch.float16,
            torch.float32,
        ):
174
175
            logger.warning(
                "The TPU backend currently does not support %s. "
176
177
178
                "Using bfloat16 instead.",
                model_config.dtype,
            )
179
            model_config.dtype = torch.bfloat16
180

181
        from vllm.v1.attention.backends.pallas import PallasAttentionBackend
182
183

        cache_config.block_size = PallasAttentionBackend.get_page_size(vllm_config)  # type: ignore[assignment]
184

185
186
187
        parallel_config = vllm_config.parallel_config
        scheduler_config = vllm_config.scheduler_config
        if parallel_config.worker_cls == "auto":
188
            parallel_config.worker_cls = "vllm.v1.worker.tpu_worker.TPUWorker"
189
190

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

194
195
196
197
198
199
200
201
202
        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."
            )
203
204
            scheduler_config.disable_chunked_mm_input = True

205
        if model_config and model_config.use_mla:
206
207
            logger.info(
                "MLA is enabled on a non-GPU platform; forcing chunked "
208
209
                "prefill and prefix caching to be disabled."
            )
210
211
            vllm_config.scheduler_config.enable_chunked_prefill = False
            vllm_config.scheduler_config.max_num_batched_tokens = max(
212
                vllm_config.model_config.max_model_len,
213
                vllm_config.scheduler_config.DEFAULT_MAX_NUM_BATCHED_TOKENS,
214
            )
215

216
217
218
219
    @classmethod
    def is_pin_memory_available(cls):
        logger.warning("Pin memory is not supported on TPU.")
        return False
220
221
222
223

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

225
    @classmethod
226
227
228
    def validate_request(
        cls,
        prompt: PromptType,
229
        params: ParamsType,
230
        processed_inputs: ProcessorInputs,
231
232
    ) -> None:
        """Raises if this request is unsupported on this platform"""
233
        from vllm.sampling_params import SamplingParams, SamplingType
234

235
236
237
238
        if (
            isinstance(params, SamplingParams)
            and params.sampling_type == SamplingType.RANDOM_SEED
        ):
239
            raise ValueError("Torch XLA does not support per-request seed.")
240

241
242
243
244
245
246
247
248
249
250
    @classmethod
    @torch.compile(backend="openxla")
    def insert_blocks_to_device(
        cls,
        src_cache: torch.Tensor,
        dst_cache: torch.Tensor,
        src_block_indices: torch.Tensor,
        dst_block_indices: torch.Tensor,
    ) -> None:
        torch.ops.xla.dynamo_set_buffer_donor_(dst_cache, True)
251
        dst_cache[dst_block_indices] = src_cache[src_block_indices].to(dst_cache.device)
252
253
254
255
256
257
258
259
260
261

    @classmethod
    @torch.compile(backend="openxla")
    def swap_out_blocks_to_host(
        cls,
        src_cache: torch.Tensor,
        dst_cache: torch.Tensor,
        src_block_indices: torch.Tensor,
        dst_block_indices: torch.Tensor,
    ) -> None:
262
        """tpu blocks to cpu blocks"""
263
264
265
        torch.ops.xla.dynamo_set_buffer_donor_(src_cache, True)
        dst_cache[dst_block_indices] = src_cache[src_block_indices].cpu()

266
267
268
269
    @classmethod
    def use_sync_weight_loader(cls) -> bool:
        return True

270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
    @classmethod
    def check_max_model_len(cls, max_model_len: int) -> int:
        """
        Check max_model_len for the current platform.
        """
        logger.warning(
            "--max-model-len is not specified, "
            "it's currently using model's default length %d, "
            "which might be too large."
            "Please input with --max-model-len based on your "
            "request input length and output length, to avoid "
            "unnecessary degradation.",
            max_model_len,
        )
        return max_model_len

286
287

try:
288
    from tpu_inference.platforms import (
Johnny Yang's avatar
Johnny Yang committed
289
290
        TpuPlatform as TpuInferencePlatform,
    )
291

292
293
    TpuPlatform = TpuInferencePlatform  # type: ignore
    USE_TPU_INFERENCE = True
294
except ImportError:
295
    logger.info("tpu_inference not found, using vLLM's TpuPlatform")
296
    pass