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

4
import glob
5
import json
6
import os
7
import platform
8
import subprocess
9
import sys
10
from dataclasses import dataclass
11
from typing import TYPE_CHECKING
12

13
import psutil
14
import regex as re
15
16
import torch

17
from vllm import envs
18
from vllm.attention.backends.registry import AttentionBackendEnum
19
20
from vllm.logger import init_logger

21
from .interface import CpuArchEnum, Platform, PlatformEnum
22
23

logger = init_logger(__name__)
24

25
26
27
28
29
if TYPE_CHECKING:
    from vllm.config import VllmConfig
else:
    VllmConfig = None

30

31
def get_max_threads(pid=0):
32
    if hasattr(os, "sched_getaffinity"):
33
        return len(os.sched_getaffinity(pid))
34
    elif platform.system() == "Darwin":
35
36
37
38
39
        return os.cpu_count()
    else:
        raise NotImplementedError("Unsupported OS")


40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@dataclass
class LogicalCPUInfo:
    id: int = -1
    physical_core: int = -1
    numa_node: int = -1

    @classmethod
    def _int(cls, value: str) -> int:
        try:
            int_value = int(value)
        except Exception:
            int_value = -1
        return int_value

    @staticmethod
    def json_decoder(obj_dict: dict):
        id = obj_dict.get("cpu")
        physical_core = obj_dict.get("core")
        numa_node = obj_dict.get("node")

        if not (id is None or physical_core is None or numa_node is None):
            return LogicalCPUInfo(
                id=LogicalCPUInfo._int(id),
                physical_core=LogicalCPUInfo._int(physical_core),
64
65
                numa_node=LogicalCPUInfo._int(numa_node),
            )
66
67
68
69
        else:
            return obj_dict


70
71
class CpuPlatform(Platform):
    _enum = PlatformEnum.CPU
72
    device_name: str = "cpu"
73
    device_type: str = "cpu"
74
    dispatch_key: str = "CPU"
75
    dist_backend: str = "gloo"
76
    device_control_env_var = "CPU_VISIBLE_MEMORY_NODES"
77

78
    @property
79
    def supported_dtypes(self) -> list[torch.dtype]:
80
81
        if self.get_cpu_architecture() == CpuArchEnum.POWERPC:
            return [torch.bfloat16, torch.float32]
82
83
84
85
86
87
88
89
90
        elif self.get_cpu_architecture() == CpuArchEnum.ARM and sys.platform.startswith(
            "darwin"
        ):
            if (
                subprocess.check_output(
                    ["sysctl -n hw.optional.arm.FEAT_BF16"], shell=True
                ).strip()
                == b"1"
            ):
91
                return [torch.bfloat16, torch.float16, torch.float32]
92
            return [torch.float16, torch.float32]
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
        elif self.get_cpu_architecture() == CpuArchEnum.RISCV:
            # Workaround for Issue #25655: RISC-V scheduler bug with float16
            #
            # Background:
            # - RISC-V currently uses scalar code path
            # - There is a latent bug in the vLLM scheduler that provides
            # invalid
            #   physical_block_idx values under certain conditions
            # - This bug causes segmentation faults when using float16
            # dtype on RISC-V
            # - Testing shows that forcing float32 successfully bypasses
            # this issue
            #
            # Technical details:
            # - The bug manifests as out-of-bounds physical_block_idx in
            # block_tables
            # - Only occurs on RISC-V hardware
            # tested on Sophgo SG2044
            # - Does not reproduce on x86 or other architectures
            # - Root cause is in Python-level scheduling logic,
            # not C++ kernels
            #
            # This is a temporary workaround until the scheduler bug is fixed.
            # See: https://github.com/vllm-project/vllm/issues/25655
            return [torch.float32]
118
119
120
        # x86/aarch64 CPU has supported both bf16 and fp16 natively.
        return [torch.bfloat16, torch.float16, torch.float32]

121
122
    @classmethod
    def get_device_name(cls, device_id: int = 0) -> str:
123
124
        return "cpu"

125
    @classmethod
