Files
wehub-resource-sync 94057c3d3e
PR Test (NPU) / check-changes (push) Has been cancelled
PR Test (NPU) / pr-gate (push) Has been cancelled
PR Test (NPU) / set-image-config (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-4-npu-a3 (push) Has been cancelled
PR Test (NPU) / stage-b-test-16-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-1-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-2-npu-a3 (push) Has been cancelled
PR Test (Arm64) / pr-gate (push) Has been cancelled
PR Test (Arm64) / check-changes (push) Has been cancelled
PR Test (Arm64) / build-test (push) Has been cancelled
PR Test (sgl-router) / gate (push) Has been cancelled
PR Test (sgl-router) / tier-1 — lint (push) Has been cancelled
PR Test (sgl-router) / tier-2 — build + test (push) Has been cancelled
PR Test (sgl-router) / tier-3 — docker (placeholder) (push) Has been cancelled
PR Test (sgl-router) / tier-3 — k8s integration (push) Has been cancelled
PR Test (sgl-router) / tier-3 — e2e (push) Has been cancelled
PR Test (sgl-router) / finish (push) Has been cancelled
PR Test (NPU) / single-node-poc (map[name:qwen3_6_27b_w8a8_1p_in64k_out1k_50ms runner:linux-aarch64-a3-2 test_case:test/registered/ascend/performance/qwen3_6_27b/test_npu_qwen3_6_27b_w8a8_1p_in64k_out1k_50ms.py test_type:perf]) (push) Has been cancelled
PR Test (NPU) / pr-test-npu-finish (push) Has been cancelled
PR Test (Xeon) / pr-gate (push) Has been cancelled
PR Test (Xeon) / check-changes (push) Has been cancelled
PR Test (Xeon) / build-test (, xeon-gnr, base-b-test-cpu) (push) Has been cancelled
PR Test (XPU) / check-changes (push) Has been cancelled
PR Test (XPU) / pr-gate (push) Has been cancelled
PR Test (XPU) / stage-a-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / wait-for-stage-a (push) Has been cancelled
PR Test (XPU) / stage-b-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / finish (push) Has been cancelled
CI Model Inventory / build-inventory (push) Has been cancelled
Lint / lint (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Compilation Check (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Manual Policy (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Request Processing (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Summary (push) Has been cancelled
PR Test (SMG) / build-wheel (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on windows (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (x86_64 - auto) (push) Has been cancelled
PR Test (SMG) / python-unit-tests (push) Has been cancelled
PR Test (SMG) / unit-tests (push) Has been cancelled
PR Test (SMG) / benchmarks (push) Has been cancelled
PR Test (SMG) / chat-completions (push) Has been cancelled
PR Test (SMG) / chat-completions-4gpu (push) Has been cancelled
PR Test (SMG) / e2e (push) Has been cancelled
PR Test (SMG) / docker-build-test (push) Has been cancelled
PR Test (SMG) / k8s-integration (push) Has been cancelled
PR Test (SMG) / finish (push) Has been cancelled
PR Test (SMG) / summarize-benchmarks (push) Has been cancelled
Release SGLang Model Gateway Docker Image / publish (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Build SDist (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Upload to PyPI (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (aarch64, 12.9, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (x86_64, 12.9, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu129 (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (aarch64, 13.0, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (x86_64, 13.0, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu130 (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 700) (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 720) (push) Has been cancelled
Release SGLang Kernels / release-rocm700 (push) Has been cancelled
Release SGLang Kernels / release-rocm720 (push) Has been cancelled
Release SGLang Kernels / build-musa43 (43, 3.10) (push) Has been cancelled
Release SGLang Kernels / release-musa43 (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:38:16 +08:00

134 lines
5.5 KiB
Python

"""CPU device operations for the SRT platform layer."""
import gc
import platform as _platform
from functools import cached_property
from typing import Optional
import psutil
import torch
from sglang.srt.platforms.device_mixin import (
CpuArchEnum,
DeviceCapability,
DeviceMixin,
PlatformEnum,
)
from sglang.srt.platforms.interface import SRTPlatform
class CpuDeviceMixin(DeviceMixin):
"""CPU implementation of the shared device operations."""
_enum: PlatformEnum = PlatformEnum.CPU
device_name: str = "cpu"
device_type: str = "cpu"
@cached_property
def cpu_arch(self) -> CpuArchEnum:
"""Host CPU architecture (X86 / ARM / UNSPECIFIED), resolved once.
First-class identity attribute parallel to ``_enum`` — callers branch
on CPU arch through this instead of recomputing ``platform.machine()``.
``get_cpu_architecture()`` is process-stable, so caching is safe.
"""
return self.get_cpu_architecture()
def get_device_total_memory(self, device_id: int = 0) -> int:
return int(psutil.virtual_memory().total)
def get_current_memory_usage(
self, device: Optional["torch.device"] = None
) -> float:
"""Whole-machine used memory (``total - available``) in bytes.
Chosen so the [Active] contract
``free = get_device_total_memory() - get_current_memory_usage()``
yields ``psutil.available`` — the real free RAM on a machine shared
with the OS and other processes. Per-process RSS would wrongly ignore
their usage. There is no per-device allocator peak on CPU (unlike
``torch.cuda.max_memory_allocated``), so this is current usage, not a
peak. Returns whole-machine bytes; per-rank NUMA division for CPU TP
is the caller's concern (kept in ``get_available_gpu_memory``'s CPU
branch), not here.
"""
vm = psutil.virtual_memory()
return float(vm.total - vm.available)
def get_device(self, local_rank: int) -> "torch.device":
# local_rank is ignored: all CPU ranks share the one CPU device, so
# there is nothing rank-specific to return. PyTorch enforces this —
# Device::validate() asserts a CPU index must be -1 or 0 (c10/core/
# Device.h). Per-rank isolation is done via OpenMP/numactl binding
# (ModelRunner.init_threads_binding), not the device object.
# TODO(zijiexia): make per-rank placement NUMA-affinity aware
# (rank -> NUMA node) when the platform layer takes this over.
return torch.device("cpu")
def set_device(self, device: "torch.device") -> None:
# Documented no-op on CPU — torch.cpu.set_device is "in CPU we do
# nothing". Called (rather than left as ``pass``) for symmetry with
# CudaDeviceMixin.set_device. Note this is deliberately NOT
# torch.set_default_device("cpu"), which would flip the process-wide
# default tensor device; per-rank CPU isolation is via OpenMP/numactl
# binding (see get_device), not here.
torch.cpu.set_device(device)
def get_device_name(self, device_id: int = 0) -> str:
# Arch-only label. We deliberately avoid platform.processor(): it
# spawns a subprocess (~ms) on some platforms (e.g. macOS) and on Linux
# is usually empty or redundant with the arch (e.g. "x86_64: x86_64").
if self.cpu_arch == CpuArchEnum.ARM:
return "cpu (aarch64)"
if self.cpu_arch == CpuArchEnum.X86:
return "cpu (x86_64)"
return "cpu"
def get_device_uuid(self, device_id: int = 0) -> str:
# CPU has no per-device UUID; return the arch string as a stable
# host-level identifier (matches the multimodal CpuPlatform).
return _platform.machine()
def get_device_capability(self, device_id: int = 0) -> Optional[DeviceCapability]:
return None
def empty_cache(self) -> None:
# No torch.cpu.empty_cache() exists; do a GC pass at the teardown
# points where this is called (flush_cache, idle sleep, weight reload).
#
# gc.collect() caveats:
# - the pause grows with heap size (full walk of tracked objects);
# - it only reclaims reference cycles — refcounting already frees
# everything else, so it may do little;
# - freed memory returns to the allocator, not the OS, so RSS may not
# drop. glibc malloc_trim would not help: it is a no-op under the
# tcmalloc / TBB malloc the CPU guide preloads via LD_PRELOAD. Real
# RSS reclaim belongs in a separate allocator-aware, benchmarked
# change.
gc.collect()
def synchronize(self) -> None:
# Documented no-op on CPU (no async streams to drain). Called for
# symmetry with CudaDeviceMixin's torch.cuda.synchronize().
torch.cpu.synchronize()
def get_available_memory(self, device_id: int = 0) -> tuple[int, int]:
vm = psutil.virtual_memory()
return (vm.available, vm.total)
def get_torch_distributed_backend_str(self) -> str:
return "gloo"
class CpuSRTPlatform(CpuDeviceMixin, SRTPlatform):
"""Default in-tree CPU SRT platform.
supports_fp8 / support_cuda_graph / support_piecewise_cuda_graph keep the
conservative SRTPlatform defaults (all False), so they are not repeated
here. Only is_pin_memory_available is overridden: the base defaults to
True, but CPU has no GPU to pin host memory to.
"""
def is_pin_memory_available(self) -> bool:
return False