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
169 lines
5.8 KiB
Python
169 lines
5.8 KiB
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
from copy import deepcopy
|
|
from typing import TYPE_CHECKING, Optional
|
|
|
|
import msgspec
|
|
import torch
|
|
|
|
from sglang.srt.layers.logits_processor import LogitsProcessorOutput
|
|
from sglang.srt.managers.tp_worker import TpModelWorker
|
|
from sglang.srt.model_executor.forward_batch_info import CaptureHiddenMode
|
|
from sglang.srt.runtime_context import get_context, get_server_args
|
|
from sglang.srt.server_args import ServerArgs
|
|
from sglang.srt.speculative.dflash_info import DFlashVerifyInput
|
|
from sglang.srt.speculative.dflash_info_v2 import DFlashDraftInputV2
|
|
|
|
if TYPE_CHECKING:
|
|
from sglang.srt.configs.model_config import ModelConfig
|
|
from sglang.srt.model_executor.model_runner import ModelRunner
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
_SUPPORTED_DRAFT_BACKENDS = ("flashinfer", "fa3", "fa4", "triton", "ascend")
|
|
|
|
|
|
class DraftWorkerBundle(msgspec.Struct, frozen=True):
|
|
draft_worker: TpModelWorker
|
|
draft_model_runner: ModelRunner
|
|
draft_model: torch.nn.Module
|
|
resolved_attention_backend: str
|
|
|
|
|
|
def _resolve_draft_attention_backend_fallback(
|
|
*, draft_server_args: ServerArgs, algo_label: str
|
|
) -> str:
|
|
draft_backend = draft_server_args.speculative_draft_attention_backend
|
|
if draft_backend is None:
|
|
draft_backend, _ = draft_server_args.get_attention_backends()
|
|
if draft_backend is None:
|
|
return "triton" if torch.version.hip else "flashinfer"
|
|
if draft_backend not in _SUPPORTED_DRAFT_BACKENDS:
|
|
fallback = "triton" if torch.version.hip else "flashinfer"
|
|
logger.warning(
|
|
"%s draft worker only supports attention_backend in %s for now, "
|
|
"but got %r. Falling back to '%s'.",
|
|
algo_label,
|
|
_SUPPORTED_DRAFT_BACKENDS,
|
|
draft_backend,
|
|
fallback,
|
|
)
|
|
return fallback
|
|
return draft_backend
|
|
|
|
|
|
def build_draft_tp_worker(
|
|
*,
|
|
server_args: ServerArgs,
|
|
gpu_id: int,
|
|
tp_rank: int,
|
|
dp_rank: Optional[int],
|
|
moe_ep_rank: int,
|
|
attn_cp_rank: int,
|
|
moe_dp_rank: int,
|
|
nccl_port: int,
|
|
target_model_config: ModelConfig,
|
|
algo_label: str,
|
|
attention_backend_override: Optional[str] = None,
|
|
) -> DraftWorkerBundle:
|
|
draft_server_args = deepcopy(server_args)
|
|
# An override names a draft-specific backend the caller has already
|
|
# validated (e.g. a self-drafting architecture); it skips the generic
|
|
# supported-backend fallback below.
|
|
draft_backend = attention_backend_override or (
|
|
_resolve_draft_attention_backend_fallback(
|
|
draft_server_args=draft_server_args, algo_label=algo_label
|
|
)
|
|
)
|
|
# Post-resolution ServerArgs rejects bare assignment; route the draft-copy
|
|
# adjustments through the audited mutation point. Keep the resolved value
|
|
# on speculative_draft_attention_backend: downstream draft-worker logic
|
|
# keys on that field (backend selection in _get_attention_backend and the
|
|
# fa4-draft KV dtype override in configure_kv_cache_dtype), so nulling it
|
|
# would silently skip those paths. context_length keeps the draft aligned
|
|
# with the target.
|
|
draft_server_args.override(
|
|
"draft_worker.build",
|
|
skip_tokenizer_init=True,
|
|
speculative_draft_attention_backend=draft_backend,
|
|
prefill_attention_backend=None,
|
|
decode_attention_backend=None,
|
|
attention_backend=draft_backend,
|
|
context_length=target_model_config.context_len,
|
|
)
|
|
|
|
saved_server_args = get_server_args()
|
|
try:
|
|
draft_worker = TpModelWorker(
|
|
server_args=draft_server_args,
|
|
gpu_id=gpu_id,
|
|
tp_rank=tp_rank,
|
|
moe_ep_rank=moe_ep_rank,
|
|
pp_rank=0,
|
|
attn_cp_rank=attn_cp_rank,
|
|
moe_dp_rank=moe_dp_rank,
|
|
dp_rank=dp_rank,
|
|
nccl_port=nccl_port,
|
|
is_draft_worker=True,
|
|
)
|
|
finally:
|
|
get_context().set_server_args(saved_server_args)
|
|
|
|
draft_model_runner = draft_worker.model_runner
|
|
draft_worker.draft_runner = draft_model_runner
|
|
return DraftWorkerBundle(
|
|
draft_worker=draft_worker,
|
|
draft_model_runner=draft_model_runner,
|
|
draft_model=draft_model_runner.model,
|
|
resolved_attention_backend=draft_backend,
|
|
)
|
|
|
|
|
|
def make_draft_input_v2(
|
|
*,
|
|
bonus_tokens: torch.Tensor,
|
|
new_seq_lens: torch.Tensor,
|
|
) -> DFlashDraftInputV2:
|
|
bs = int(new_seq_lens.numel())
|
|
device = bonus_tokens.device
|
|
return DFlashDraftInputV2(
|
|
topk_p=torch.empty((bs, 0), device=device, dtype=torch.float32),
|
|
topk_index=torch.empty((bs, 0), device=device, dtype=torch.int64),
|
|
bonus_tokens=bonus_tokens.to(dtype=torch.int64),
|
|
new_seq_lens=new_seq_lens.to(dtype=torch.int64),
|
|
hidden_states=torch.empty((bs, 0), device=device, dtype=torch.float16),
|
|
)
|
|
|
|
|
|
def make_draft_block_spec_info(
|
|
*,
|
|
draft_token_num: int,
|
|
device: torch.device,
|
|
) -> DFlashVerifyInput:
|
|
return DFlashVerifyInput(
|
|
draft_token=torch.empty((0,), dtype=torch.long, device=device),
|
|
positions=torch.empty((0,), dtype=torch.int64, device=device),
|
|
draft_token_num=int(draft_token_num),
|
|
custom_mask=None,
|
|
capture_hidden_mode=CaptureHiddenMode.NULL,
|
|
)
|
|
|
|
|
|
def make_draft_sampler_capture_hook(draft_sampler):
|
|
|
|
def capture_hook(runner, out, forward_batch, num_tokens):
|
|
del runner, num_tokens
|
|
if not isinstance(out, LogitsProcessorOutput) or out.hidden_states is None:
|
|
raise RuntimeError(
|
|
"draft sampler set but the draft forward has no "
|
|
"hidden_states to capture into the graph."
|
|
)
|
|
draft_sampler(out.hidden_states, forward_batch.input_ids)
|
|
|
|
return capture_hook
|
|
|
|
|
|
def build_block_pos_offsets(*, length: int, device: torch.device) -> torch.Tensor:
|
|
return torch.arange(int(length), device=device, dtype=torch.int64)
|