126
127
    def get_attn_backend_cls(
        cls,
128
        selected_backend: "AttentionBackendEnum",
129
130
        head_size: int,
        dtype: torch.dtype,
131
        kv_cache_dtype: str | None,
132
133
134
135
        block_size: int,
        use_mla: bool,
        has_sink: bool,
        use_sparse: bool,
136
        use_mm_prefix: bool,
137
        attn_type: str | None = None,
138
    ) -> str:
139
        if selected_backend and selected_backend != AttentionBackendEnum.CPU_ATTN:
140
            logger.info("Cannot use %s backend on CPU.", selected_backend)
Thien Tran's avatar
Thien Tran committed
141
        if use_mla:
142
            raise NotImplementedError("MLA is not supported on CPU.")
143
        if use_sparse:
144
            raise NotImplementedError("Sparse Attention is not supported on CPU.")
145
        return AttentionBackendEnum.CPU_ATTN.get_path()
146

147
148
    @classmethod
    def get_device_total_memory(cls, device_id: int = 0) -> int:
149
        from vllm.utils.mem_constants import GiB_bytes
150
151

        kv_cache_space = envs.VLLM_CPU_KVCACHE_SPACE
152
        node_dir = "/sys/devices/system/node"
153
        if kv_cache_space is None:
154
155
156
157
158
159
160
161
162
163
            nodes = (
                [d for d in os.listdir(node_dir) if d.startswith("node")]
                if os.path.exists(node_dir)
                else []
            )
            num_numa_nodes = len(nodes) or 1
            free_cpu_memory = psutil.virtual_memory().total // num_numa_nodes
            DEFAULT_CPU_MEM_UTILIZATION = 0.5
            kv_cache_space = int(free_cpu_memory * DEFAULT_CPU_MEM_UTILIZATION)
            kv_cache_space_gib = kv_cache_space / GiB_bytes
164
            logger.warning_once(
165
166
                "VLLM_CPU_KVCACHE_SPACE not set. Using "
                f"{kv_cache_space_gib:.2f} GiB for KV cache."
167
            )
168
169
170
171
        else:
            kv_cache_space *= GiB_bytes

        return kv_cache_space
172

173
174
175
176
177
178
179
    @classmethod
    def set_device(cls, device: torch.device) -> None:
        """
        Set the device for the current platform.
        """
        torch.cpu.set_device(device)

180
181
    @classmethod
    def inference_mode(cls):
182
        return torch.no_grad()
183
184
185
186
187

    @classmethod
    def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
        model_config = vllm_config.model_config

188
189
        if model_config is not None:
            model_config.disable_cascade_attn = True
190

191
192
        cache_config = vllm_config.cache_config

193
194
        if cache_config.block_size is None:
            cache_config.block_size = 128
195

196
197
198
199
        if cache_config.block_size % 32 != 0:
            logger.warning(
                "CPU backend prefers block_size is multiples of 32, "
                "otherwise the performance is not optimized."
200
            )
201

202
        scheduler_config = vllm_config.scheduler_config
203
        if (
204
            scheduler_config.enable_chunked_prefill
205
206
207
208
209
210
            or cache_config.enable_prefix_caching
        ) and cache_config.cache_dtype != "auto":
            raise RuntimeError(
                "Chunked-prefill and prefix-cache on the CPU "
                "backend is not compatible with FP8 KV cache."
            )
211

212
        if cache_config.cache_dtype != "auto":
213
            logger.warning(
214
                "CPU backend doesn't support KV cache quantization fallback to auto."
215
            )
216
            cache_config.cache_dtype = "auto"
217

218
        cache_config.cpu_kvcache_space_bytes = CpuPlatform.get_device_total_memory()
219
220

        parallel_config = vllm_config.parallel_config
221
222
223
224
225
226
227
228
229
230
231
232
        if (
            parallel_config.world_size > 1
            and parallel_config.distributed_executor_backend is not None
            and parallel_config.distributed_executor_backend != "mp"
        ):
            logger.warning(
                (
                    "%s is not supported on CPU, fallback to mp "
                    "distributed executor backend."
                ),
                parallel_config.distributed_executor_backend,
            )
233
            parallel_config.distributed_executor_backend = "mp"
234
        if parallel_config.worker_cls == "auto":
235
            parallel_config.worker_cls = "vllm.v1.worker.cpu_worker.CPUWorker"
236
237
        # Disable DBO
        if parallel_config.enable_dbo:
