tpu.py 2.75 KB
Newer Older
1
from typing import TYPE_CHECKING, Optional
2

3
4
import torch

5
6
7
from vllm.logger import init_logger

from .interface import Platform, PlatformEnum, _Backend
8

9
10
11
12
if TYPE_CHECKING:
    from vllm.config import VllmConfig
else:
    VllmConfig = None
13

14
15
logger = init_logger(__name__)

16
17
18

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

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

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

38
39
40
41
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
        raise NotImplementedError

42
43
44
45
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        raise NotImplementedError

46
47
48
49
    @classmethod
    def is_async_output_supported(cls, enforce_eager: Optional[bool]) -> bool:
        return True

50
51
    @classmethod
    def inference_mode(cls):
52
        return torch.no_grad()
53
54
55
56

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
        from vllm.config import CompilationLevel
57
58
59
60
61

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

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

        if compilation_config.backend == "":
            compilation_config.backend = "openxla"
71
72
73
74
75
76
77
78
79
80
81
82

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

        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"