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
253 lines
8.9 KiB
Python
253 lines
8.9 KiB
Python
import functools
|
|
import logging
|
|
from typing import Any, Dict, Iterable, Optional, Tuple
|
|
|
|
import torch
|
|
from transformers import PretrainedConfig
|
|
|
|
from sglang.srt.layers.moe.topk import TopK
|
|
from sglang.srt.layers.quantization.base_config import QuantizationConfig
|
|
from sglang.srt.layers.rotary_embedding import get_rope
|
|
from sglang.srt.model_executor.forward_batch_info import ForwardBatch
|
|
from sglang.srt.model_loader.weight_utils import default_weight_loader
|
|
from sglang.srt.models.qwen3_moe import Qwen3MoeAttention, Qwen3MoeDecoderLayer
|
|
from sglang.srt.models.qwen3_vl_moe import (
|
|
Qwen3MoeLLMModel,
|
|
Qwen3VLMoeForConditionalGeneration,
|
|
)
|
|
from sglang.srt.runtime_context import get_parallel
|
|
from sglang.srt.utils import add_prefix
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class InternS1ProTextAttention(Qwen3MoeAttention):
|
|
def __init__(
|
|
self,
|
|
hidden_size: int,
|
|
num_heads: int,
|
|
num_kv_heads: int,
|
|
layer_id: int = 0,
|
|
rope_theta: float = 1000000,
|
|
rope_scaling: Optional[Dict[str, Any]] = None,
|
|
max_position_embeddings: int = 32768,
|
|
**kwargs,
|
|
) -> None:
|
|
super().__init__(
|
|
hidden_size,
|
|
num_heads,
|
|
num_kv_heads,
|
|
layer_id=layer_id,
|
|
rope_theta=rope_theta,
|
|
rope_scaling=rope_scaling,
|
|
max_position_embeddings=max_position_embeddings,
|
|
**kwargs,
|
|
)
|
|
# for fope
|
|
fope_keys = {"fope_init_factor", "fope_sep_head", "num_inv_freq"}
|
|
use_fope = any(rope_scaling.get(key) is not None for key in fope_keys)
|
|
if use_fope:
|
|
rope_scaling["use_fope"] = True
|
|
rope_scaling["num_kv_heads"] = self.num_kv_heads
|
|
|
|
self.rotary_emb = get_rope(
|
|
self.head_dim,
|
|
rotary_dim=self.head_dim,
|
|
max_position=max_position_embeddings,
|
|
base=rope_theta,
|
|
rope_scaling=rope_scaling,
|
|
)
|
|
self.compatible_with_fused_kv_buffer = False
|
|
self.use_fused_qk_norm_rope = False
|
|
self._used_fused_qk_norm_rope_last_call = False
|
|
|
|
def forward_prepare_npu(
|
|
self,
|
|
positions: torch.Tensor,
|
|
hidden_states: torch.Tensor,
|
|
forward_batch: ForwardBatch,
|
|
):
|
|
raise NotImplementedError()
|
|
|
|
|
|
class InternS1ProTextDecoderLayer(Qwen3MoeDecoderLayer):
|
|
def __init__(
|
|
self,
|
|
config: PretrainedConfig,
|
|
layer_id: int,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
prefix: str = "",
|
|
alt_stream: Optional[torch.cuda.Stream] = None,
|
|
) -> None:
|
|
super().__init__(
|
|
config,
|
|
layer_id,
|
|
quant_config=quant_config,
|
|
prefix=prefix,
|
|
alt_stream=alt_stream,
|
|
)
|
|
|
|
rope_theta = getattr(config, "rope_theta", 1000000)
|
|
rope_scaling = getattr(config, "rope_scaling", None)
|
|
max_position_embeddings = getattr(config, "max_position_embeddings", 32768)
|
|
head_dim = getattr(
|
|
config, "head_dim", config.hidden_size // config.num_attention_heads
|
|
)
|
|
rms_norm_eps = config.rms_norm_eps
|
|
attention_bias = config.attention_bias
|
|
|
|
self.self_attn = InternS1ProTextAttention(
|
|
hidden_size=self.hidden_size,
|
|
num_heads=config.num_attention_heads,
|
|
num_kv_heads=config.num_key_value_heads,
|
|
layer_id=layer_id,
|
|
rope_theta=rope_theta,
|
|
rope_scaling=rope_scaling,
|
|
max_position_embeddings=max_position_embeddings,
|
|
head_dim=head_dim,
|
|
rms_norm_eps=rms_norm_eps,
|
|
attention_bias=attention_bias,
|
|
config=config,
|
|
quant_config=quant_config,
|
|
prefix=add_prefix("self_attn", prefix),
|
|
alt_stream=alt_stream,
|
|
)
|
|
# update with group router
|
|
self.router_n_groups = getattr(config, "router_n_groups", -1)
|
|
if self.router_n_groups > 0:
|
|
assert (
|
|
config.num_experts_per_tok % self.router_n_groups == 0
|
|
), f"{config.num_experts_per_tok} cannot be divided by {self.router_n_groups}"
|
|
self.mlp.topk = TopK(
|
|
top_k=config.num_experts_per_tok,
|
|
renormalize=config.norm_topk_prob,
|
|
use_grouped_topk=False,
|
|
layer_id=layer_id,
|
|
custom_routing_function=self._custom_routing_function,
|
|
)
|
|
|
|
@staticmethod
|
|
@functools.lru_cache
|
|
def get_group_offsets(router_n_groups: int, group_size: int, device: str):
|
|
group_offsets = (
|
|
torch.arange(router_n_groups, device=device) * group_size
|
|
).view(
|
|
1, -1, 1
|
|
) # [1, n_groups, 1]
|
|
return group_offsets
|
|
|
|
def _custom_routing_function(
|
|
self,
|
|
hidden_states: torch.Tensor,
|
|
gating_output: torch.Tensor,
|
|
topk: int,
|
|
renormalize: bool,
|
|
) -> torch.Tensor:
|
|
"""Group router"""
|
|
routing_weights = torch.softmax(gating_output, dim=-1, dtype=torch.float32)
|
|
if self.router_n_groups > 0:
|
|
assert (
|
|
routing_weights.shape[-1] % self.router_n_groups == 0
|
|
), f"{routing_weights.shape[-1]} cannot be divided by {self.router_n_groups}"
|
|
per_group_top_k = topk // self.router_n_groups
|
|
group_size = routing_weights.shape[-1] // self.router_n_groups
|
|
group_offsets = self.get_group_offsets(
|
|
self.router_n_groups, group_size, routing_weights.device
|
|
)
|
|
routing_weights = routing_weights.unflatten(
|
|
-1, (self.router_n_groups, group_size)
|
|
)
|
|
topk_weights, topk_ids = torch.topk(
|
|
routing_weights, per_group_top_k, dim=-1
|
|
)
|
|
topk_ids = (topk_ids + group_offsets).flatten(-2, -1)
|
|
topk_weights = topk_weights.flatten(-2, -1)
|
|
else:
|
|
topk_weights, topk_ids = torch.topk(routing_weights, topk, dim=-1)
|
|
|
|
if renormalize:
|
|
topk_weights = topk_weights / topk_weights.sum(dim=-1, keepdim=True)
|
|
|
|
return topk_weights, topk_ids
|
|
|
|
|
|
class InternS1ProTextModel(Qwen3MoeLLMModel):
|
|
def __init__(
|
|
self,
|
|
*,
|
|
config: PretrainedConfig,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
decoder_layer_type=InternS1ProTextDecoderLayer,
|
|
prefix: str = "",
|
|
):
|
|
super().__init__(
|
|
config=config,
|
|
quant_config=quant_config,
|
|
prefix=prefix,
|
|
decoder_layer_type=decoder_layer_type,
|
|
)
|
|
|
|
|
|
class InternS1ProForConditionalGeneration(Qwen3VLMoeForConditionalGeneration):
|
|
|
|
def __init__(
|
|
self,
|
|
config: PretrainedConfig,
|
|
quant_config: Optional[QuantizationConfig] = None,
|
|
prefix: str = "",
|
|
language_model_cls=InternS1ProTextModel,
|
|
) -> None:
|
|
# deal with no deepstack
|
|
if not hasattr(config.vision_config, "deepstack_visual_indexes"):
|
|
config.vision_config.deepstack_visual_indexes = []
|
|
|
|
super().__init__(
|
|
config,
|
|
quant_config=quant_config,
|
|
prefix=prefix,
|
|
language_model_cls=language_model_cls,
|
|
)
|
|
|
|
# disable deepstack
|
|
if len(config.vision_config.deepstack_visual_indexes) == 0:
|
|
self.use_deepstack = {}
|
|
|
|
def _load_fope_weights(self, name: str, loaded_weight: torch.Tensor, params_dict):
|
|
"""load fope weights"""
|
|
attn_tp_size = get_parallel().attn_tp_size
|
|
attn_tp_rank = get_parallel().attn_tp_rank
|
|
|
|
num_key_value_heads = loaded_weight.size(0)
|
|
# replicate head if necessary
|
|
if num_key_value_heads < attn_tp_size:
|
|
n_replicate = attn_tp_size // num_key_value_heads
|
|
attn_tp_size = num_key_value_heads
|
|
attn_tp_rank = attn_tp_rank // n_replicate
|
|
loaded_weight = loaded_weight.chunk(attn_tp_size, dim=0)[attn_tp_rank]
|
|
|
|
# rotary_emb is shared cross layers
|
|
param_name = name.replace(".rotary_emb.", ".layers.0.self_attn.rotary_emb.")
|
|
assert param_name in params_dict
|
|
param = params_dict[param_name]
|
|
weight_loader = getattr(param, "weight_loader", default_weight_loader)
|
|
weight_loader(param, loaded_weight)
|
|
|
|
def load_weights(self, weights: Iterable[Tuple[str, torch.Tensor]]):
|
|
"""load weights"""
|
|
# Cache params_dict to avoid repeated expensive traversal of model parameters
|
|
if not hasattr(self, "_cached_params_dict"):
|
|
self._cached_params_dict = dict(self.named_parameters())
|
|
params_dict = self._cached_params_dict
|
|
other_weights = dict()
|
|
for name, loaded_weight in weights:
|
|
if "sin_coef" in name or "cos_coef" in name:
|
|
name = name.replace(r"model.language_model.", r"model.")
|
|
self._load_fope_weights(name, loaded_weight, params_dict)
|
|
else:
|
|
other_weights[name] = loaded_weight
|
|
|
|
super().load_weights(other_weights.items())
|
|
|
|
|
|
EntryClass = InternS1ProForConditionalGeneration
|