238
            logger.warning("Dual-Batch Overlap is not supported on CPU, disabled.")
239
            parallel_config.enable_dbo = False
240
241

        # Note: workaround for v1 gpu_model_runner
242
        from vllm.config import CompilationMode
243

244
245
246
        vllm_config.compilation_config.cudagraph_capture_sizes = []

        compilation_config = vllm_config.compilation_config
247
        if vllm_config.compilation_config.mode == CompilationMode.VLLM_COMPILE:
248
249
250
251
252
253
254
255
256
257
258
259
            # Note: vLLM V1 is using PIECEWISE level compilation, which will
            # take time to compile kernels just-in-time with the inductor
            # backend. For CPU CI tests, most of them are executed fast and
            # compilations consume too much time, even with torch compile
            # cache. So use VLLM_CPU_CI_ENV to indicate the CI environment,
            # and just execute model with dynamo + eager mode to save time.
            # VLLM_CPU_CI_ENV is only used as an internal variable.
            if os.environ.get("VLLM_CPU_CI_ENV", "0") != "0":
                backend = "eager"
            else:
                backend = "inductor"

260
            compilation_config.mode = CompilationMode.DYNAMO_TRACE_ONCE
261
            compilation_config.backend = backend
262
263
264
265
266
267
268
269
            compilation_config.inductor_compile_config.update(
                {
                    "dce": True,
                    "size_asserts": False,
                    "nan_asserts": False,
                    "epilogue_fusion": True,
                }
            )
270
271

        if vllm_config.lora_config is not None:
272
            compilation_config.mode = CompilationMode.NONE
273

274
275
276
277
278
279
        assert vllm_config.device_config.device_type == "cpu"

        #
        # Environment variables for CPU executor
        #

280
281
282
        os.environ["VLLM_WORKER_MULTIPROC_METHOD"] = "spawn"

        # Note: to avoid the error 'nthreads cannot be larger than environment
283
        # variable "NUMEXPR_MAX_THREADS" (64)'.
284
        os.environ["NUMEXPR_MAX_THREADS"] = str(get_max_threads())
285

286
287
288
289
290
291
292
        if envs.VLLM_CPU_OMP_THREADS_BIND != "nobind":
            # Set default threads num for OpenMP parallel
            os.environ["OMP_NUM_THREADS"] = str(torch.get_num_threads())
        else:
            # In this case, setting the OpenMP configuration via
            # OMP_NUM_THREADS is up to the user.
            logger.info("Disabling binding processes to CPU cores...")
293

294
295
296
        # Disable torch async compiling which won't work with daemonic processes
        os.environ["TORCHINDUCTOR_COMPILE_THREADS"] = "1"

297
        # Disable multi-stream for shared experts as no Stream on CPU
298
        os.environ["VLLM_DISABLE_SHARED_EXPERTS_STREAM"] = "1"
299

300
        # Intel OpenMP setting
301
302
        ld_preload_str = os.getenv("LD_PRELOAD", "")
        if "libiomp5.so" in ld_preload_str:
303
304
            # The time(milliseconds) that a thread should wait after
            # completing the execution of a parallel region, before sleeping.
305
            os.environ["KMP_BLOCKTIME"] = "1"
306
            # Prevents the CPU to run into low performance state
307
            os.environ["KMP_TPAUSE"] = "0"
308
            # Provides fine granularity parallelism
309
310
311
            os.environ["KMP_FORKJOIN_BARRIER_PATTERN"] = "dist,dist"
            os.environ["KMP_PLAIN_BARRIER_PATTERN"] = "dist,dist"
            os.environ["KMP_REDUCTION_BARRIER_PATTERN"] = "dist,dist"
312

