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

3
from typing import TYPE_CHECKING, Optional
4

5
6
import torch

7
8
9
from vllm.logger import init_logger

from .interface import Platform, PlatformEnum, _Backend
10

11
12
13
14
if TYPE_CHECKING:
    from vllm.config import VllmConfig
else:
    VllmConfig = None
15

16
17
logger = init_logger(__name__)

18
19
20

class TpuPlatform(Platform):
    _enum = PlatformEnum.TPU
21
    device_name: str = "tpu"
22
    device_type: str = "tpu"
23
    dispatch_key: str = "XLA"
24
    ray_device_key: str = "TPU"
25
    device_control_env_var: str = "TPU_VISIBLE_CHIPS"
26

27
28
29
    supported_quantization: list[str] = [
        "tpu_int8", "compressed-tensors", "compressed_tensors"
    ]
30

31
    @classmethod
32
33
    def get_attn_backend_cls(cls, selected_backend: _Backend, head_size: int,
                             dtype: torch.dtype, kv_cache_dtype: Optional[str],
34
35
                             block_size: int, use_v1: bool,
                             use_mla: bool) -> str:
36
37
        if selected_backend != _Backend.PALLAS:
            logger.info("Cannot use %s backend on TPU.", selected_backend)
38
39
        logger.info("Using Pallas backend.")
        return "vllm.attention.backends.pallas.PallasAttentionBackend"
40

41
42
43
44
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
        raise NotImplementedError

45
46
47
48
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        raise NotImplementedError

49
50
51
52
    @classmethod
    def is_async_output_supported(cls, enforce_eager: Optional[bool]) -> bool:
        return True

53
54
    @classmethod
    def inference_mode(cls):
55
        return torch.no_grad()
56
57
58
59

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
        from vllm.config import CompilationLevel
60
61
62
63
64

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

65
        compilation_config = vllm_config.compilation_config
66
67
        if compilation_config.level == CompilationLevel.NO_COMPILATION:
            # TPU does not support NO_COMPILATION
68
69
70
            compilation_config.level = CompilationLevel.DYNAMO_ONCE
        assert compilation_config.level < CompilationLevel.PIECEWISE,\
            "TPU does not support Inductor."
71
72
73

        if compilation_config.backend == "":
            compilation_config.backend = "openxla"
74
75
76
77

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

78
79
80
81
82
83
84
85
86
87
        assert not vllm_config.scheduler_config.chunked_prefill_enabled, (
            "Chunked prefill is not yet supported for TPU backend")
        assert not vllm_config.speculative_config, (
            "Speculative decoding is not yet supported for TPU backend")
        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

88
89
90
91
92
93
94
95
        parallel_config = vllm_config.parallel_config
        scheduler_config = vllm_config.scheduler_config
        if parallel_config.worker_cls == "auto":
            if scheduler_config.is_multi_step:
                parallel_config.worker_cls = \
                    "vllm.worker.multi_step_tpu_worker.MultiStepTPUWorker"
            else:
                parallel_config.worker_cls = "vllm.worker.tpu_worker.TPUWorker"