tpu.py 1.06 KB
Newer Older
1
import os
2
from typing import TYPE_CHECKING
3

4
5
import torch

6
7
from vllm.plugins import set_torch_compile_backend

8
9
from .interface import Platform, PlatformEnum

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

set_torch_compile_backend("openxla")

17
18
19
20

class TpuPlatform(Platform):
    _enum = PlatformEnum.TPU

21
22
23
24
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
        raise NotImplementedError

25
26
27
28
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        raise NotImplementedError

29
30
    @classmethod
    def inference_mode(cls):
31
        return torch.no_grad()
32
33
34
35
36
37
38
39
40

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
        from vllm.config import CompilationLevel
        compilation_config = vllm_config.compilation_config
        if "VLLM_TORCH_COMPILE_LEVEL" not in os.environ:
            compilation_config.level = CompilationLevel.DYNAMO_ONCE
        assert compilation_config.level < CompilationLevel.PIECEWISE,\
            "TPU does not support Inductor."