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

4
import contextlib
5
import os
6
from typing import TYPE_CHECKING
7

8
9
import torch

10
import vllm.envs as envs
11
12
from vllm.logger import init_logger

13
from .interface import DeviceCapability, Platform, PlatformEnum
14

15
if TYPE_CHECKING:
16
17
    from vllm.attention.backends.registry import AttentionBackendEnum
    from vllm.config import VllmConfig
18
19
else:
    VllmConfig = None
20
    AttentionBackendEnum = None
21

22
logger = init_logger(__name__)
23
24
25
26


class XPUPlatform(Platform):
    _enum = PlatformEnum.XPU
27
    device_name: str = "xpu"
28
    device_type: str = "xpu"
29
    dispatch_key: str = "XPU"
30
31
32
    # Intel XPU's device key is "GPU" for Ray.
    # see https://github.com/ray-project/ray/blob/6a5eb5865eeb9ccf058a79b44f107e327e360673/python/ray/_private/accelerators/intel_gpu.py#L20 # noqa: E501
    ray_device_key: str = "GPU"
33
    dist_backend: str = "ccl"  # ccl | xccl
34
    device_control_env_var: str = "ZE_AFFINITY_MASK"
35

36
    @classmethod
37
38
39
40
    def import_kernels(cls) -> None:
        # Do not import vllm._C
        with contextlib.suppress(ImportError):
            import vllm._moe_C  # noqa: F401
41

42
    @classmethod
43
44
    def get_attn_backend_cls(
        cls,
45
        selected_backend: "AttentionBackendEnum",
46
47
        head_size: int,
        dtype: torch.dtype,
48
        kv_cache_dtype: str | None,
49
50
51
52
        block_size: int,
        use_mla: bool,
        has_sink: bool,
        use_sparse,
53
        attn_type: str | None = None,
54
    ) -> str:
55
56
57
58
59
60
61
62
        from vllm.v1.attention.backends.utils import set_kv_cache_layout

        set_kv_cache_layout("NHD")
        logger.info(
            "Setting VLLM_KV_CACHE_LAYOUT to 'NHD' for XPU; "
            "only NHD layout is supported by XPU attention kernels."
        )

63
        from vllm.attention.backends.registry import AttentionBackendEnum
64

65
        if use_sparse:
66
            raise NotImplementedError("Sparse Attention is not supported on XPU.")
67
        if selected_backend == AttentionBackendEnum.TRITON_ATTN:
68
            logger.info_once("Using Triton backend.")
69
70
            return AttentionBackendEnum.TRITON_ATTN.get_path()
        elif selected_backend == AttentionBackendEnum.FLASH_ATTN:
71
            logger.info_once("Using Flash Attention backend.")
72
            return AttentionBackendEnum.FLASH_ATTN.get_path()
73
74
75
        elif selected_backend:
            raise ValueError(
                f"Invalid attention backend for {cls.device_name}, "
76
                f"with use_mla: {use_mla}"
77
            )
78

79
        logger.info("Using Flash Attention backend.")
80
        return AttentionBackendEnum.FLASH_ATTN.get_path()
81

82
83
84
85
86
87
88
    @classmethod
    def set_device(cls, device: torch.device) -> None:
        """
        Set the device for the current platform.
        """
        torch.xpu.set_device(device)

89
    @classmethod
90
    def get_device_capability(
91
92
        cls,
        device_id: int = 0,
93
    ) -> DeviceCapability | None:
94
95
96
        # capacity format differs from cuda's and will cause unexpected
        # failure, so use None directly
        return None
97

98
99
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
100
        return torch.xpu.get_device_name(device_id)
101

102
103
    @classmethod
    def get_punica_wrapper(cls) -> str:
104
105
106
107
108
        xpu_use_triton_kernel = os.getenv("XPU_USE_TRITON_KERNEL", "0") == "1"
        if not xpu_use_triton_kernel:
            return "vllm.lora.punica_wrapper.punica_xpu.PunicaWrapperXPU"
        else:
            return "vllm.lora.punica_wrapper.punica_gpu.PunicaWrapperGPU"
109

110
111
112
113
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
        device_props = torch.xpu.get_device_properties(device_id)
        return device_props.total_memory
114

115
    @classmethod
116
117
    def get_vit_attn_backend(
        cls, head_size: int, dtype: torch.dtype
118
119
120
    ) -> "AttentionBackendEnum":
        from vllm.attention.backends.registry import AttentionBackendEnum

121
        return AttentionBackendEnum.FLASH_ATTN
122

123
124
    @classmethod
    def inference_mode(cls):
125
        return torch.no_grad()
126
127
128

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
129
        cache_config = vllm_config.cache_config
130
        model_config = vllm_config.model_config
131
        # in V1(or with ipex chunked prefill) block_size is 64
132
        if cache_config and cache_config.block_size is None:
133
            cache_config.block_size = 64