313
314
        if (
            platform.system() == "Linux"
315
316
            and Platform.get_cpu_architecture()
            in (CpuArchEnum.ARM, CpuArchEnum.POWERPC)
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
            and not ("libomp" in ld_preload_str or "libgomp" in ld_preload_str)
        ):
            # We need to LD_PRELOAD PyTorch's libgomp, otherwise only
            # one core will be properly utilized when we thread-bind
            # See: https://github.com/vllm-project/vllm/issues/27369
            # TODO: Remove once:
            # https://github.com/pytorch/pytorch/issues/166087 is fixed

            # We need to find the location of PyTorch's libgomp
            torch_pkg = os.path.dirname(torch.__file__)
            site_root = os.path.dirname(torch_pkg)
            torch_libs = os.path.join(site_root, "torch.libs")
            pytorch_libgomp_so_candidates = glob.glob(
                os.path.join(torch_libs, "libgomp-*.so*")
            )
            if pytorch_libgomp_so_candidates:
                pytorch_libgomp_so = pytorch_libgomp_so_candidates[0]
                if ld_preload_str:
                    ld_preload_str += ":"
                ld_preload_str += pytorch_libgomp_so
                os.environ["LD_PRELOAD"] = ld_preload_str

339
340
        # To hint IPEX uses shared memory based AllReduce
        os.environ["LOCAL_WORLD_SIZE"] = str(
341
342
            vllm_config.parallel_config.tensor_parallel_size
        )
343

344
        if model_config is not None and model_config.use_mla:
345
346
            logger.info(
                "MLA is enabled on a non-GPU platform; forcing chunked "
347
348
                "prefill and prefix caching to be disabled."
            )
349
350
            vllm_config.scheduler_config.enable_chunked_prefill = False
            vllm_config.scheduler_config.max_num_batched_tokens = max(
351
                vllm_config.model_config.max_model_len,
352
                vllm_config.scheduler_config.DEFAULT_MAX_NUM_BATCHED_TOKENS,
353
            )
354

355
    @classmethod
356
    def get_allowed_cpu_core_node_list(cls) -> tuple[list[int], list[LogicalCPUInfo]]:
357
358
359
        assert platform.system() == "Linux"

        # Init LogicalCPUInfo from lscpu
360
361
362
        lscpu_output = subprocess.check_output(
            "lscpu -J -e=CPU,CORE,NODE", shell=True, text=True
        )
363
        lscpu_output = re.sub(r'"node":\s*-\s*(,|\n)', r'"node": 0\1', lscpu_output)
364
        logical_cpu_list: list[LogicalCPUInfo] = json.loads(
365
366
            lscpu_output, object_hook=LogicalCPUInfo.json_decoder
        )["cpus"]
367
368
369

        # Filter CPUs with invalid attributes
        logical_cpu_list = [
370
371
            x
            for x in logical_cpu_list
372
373
374
375
            if -1 not in (x.id, x.physical_core, x.numa_node)
        ]

        # Filter allowed CPUs
376
377
378
379
380
        if hasattr(os, "sched_getaffinity"):
            allowed_cpu_id_list = os.sched_getaffinity(0)
        else:
            raise NotImplementedError("Unsupported OS")
        logical_cpu_list = [x for x in logical_cpu_list if x.id in allowed_cpu_id_list]
381
382
383
384
385
386
387

        # Get allowed NUMA nodes
        allowed_numa_nodes = set()
        for x in logical_cpu_list:
            allowed_numa_nodes.add(x.numa_node)  # type: ignore
        allowed_numa_nodes_list = sorted(allowed_numa_nodes)

388
        env_key = CpuPlatform.device_control_env_var
389
390
        if env_key in os.environ and os.environ[env_key] != "":
            visible_nodes = [int(s) for s in os.environ[env_key].split(",")]
391
392
393
394
            allowed_numa_nodes_list = [
                x for x in visible_nodes if x in allowed_cpu_id_list
            ]

395
396
        return allowed_numa_nodes_list, logical_cpu_list

397
398
399
    @classmethod
    def is_pin_memory_available(cls) -> bool:
        return False
400
401
402
403

    @classmethod
    def get_punica_wrapper(cls) -> str:
        return "vllm.lora.punica_wrapper.punica_cpu.PunicaWrapperCPU"
404
405
406
407
408
409
410

    @classmethod
    def get_device_communicator_cls(cls) -> str:
        """
        Get device specific communicator class for distributed communication.
        """
        return "vllm.distributed.device_communicators.cpu_communicator.CpuCommunicator"  # noqa
411
412
413
414
415

    @classmethod
    def supports_structured_output(cls) -> bool:
        return True

416
417
418
    @classmethod
    def opaque_attention_op(cls) -> bool:
        return True
419
420
421
422

    @classmethod
    def support_hybrid_kv_cache(cls) -> bool:
        return True