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
114 lines
4.4 KiB
Python
114 lines
4.4 KiB
Python
from typing import TYPE_CHECKING, Optional
|
|
|
|
import torch
|
|
from sgl_kernel_npu.norm.l1_norm import l1_norm
|
|
|
|
from sglang.srt.eplb.expert_distribution import get_global_expert_distribution_recorder
|
|
from sglang.srt.eplb.expert_location_dispatch import topk_ids_logical_to_physical
|
|
from sglang.srt.layers.moe.topk import (
|
|
StandardTopKOutput,
|
|
capture_routed_experts_if_allowed,
|
|
select_experts,
|
|
)
|
|
|
|
if TYPE_CHECKING:
|
|
from sglang.srt.eplb.expert_location_dispatch import ExpertLocationDispatchInfo
|
|
from sglang.srt.layers.moe.topk import TopKConfig, TopKOutput
|
|
|
|
|
|
def fused_topk_npu(
|
|
hidden_states: torch.Tensor,
|
|
router_logits: torch.Tensor,
|
|
topk_config: "TopKConfig",
|
|
num_token_non_padded: Optional[torch.Tensor] = None,
|
|
expert_location_dispatch_info: Optional["ExpertLocationDispatchInfo"] = None,
|
|
layer_id: Optional[int] = None,
|
|
) -> "TopKOutput":
|
|
|
|
use_grouped_topk = topk_config.use_grouped_topk
|
|
renormalize = topk_config.renormalize
|
|
correction_bias = topk_config.correction_bias
|
|
|
|
# Fast path: simple top-k without grouped routing and bias
|
|
if not use_grouped_topk and correction_bias is None:
|
|
topk_weights, topk_ids, _ = torch.ops.npu.npu_moe_gating_top_k_softmax(
|
|
router_logits,
|
|
k=topk_config.top_k,
|
|
)
|
|
|
|
if renormalize:
|
|
topk_weights = l1_norm(
|
|
topk_weights
|
|
if topk_config.num_fused_shared_experts == 0
|
|
else topk_weights[:, :-1]
|
|
)
|
|
topk_weights = topk_weights.to(torch.float32)
|
|
|
|
# sqrtsoftplus (DSV4 noaux_tc): the NPU op only scores sigmoid/softmax, so use
|
|
# a torch path. top-k over (scores + bias); weights from un-biased scores.
|
|
elif topk_config.scoring_func == "sqrtsoftplus":
|
|
scores = torch.nn.functional.softplus(router_logits.float()).sqrt()
|
|
scores_for_choice = (
|
|
scores + correction_bias.unsqueeze(0).float()
|
|
if correction_bias is not None
|
|
else scores
|
|
)
|
|
_, topk_ids = torch.topk(
|
|
scores_for_choice, k=topk_config.top_k, dim=-1, sorted=False
|
|
)
|
|
topk_ids = topk_ids.to(torch.int32)
|
|
topk_weights = scores.gather(1, topk_ids)
|
|
if renormalize:
|
|
topk_weights = topk_weights / topk_weights.sum(dim=-1, keepdim=True)
|
|
else:
|
|
topk_weights = topk_weights * topk_config.routed_scaling_factor
|
|
topk_weights = topk_weights.to(torch.float32)
|
|
|
|
# Support grouped top-k or correction bias or sigmoid or routed_scaling_factor
|
|
elif (
|
|
correction_bias is not None
|
|
or topk_config.scoring_func == "sigmoid"
|
|
or num_token_non_padded is not None
|
|
):
|
|
topk_weights, topk_ids, _ = torch.ops.npu.npu_moe_gating_top_k(
|
|
router_logits.to(torch.float32),
|
|
k=topk_config.top_k,
|
|
bias=(
|
|
correction_bias.to(torch.float32)
|
|
if correction_bias is not None
|
|
else None
|
|
),
|
|
# num_expert_group and topk_group in some topk_config without group is None, (not supported by this ops)
|
|
k_group=topk_config.topk_group if use_grouped_topk else 1,
|
|
group_count=topk_config.num_expert_group if use_grouped_topk else 1,
|
|
group_select_mode=(1 if use_grouped_topk else 0),
|
|
renorm=0,
|
|
# 1 for sigmoid, 0 for softmax
|
|
norm_type=1,
|
|
routed_scaling_factor=(
|
|
1 if renormalize else topk_config.routed_scaling_factor
|
|
),
|
|
eps=float(1e-20),
|
|
)
|
|
topk_weights = topk_weights.to(torch.float32)
|
|
|
|
# torch native is not yet supported num_token_non_padded
|
|
# Fallback to torch native implementation
|
|
else:
|
|
topk_config.torch_native = True
|
|
return select_experts(
|
|
hidden_states=hidden_states,
|
|
layer_id=layer_id,
|
|
router_logits=router_logits,
|
|
topk_config=topk_config,
|
|
num_token_non_padded=num_token_non_padded,
|
|
expert_location_dispatch_info=expert_location_dispatch_info,
|
|
)
|
|
|
|
if expert_location_dispatch_info is not None:
|
|
topk_ids = topk_ids_logical_to_physical(topk_ids, expert_location_dispatch_info)
|
|
get_global_expert_distribution_recorder().on_select_experts(topk_ids=topk_ids)
|
|
capture_routed_experts_if_allowed(topk_config, layer_id, topk_ids)
|
|
|
|
return StandardTopKOutput(topk_weights, topk_ids, router_logits)
|