134

135
        # lazy import to avoid circular import
136
        from vllm.config import CompilationMode, CUDAGraphMode
137

138
        compilation_config = vllm_config.compilation_config
139
140
        if compilation_config.compile_sizes is None:
            compilation_config.compile_sizes = []
141

142
        assert compilation_config.cudagraph_mode == CUDAGraphMode.NONE, (
143
            "CUDA graph mode should be NONE on XPU"
144
        )
145

146
        if vllm_config.lora_config is not None:
147
            compilation_config.mode = CompilationMode.NONE
148

149
150
        # check and update parallel config
        parallel_config = vllm_config.parallel_config
151
        parallel_config.worker_cls = "vllm.v1.worker.xpu_worker.XPUWorker"
152
153
        if vllm_config.kv_transfer_config is not None:
            vllm_config.kv_transfer_config.enable_permute_local_kv = True
154
155

        if parallel_config.distributed_executor_backend is None:
156
157
158
159
            if parallel_config.world_size > 1:
                parallel_config.distributed_executor_backend = "ray"
            else:
                parallel_config.distributed_executor_backend = "uni"
160
161
        elif parallel_config.distributed_executor_backend == "mp":
            # FIXME(kunshang):
162
            # spawn needs calling `if __name__ == '__main__':`
163
            # fork is not supported for xpu start new process.
164
165
166
            if envs.VLLM_WORKER_MULTIPROC_METHOD != "spawn":
                os.environ["VLLM_WORKER_MULTIPROC_METHOD"] = "spawn"
                logger.warning(
167
168
169
170
171
172
173
                    "Please use spawn as start method if you want to use mp."
                )
        elif (
            parallel_config.distributed_executor_backend != "ray"
            and parallel_config.distributed_executor_backend != "uni"
            and parallel_config.distributed_executor_backend != "external_launcher"
        ):
174
175
176
            logger.warning(
                "%s is not supported on XPU, fallback to ray distributed"
                " executor backend.",
177
178
                parallel_config.distributed_executor_backend,
            )
179
            parallel_config.distributed_executor_backend = "ray"
180

181
        if model_config and model_config.use_mla:
182
183
            logger.info(
                "MLA is enabled on a non-GPU platform; forcing chunked "
184
185
                "prefill and prefix caching to be disabled."
            )
186
187
            vllm_config.scheduler_config.enable_chunked_prefill = False
            vllm_config.scheduler_config.max_num_batched_tokens = max(
188
                vllm_config.model_config.max_model_len,
189
                vllm_config.scheduler_config.DEFAULT_MAX_NUM_BATCHED_TOKENS,
190
            )
191

192
193
194
195
    @classmethod
    def support_hybrid_kv_cache(cls) -> bool:
        return True

196
197
198
199
    @classmethod
    def support_static_graph_mode(cls) -> bool:
        return False

200
201
    @classmethod
    def is_pin_memory_available(cls):
202
        return True
203
204

    @classmethod
205
    def get_current_memory_usage(
206
        cls, device: torch.types.Device | None = None
207
    ) -> float:
208
209
        torch.xpu.reset_peak_memory_stats(device)
        return torch.xpu.max_memory_allocated(device)
210

211
212
213
214
    @classmethod
    def fp8_dtype(cls) -> torch.dtype:
        return torch.float8_e5m2

215
216
217
218
219
    @classmethod
    def is_data_center_gpu(cls) -> bool:
        device_name = cls.get_device_name().lower()
        return device_name.count("data center gpu") > 0

220
221
222
    @classmethod
    def get_device_communicator_cls(cls) -> str:
        return "vllm.distributed.device_communicators.xpu_communicator.XpuCommunicator"  # noqa
223
224
225

    @classmethod
    def device_count(cls) -> int:
226
        return torch.xpu.device_count()
227
228

    @classmethod
229
230
    def check_if_supports_dtype(cls, dtype: torch.dtype):
        if dtype == torch.bfloat16:  # noqa: SIM102
231
232
233
234
235
236
            device_name = cls.get_device_name().lower()
            # client gpu a770
            if device_name.count("a770") > 0:
                raise ValueError(
                    "Intel Arc A770 have bfloat16 accuracy known issue. "
                    "You can use float16 instead by explicitly setting the "
237
238
                    "`dtype` flag in CLI, for example: --dtype=half."
                )
239
240
241
242

    @classmethod
    def opaque_attention_op(cls) -> bool:
        return True
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266

    @classmethod
    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:
        """Copy blocks from src_cache to dst_cache on XPU."""
        _src_cache = src_cache[:, src_block_indices]
        dst_cache[:, dst_block_indices] = _src_cache.to(dst_cache.device)

    @classmethod
    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:
        """Copy blocks from XPU to host (CPU)."""
        _src_cache = src_cache[:, src_block_indices]
        dst_cache[:, dst_block_indices] = _src_cache.cpu()