tpu.py 1.44 KB
Newer Older
1
from typing import TYPE_CHECKING
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
19

class TpuPlatform(Platform):
    _enum = PlatformEnum.TPU

20
21
22
23
24
25
    @classmethod
    def get_default_attn_backend(cls, selected_backend: _Backend) -> _Backend:
        if selected_backend != _Backend.PALLAS:
            logger.info("Cannot use %s backend on TPU.", selected_backend)
        return _Backend.PALLAS

26
27
28
29
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
        raise NotImplementedError

30
31
32
33
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        raise NotImplementedError

34
35
    @classmethod
    def inference_mode(cls):
36
        return torch.no_grad()
37
38
39
40
41

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
        from vllm.config import CompilationLevel
        compilation_config = vllm_config.compilation_config
42
43
        if compilation_config.level == CompilationLevel.NO_COMPILATION:
            # TPU does not support NO_COMPILATION
44
45
46
            compilation_config.level = CompilationLevel.DYNAMO_ONCE
        assert compilation_config.level < CompilationLevel.PIECEWISE,\
            "TPU does not support Inductor."
47
48
49

        if compilation_config.backend == "":
            compilation_config.backend = "openxla"