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
187 lines
6.8 KiB
Python
187 lines
6.8 KiB
Python
import logging
|
|
import multiprocessing as mp
|
|
import re
|
|
import signal
|
|
|
|
import torch
|
|
import zmq
|
|
|
|
from sglang.srt.configs.load_config import LoadConfig
|
|
from sglang.srt.configs.model_config import ModelConfig
|
|
from sglang.srt.environ import envs
|
|
from sglang.srt.managers.io_struct import BackupDramReq, sock_recv, sock_send
|
|
from sglang.srt.model_loader.loader import DefaultModelLoader, get_model_loader
|
|
from sglang.srt.model_loader.utils import set_default_torch_dtype
|
|
from sglang.srt.server_args import (
|
|
PortArgs,
|
|
ServerArgs,
|
|
set_global_server_args_for_scheduler,
|
|
)
|
|
from sglang.srt.utils.network import get_local_ip_auto
|
|
|
|
PORT_BASE = envs.SGLANG_BACKUP_PORT_BASE.get()
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def extract_expert_id(param_name):
|
|
pattern = r"\.experts\.(\d+)\."
|
|
match = re.search(pattern, param_name)
|
|
if match:
|
|
return int(match.group(1))
|
|
return -1
|
|
|
|
|
|
class ExpertBackupManager:
|
|
def __init__(self, server_args: ServerArgs, port_args: PortArgs):
|
|
self.load_format = server_args.load_format
|
|
self.model_config = ModelConfig.from_server_args(server_args)
|
|
self.continuous_buffer = None
|
|
self.weight_pointer_map = {}
|
|
self.transfer_engine = None
|
|
self.session_id = None
|
|
self.engine_num = server_args.nnodes
|
|
self.engine_rank = server_args.node_rank
|
|
self.expert_num = self.model_config.hf_config.n_routed_experts
|
|
self.idmn = (self.expert_num // self.engine_num) * self.engine_rank
|
|
self.idmx = (self.expert_num // self.engine_num) * (self.engine_rank + 1)
|
|
context = zmq.Context(2)
|
|
# Synchronization socket to avoid PUB/SUB slow joiner issues.
|
|
self.recv_from_expert_backup_client = context.socket(zmq.PULL)
|
|
self.recv_from_expert_backup_client.bind(
|
|
f"tcp://{get_local_ip_auto()}:{PORT_BASE + server_args.node_rank * 2}"
|
|
)
|
|
self.send_to_expert_backup_client = context.socket(zmq.PUB)
|
|
self.send_to_expert_backup_client.bind(
|
|
f"tcp://{get_local_ip_auto()}:{PORT_BASE + server_args.node_rank * 2 + 1}"
|
|
)
|
|
self.backup_weights_from_disk()
|
|
self.start_transfer_server()
|
|
|
|
# Block until all expert backup clients have reported readiness, to avoid
|
|
# losing the initial PUB message due to slow joiners.
|
|
num_ready_clients = 0
|
|
|
|
while num_ready_clients < server_args.tp_size:
|
|
sock_recv(self.recv_from_expert_backup_client)
|
|
num_ready_clients += 1
|
|
|
|
back_req = BackupDramReq(
|
|
rank=self.engine_rank,
|
|
weight_pointer_map=self.weight_pointer_map,
|
|
session_id=self.session_id,
|
|
buffer_size=self.continuous_buffer.numel()
|
|
* self.continuous_buffer.element_size(),
|
|
)
|
|
sock_send(self.send_to_expert_backup_client, back_req)
|
|
|
|
# Keep the manager subprocess alive until signals
|
|
signal.pause()
|
|
|
|
def backup_weights_from_disk(self):
|
|
load_config = LoadConfig(load_format=self.load_format)
|
|
loader = get_model_loader(load_config, self.model_config)
|
|
|
|
with set_default_torch_dtype(self.model_config.dtype):
|
|
iter = loader._get_weights_iterator(
|
|
DefaultModelLoader.Source.init_new(self.model_config, None)
|
|
)
|
|
|
|
total_bytes = 0
|
|
weight_info_dict = {}
|
|
|
|
for name, weight in iter:
|
|
expert_id = extract_expert_id(name)
|
|
if expert_id < self.idmx and expert_id >= self.idmn:
|
|
numel = weight.numel()
|
|
element_size = weight.element_size()
|
|
byte_size = numel * element_size
|
|
weight_info_dict[name] = {
|
|
"name": name,
|
|
"weight": weight,
|
|
"numel": numel,
|
|
"shape": weight.shape,
|
|
"dtype": weight.dtype,
|
|
"element_size": element_size,
|
|
"byte_size": byte_size,
|
|
}
|
|
total_bytes += byte_size
|
|
|
|
if total_bytes == 0:
|
|
self.continuous_buffer = None
|
|
self.weight_pointer_map = {}
|
|
return
|
|
|
|
self.continuous_buffer = torch.empty(
|
|
total_bytes, dtype=torch.uint8, device="cpu"
|
|
)
|
|
buffer_base_ptr = self.continuous_buffer.data_ptr()
|
|
self.weight_pointer_map = {}
|
|
current_byte_offset = 0
|
|
|
|
for name in sorted(weight_info_dict.keys()):
|
|
weight_info = weight_info_dict[name]
|
|
weight = weight_info["weight"]
|
|
byte_size = weight_info["byte_size"]
|
|
weight_flat = weight.flatten().contiguous()
|
|
weight_bytes = weight_flat.view(torch.uint8)
|
|
start_byte = current_byte_offset
|
|
end_byte = current_byte_offset + byte_size
|
|
weight_ptr = buffer_base_ptr + current_byte_offset
|
|
self.continuous_buffer[start_byte:end_byte].copy_(weight_bytes)
|
|
self.weight_pointer_map[name] = {
|
|
"name": name,
|
|
"weight_ptr": weight_ptr,
|
|
"shape": weight_info["shape"],
|
|
"numel": weight_info["numel"],
|
|
"dtype": weight_info["dtype"],
|
|
"element_size": weight_info["element_size"],
|
|
"byte_size": byte_size,
|
|
}
|
|
|
|
current_byte_offset = end_byte
|
|
|
|
def start_transfer_server(self):
|
|
from sglang.srt.distributed.parallel_state import get_mooncake_transfer_engine
|
|
|
|
self.transfer_engine = get_mooncake_transfer_engine()
|
|
self.session_id = self.transfer_engine.session_id
|
|
server_ptr = self.continuous_buffer.data_ptr()
|
|
server_len = (
|
|
self.continuous_buffer.numel() * self.continuous_buffer.element_size()
|
|
)
|
|
|
|
ret_value = self.transfer_engine.engine.register_memory(server_ptr, server_len)
|
|
if ret_value != 0:
|
|
raise RuntimeError("Mooncake memory registration failed.")
|
|
|
|
|
|
def run_expert_backup_manager_process(
|
|
server_args: ServerArgs,
|
|
port_args: PortArgs,
|
|
):
|
|
set_global_server_args_for_scheduler(server_args)
|
|
from sglang.srt.distributed.device_communicators.mooncake_transfer_engine import (
|
|
init_mooncake_transfer_engine,
|
|
)
|
|
|
|
init_mooncake_transfer_engine(
|
|
hostname=get_local_ip_auto(),
|
|
gpu_id=0,
|
|
ib_device=(
|
|
server_args.disaggregation_ib_device or server_args.mooncake_ib_device
|
|
),
|
|
)
|
|
manager = ExpertBackupManager(server_args, port_args)
|
|
|
|
|
|
def run_expert_backup_manager(
|
|
server_args: ServerArgs,
|
|
port_args: PortArgs,
|
|
):
|
|
proc = mp.Process(
|
|
target=run_expert_backup_manager_process,
|
|
args=(server_args, port_args),
|
|
)
|
|
proc.start()
|
|
return proc
|