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
211 lines
7.7 KiB
Python
211 lines
7.7 KiB
Python
"""Lightweight ModelRunner stub for MLX on Apple Silicon.
|
|
|
|
Skips PyTorch weight loading. Creates only the CPU-side bookkeeping
|
|
(req_to_token_pool, token_to_kv_pool_allocator) the scheduler needs.
|
|
"""
|
|
|
|
import logging
|
|
from typing import Tuple
|
|
|
|
import torch
|
|
|
|
from sglang.srt.hardware_backend.mlx.kv_cache.auxiliary_state import (
|
|
MlxAuxiliaryStateReqToTokenPool,
|
|
)
|
|
from sglang.srt.mem_cache.allocator import TokenToKVPoolAllocator
|
|
from sglang.srt.mem_cache.memory_pool import KVCache, ReqToTokenPool
|
|
from sglang.srt.model_executor.model_runner import ModelRunner
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class _DummyKVCache(KVCache):
|
|
"""Scheduler-facing KV cache that allocates no GPU memory.
|
|
|
|
Satisfies the KVCache interface so that TokenToKVPoolAllocator can be
|
|
constructed, but every buffer access raises. The MLX backend manages
|
|
attention KV and auxiliary state internally.
|
|
"""
|
|
|
|
def __init__(self, size: int, dtype: torch.dtype, device: str):
|
|
# Bypass KVCache.__init__ to avoid custom_mem_pool / memory_saver
|
|
# initialization that may touch CUDA APIs.
|
|
self.size = size
|
|
self.page_size = 1
|
|
self.dtype = dtype
|
|
self.store_dtype = dtype
|
|
self.device = device
|
|
self.layer_num = 0
|
|
self.start_layer = 0
|
|
self.end_layer = 0
|
|
self.mem_usage = 0
|
|
self.cpu_offloading_chunk_size = 8192
|
|
self.layer_transfer_counter = None
|
|
self.enable_custom_mem_pool = False
|
|
self.custom_mem_pool = None
|
|
|
|
def get_key_buffer(self, layer_id: int) -> torch.Tensor:
|
|
raise RuntimeError("_DummyKVCache has no key buffer (MLX manages cache)")
|
|
|
|
def get_value_buffer(self, layer_id: int) -> torch.Tensor:
|
|
raise RuntimeError("_DummyKVCache has no value buffer (MLX manages cache)")
|
|
|
|
def get_kv_buffer(self, layer_id: int) -> Tuple[torch.Tensor, torch.Tensor]:
|
|
raise RuntimeError("_DummyKVCache has no kv buffer (MLX manages cache)")
|
|
|
|
def set_kv_buffer(self, layer, loc, cache_k, cache_v) -> None:
|
|
raise RuntimeError("_DummyKVCache cannot set kv buffer (MLX manages cache)")
|
|
|
|
def get_kv_size_bytes(self):
|
|
return 0, 0
|
|
|
|
|
|
class _DummyModel:
|
|
"""Minimal stand-in so that `inspect.signature(model.forward)` and
|
|
`getattr(model, ...)` calls in ModelRunner.__init__ don't crash."""
|
|
|
|
@staticmethod
|
|
def forward():
|
|
pass
|
|
|
|
|
|
class MlxModelRunnerStub(ModelRunner):
|
|
"""ModelRunner that skips PyTorch weight loading and KV cache allocation.
|
|
|
|
Overrides both load_model() and initialize() so that no PyTorch model
|
|
weights are loaded and no large KV cache tensors are allocated. Only
|
|
the minimal bookkeeping pools needed by the scheduler are created.
|
|
"""
|
|
|
|
# No KV canary on the MLX path. The base ModelRunner installs it via
|
|
# install_canary() in its full initialize(), which this lightweight override
|
|
# skips. Downstream consumers (scheduler, cuda graph runner, speculative
|
|
# workers) all guard with `canary_manager is not None`, so default to None
|
|
# as a class attribute to keep those checks working instead of raising
|
|
# AttributeError.
|
|
canary_manager = None
|
|
|
|
# No prefill-aware SWA on the MLX path. The base ModelRunner derives this in
|
|
# its full initialize() from `model.is_prefill_aware_swa()`, which this
|
|
# lightweight override skips (and `_DummyModel` does not implement). The
|
|
# scheduler reads `model_runner.prefill_aware_swa` unconditionally when
|
|
# admitting a prefill batch, so default to False as a class attribute to keep
|
|
# that path working instead of raising AttributeError.
|
|
prefill_aware_swa = False
|
|
|
|
def __init__(self, *args, mlx_pool_size: int | None = None, **kwargs):
|
|
self._mlx_pool_size = mlx_pool_size
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def load_model(self):
|
|
"""Set only the metadata that downstream code needs, without
|
|
loading any PyTorch model weights."""
|
|
logger.info(
|
|
"MLX stub: skipping PyTorch model weight loading "
|
|
"(inference runs through MLX)"
|
|
)
|
|
|
|
self.model = _DummyModel()
|
|
|
|
self.sliding_window_size = None
|
|
if (
|
|
self.model_config.is_hybrid_swa
|
|
and self.model_config.sliding_window_size is not None
|
|
):
|
|
self.sliding_window_size = self.model_config.sliding_window_size
|
|
elif self.model_config.attention_chunk_size is not None:
|
|
self.sliding_window_size = self.model_config.attention_chunk_size
|
|
|
|
self.dtype = self.model_config.dtype
|
|
self.weight_load_mem_usage = 0
|
|
|
|
def initialize(self):
|
|
"""Lightweight initialize that skips heavy PyTorch setup.
|
|
|
|
Creates minimal req_to_token_pool and token_to_kv_pool_allocator
|
|
with a dummy KV cache (zero GPU memory) so the scheduler works.
|
|
"""
|
|
from sglang.srt.utils.torch_memory_saver_adapter import TorchMemorySaverAdapter
|
|
|
|
self.memory_saver_adapter = TorchMemorySaverAdapter.create(
|
|
enable=self.server_args.enable_memory_saver
|
|
)
|
|
|
|
# Load model (sets metadata only)
|
|
self.sampler = None
|
|
self.load_model()
|
|
|
|
# Layer metadata
|
|
model_num_layers = max(
|
|
self.model_config.num_hidden_layers,
|
|
self.model_config.num_attention_layers,
|
|
)
|
|
self.start_layer = 0
|
|
self.end_layer = model_num_layers
|
|
self.num_effective_layers = model_num_layers
|
|
|
|
# KV cache dtype
|
|
self.kv_cache_dtype = self.dtype
|
|
|
|
# Pool sizing — use the MLX runner's auto-sized pool if available,
|
|
# otherwise fall back to context_len.
|
|
if self._mlx_pool_size is not None:
|
|
self.max_total_num_tokens = self._mlx_pool_size
|
|
else:
|
|
self.max_total_num_tokens = self.model_config.context_len
|
|
self.max_running_requests = min(
|
|
self.max_total_num_tokens // 2,
|
|
4096,
|
|
)
|
|
self.is_hybrid_swa = False
|
|
|
|
# Create minimal pools
|
|
if self.mambaish_config is not None:
|
|
auxiliary_state_size = self.server_args.max_mamba_cache_size
|
|
if auxiliary_state_size is None:
|
|
auxiliary_state_size = self.max_running_requests * 4
|
|
self.req_to_token_pool = MlxAuxiliaryStateReqToTokenPool(
|
|
size=self.max_running_requests,
|
|
max_context_len=self.model_config.context_len,
|
|
device="cpu",
|
|
enable_memory_saver=False,
|
|
auxiliary_state_size=auxiliary_state_size,
|
|
)
|
|
else:
|
|
self.req_to_token_pool = ReqToTokenPool(
|
|
size=self.max_running_requests,
|
|
max_context_len=self.model_config.context_len,
|
|
device="cpu",
|
|
enable_memory_saver=False,
|
|
)
|
|
|
|
dummy_kv = _DummyKVCache(
|
|
size=self.max_total_num_tokens,
|
|
dtype=self.kv_cache_dtype,
|
|
device="cpu",
|
|
)
|
|
self.token_to_kv_pool = dummy_kv
|
|
self.token_to_kv_pool_allocator = TokenToKVPoolAllocator(
|
|
size=self.max_total_num_tokens,
|
|
dtype=self.kv_cache_dtype,
|
|
device="cpu",
|
|
kvcache=dummy_kv,
|
|
need_sort=False,
|
|
)
|
|
|
|
# No CUDA graphs, no attention backend
|
|
self.decode_cuda_graph_runner = None
|
|
self.graph_mem_usage = 0
|
|
self.attn_backend = None
|
|
|
|
logger.info(
|
|
f"MLX stub: initialized minimal pools "
|
|
f"(max_total_num_tokens={self.max_total_num_tokens}, "
|
|
f"max_running_requests={self.max_running_requests}, "
|
|
f"zero GPU KV cache allocation)"
|
|
)
|
|
|
|
def alloc_memory_pool(self, memory_pool_config=None):
|
|
"""No-op: MLX manages its own KV cache."""
|
|
pass
|