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
183 lines
6.0 KiB
Python
183 lines
6.0 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Callable, Optional
|
|
|
|
import torch
|
|
|
|
from sglang.jit_kernel.kv_canary.consts import (
|
|
RealKvHashMode,
|
|
)
|
|
from sglang.jit_kernel.kv_canary.plan import launch_canary_plan_kernels
|
|
from sglang.jit_kernel.kv_canary.verify import (
|
|
CanaryLaunchTag,
|
|
VerifyPlan,
|
|
)
|
|
from sglang.jit_kernel.kv_canary.write import WritePlan
|
|
from sglang.srt.environ import envs
|
|
from sglang.srt.kv_canary.buffer_group import CanaryBufferGroup, PoolKind
|
|
from sglang.srt.kv_canary.endpoint import CanaryEndpoint
|
|
from sglang.srt.kv_canary.expected_inputs import ExpectedInputs
|
|
from sglang.srt.kv_canary.plan_input import PlanInput
|
|
from sglang.srt.kv_canary.state import ViolationLog
|
|
|
|
if TYPE_CHECKING:
|
|
from sglang.srt.model_executor.forward_batch_info import ForwardBatch
|
|
|
|
|
|
_BOUNDARY_INT_DTYPES = (torch.int32, torch.int64)
|
|
_INPUT_IDS = "forward_batch.input_ids"
|
|
_OUT_LOC = "forward_batch.out_cache_loc"
|
|
_POSITIONS = "forward_batch.positions"
|
|
|
|
|
|
def invoke_plan(
|
|
*,
|
|
plan_input: PlanInput,
|
|
verify_plan: VerifyPlan,
|
|
write_plan: WritePlan,
|
|
group: CanaryBufferGroup,
|
|
req_to_token: torch.Tensor,
|
|
swa_window_size: int,
|
|
req_to_verify_expected_tokens: Optional[torch.Tensor],
|
|
) -> None:
|
|
window = swa_window_size if group.kind is PoolKind.SWA else 0
|
|
launch_canary_plan_kernels(
|
|
verify_plan_out=verify_plan,
|
|
write_plan_out=write_plan,
|
|
req_pool_indices=plan_input.req_pool_indices,
|
|
prefix_lens=plan_input.prefix_lens,
|
|
extend_seq_lens=plan_input.extend_seq_lens,
|
|
req_to_token=req_to_token,
|
|
swa_window_size=window,
|
|
full_to_swa_index_mapping=group.swa_index_lut,
|
|
verify_capacity=int(verify_plan.verify_slot_indices.shape[0]),
|
|
req_to_verify_expected_tokens=req_to_verify_expected_tokens,
|
|
req_to_verify_expected_tokens_valid_lens=plan_input.req_to_verify_expected_tokens_valid_lens,
|
|
kv_token_id_vs_position_offset=group.kv_token_id_vs_position_offset,
|
|
)
|
|
|
|
|
|
def launch_endpoints_per_forward(
|
|
*,
|
|
endpoints: tuple[CanaryEndpoint, ...],
|
|
group: CanaryBufferGroup,
|
|
tag_filter: Callable[[CanaryLaunchTag], bool],
|
|
verify_plan: VerifyPlan,
|
|
write_plan: WritePlan,
|
|
forward_batch: ForwardBatch,
|
|
expected_inputs: ExpectedInputs,
|
|
violation_log: ViolationLog,
|
|
real_kv_hash_mode: RealKvHashMode,
|
|
enable_write_input_assert: bool,
|
|
enable_verify_token_assert: bool,
|
|
) -> None:
|
|
positions = _canonicalize_boundary_int64(forward_batch.positions, _POSITIONS)
|
|
out_cache_loc = _canonicalize_boundary_int64(forward_batch.out_cache_loc, _OUT_LOC)
|
|
input_ids = _canonicalize_boundary_int64(forward_batch.input_ids, _INPUT_IDS)
|
|
|
|
num_tokens = int(positions.shape[0])
|
|
if expected_inputs.tokens.shape[0] != num_tokens:
|
|
raise RuntimeError(
|
|
f"kv-canary: expected_inputs.tokens shape {expected_inputs.tokens.shape[0]} "
|
|
f"!= num_tokens {num_tokens}; caller must slice before invoking"
|
|
)
|
|
if expected_inputs.positions.shape[0] != num_tokens:
|
|
raise RuntimeError(
|
|
f"kv-canary: expected_inputs.positions shape {expected_inputs.positions.shape[0]} "
|
|
f"!= num_tokens {num_tokens}; caller must slice before invoking"
|
|
)
|
|
|
|
active_endpoints = [
|
|
endpoint
|
|
for endpoint in endpoints
|
|
if _endpoint_belongs_to_group(endpoint, group)
|
|
and tag_filter(endpoint.kernel_kind)
|
|
and not _is_sweep_tag(endpoint.kernel_kind)
|
|
and passes_v_half_gate(endpoint.kernel_kind)
|
|
]
|
|
assert len(active_endpoints) > 0
|
|
|
|
for endpoint in active_endpoints:
|
|
endpoint.launch_per_forward(
|
|
verify_plan=verify_plan,
|
|
write_plan=write_plan,
|
|
input_ids=input_ids,
|
|
positions=positions,
|
|
out_cache_loc=out_cache_loc,
|
|
enable_write_input_assert=enable_write_input_assert,
|
|
enable_verify_token_assert=enable_verify_token_assert,
|
|
expected_inputs=expected_inputs,
|
|
violation_log=violation_log,
|
|
real_kv_hash_mode=real_kv_hash_mode,
|
|
)
|
|
|
|
|
|
def launch_endpoints_sweep(
|
|
*,
|
|
endpoints: tuple[CanaryEndpoint, ...],
|
|
group: CanaryBufferGroup,
|
|
verify_plan: VerifyPlan,
|
|
violation_log: ViolationLog,
|
|
real_kv_hash_mode: RealKvHashMode,
|
|
) -> None:
|
|
active_endpoints = [
|
|
endpoint
|
|
for endpoint in endpoints
|
|
if _endpoint_belongs_to_group(endpoint, group)
|
|
and _is_sweep_tag(endpoint.kernel_kind)
|
|
and passes_v_half_gate(endpoint.kernel_kind)
|
|
]
|
|
assert len(active_endpoints) > 0
|
|
|
|
for endpoint in active_endpoints:
|
|
endpoint.launch_sweep(
|
|
verify_plan=verify_plan,
|
|
violation_log=violation_log,
|
|
real_kv_hash_mode=real_kv_hash_mode,
|
|
)
|
|
|
|
|
|
def _is_sweep_tag(tag: CanaryLaunchTag) -> bool:
|
|
return tag in (
|
|
CanaryLaunchTag.SWEEP_K_FULL,
|
|
CanaryLaunchTag.SWEEP_V_FULL,
|
|
CanaryLaunchTag.SWEEP_K_SWA,
|
|
CanaryLaunchTag.SWEEP_V_SWA,
|
|
)
|
|
|
|
|
|
def _is_v_half_tag(tag: CanaryLaunchTag) -> bool:
|
|
return tag in (
|
|
CanaryLaunchTag.HEAD_V_FULL,
|
|
CanaryLaunchTag.TAIL_V_FULL,
|
|
CanaryLaunchTag.SWEEP_V_FULL,
|
|
CanaryLaunchTag.HEAD_V_SWA,
|
|
CanaryLaunchTag.TAIL_V_SWA,
|
|
CanaryLaunchTag.SWEEP_V_SWA,
|
|
)
|
|
|
|
|
|
def passes_v_half_gate(tag: CanaryLaunchTag) -> bool:
|
|
if not _is_v_half_tag(tag):
|
|
return True
|
|
return envs.SGLANG_KV_CANARY_ENABLE_MHA_V.get()
|
|
|
|
|
|
def _endpoint_belongs_to_group(
|
|
endpoint: CanaryEndpoint, group: CanaryBufferGroup
|
|
) -> bool:
|
|
suffix = endpoint.kernel_kind.name.rsplit("_", 1)[1]
|
|
return suffix == group.kind.name
|
|
|
|
|
|
def _canonicalize_boundary_int64(
|
|
tensor: torch.Tensor | None, name: str
|
|
) -> torch.Tensor | None:
|
|
if tensor is None:
|
|
return None
|
|
if tensor.dtype not in _BOUNDARY_INT_DTYPES:
|
|
raise TypeError(
|
|
f"kv-canary: {name} must have dtype torch.int32 or torch.int64, got {tensor.dtype}"
|
|
)
|
|
return tensor.to(torch.int64).contiguous()
|