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
286 lines
9.6 KiB
Python
286 lines
9.6 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
import torch
|
|
|
|
from sglang.srt.hardware_backend.cpu.quantization.gptq_kernels import (
|
|
GPTQIntelAMXLinearKernel,
|
|
GPTQIntelAMXMoEKernel,
|
|
)
|
|
from sglang.srt.layers.linear import set_weight_attrs
|
|
from sglang.srt.layers.moe import MoeRunnerConfig
|
|
from sglang.srt.layers.parameter import (
|
|
ChannelQuantScaleParameter,
|
|
GroupQuantScaleParameter,
|
|
PackedColumnParameter,
|
|
PackedvLLMParameter,
|
|
RowvLLMParameter,
|
|
)
|
|
|
|
from .gptq_linear import GPTQLinearScheme
|
|
from .gptq_scheme import GPTQMoESchemeBase
|
|
|
|
if TYPE_CHECKING:
|
|
from sglang.srt.layers.moe.token_dispatcher import StandardDispatchOutput
|
|
from sglang.srt.layers.quantization.gptq.gptq import GPTQConfig
|
|
|
|
__all__ = ["GPTQIntelAMXLinearScheme", "GPTQIntelAMXMoEScheme"]
|
|
|
|
|
|
def _check_cpu_amx_support(quant_config: GPTQConfig) -> None:
|
|
if quant_config.desc_act and not (
|
|
quant_config.true_sequential and quant_config.static_groups
|
|
):
|
|
raise ValueError(
|
|
"Currently, desc_act (True) is only supported with sequential "
|
|
"and static group on CPU with AMX."
|
|
)
|
|
if quant_config.weight_bits != 4:
|
|
raise ValueError("Currently, only 4bits is supported on CPU with AMX.")
|
|
if quant_config.checkpoint_format == "gptq_v2":
|
|
raise ValueError("Currently, gptq_v2 is not supported on CPU with AMX.")
|
|
|
|
|
|
class GPTQIntelAMXLinearScheme(GPTQLinearScheme):
|
|
"""Linear scheme for GPTQ on Intel CPU with AMX."""
|
|
|
|
def _init_kernel(self, quant_config: GPTQConfig):
|
|
return GPTQIntelAMXLinearKernel(quant_config)
|
|
|
|
def create_weights(
|
|
self,
|
|
layer: torch.nn.Module,
|
|
input_size_per_partition: int,
|
|
output_partition_sizes: list[int],
|
|
input_size: int,
|
|
params_dtype: torch.dtype,
|
|
weight_loader,
|
|
**kwargs,
|
|
):
|
|
_check_cpu_amx_support(self.quant_config)
|
|
|
|
if input_size_per_partition % self.quant_config.group_size != 0:
|
|
raise ValueError(
|
|
"The input size is not aligned with the quantized "
|
|
"weight shape. This can be caused by too large "
|
|
"tensor parallel size."
|
|
)
|
|
output_size_per_partition = sum(output_partition_sizes)
|
|
if output_size_per_partition % self.quant_config.pack_factor.numerator != 0:
|
|
raise ValueError(
|
|
"The output size is not aligned with the quantized "
|
|
"weight shape. This can be caused by too large "
|
|
"tensor parallel size."
|
|
)
|
|
|
|
if self.quant_config.group_size != -1:
|
|
group_size = self.quant_config.group_size
|
|
else:
|
|
group_size = input_size
|
|
|
|
scale_and_zero_size = input_size_per_partition // group_size
|
|
scale_and_zero_input_dim = 0
|
|
|
|
qweight = PackedvLLMParameter(
|
|
data=torch.empty(
|
|
input_size_per_partition // self.quant_config.pack_factor,
|
|
output_size_per_partition,
|
|
dtype=torch.int32,
|
|
),
|
|
input_dim=0,
|
|
output_dim=1,
|
|
packed_dim=0,
|
|
packed_factor=self.quant_config.pack_factor,
|
|
weight_loader=weight_loader,
|
|
)
|
|
|
|
g_idx = RowvLLMParameter(
|
|
data=torch.tensor(
|
|
[
|
|
i // self.quant_config.group_size
|
|
for i in range(input_size_per_partition)
|
|
],
|
|
dtype=torch.int32,
|
|
),
|
|
input_dim=0,
|
|
weight_loader=weight_loader,
|
|
)
|
|
qzeros_args = {
|
|
"data": torch.empty(
|
|
scale_and_zero_size,
|
|
output_size_per_partition // self.quant_config.pack_factor,
|
|
dtype=torch.int32,
|
|
),
|
|
"weight_loader": weight_loader,
|
|
}
|
|
weight_scale_args = {
|
|
"data": torch.empty(
|
|
scale_and_zero_size,
|
|
output_size_per_partition,
|
|
dtype=params_dtype,
|
|
),
|
|
"weight_loader": weight_loader,
|
|
}
|
|
if scale_and_zero_input_dim is None:
|
|
scales = ChannelQuantScaleParameter(output_dim=1, **weight_scale_args)
|
|
qzeros = PackedColumnParameter(
|
|
output_dim=1,
|
|
packed_dim=1,
|
|
packed_factor=self.quant_config.pack_factor,
|
|
**qzeros_args,
|
|
)
|
|
else:
|
|
scales = GroupQuantScaleParameter(
|
|
output_dim=1, input_dim=0, **weight_scale_args
|
|
)
|
|
qzeros = PackedvLLMParameter(
|
|
input_dim=0,
|
|
output_dim=1,
|
|
packed_dim=1,
|
|
packed_factor=self.quant_config.pack_factor,
|
|
**qzeros_args,
|
|
)
|
|
|
|
layer.register_parameter("qweight", qweight)
|
|
layer.register_parameter("g_idx", g_idx)
|
|
layer.register_parameter("qzeros", qzeros)
|
|
layer.register_parameter("scales", scales)
|
|
|
|
|
|
class GPTQIntelAMXMoEScheme(GPTQMoESchemeBase):
|
|
"""MoE scheme for GPTQ on Intel CPU with AMX."""
|
|
|
|
def __init__(self, quant_config: GPTQConfig):
|
|
self.quant_config = quant_config
|
|
self.kernel = GPTQIntelAMXMoEKernel(quant_config)
|
|
|
|
def create_weights(
|
|
self,
|
|
layer: torch.nn.Module,
|
|
num_experts: int,
|
|
hidden_size: int,
|
|
intermediate_size_per_partition: int,
|
|
params_dtype: torch.dtype,
|
|
**extra_weight_attrs,
|
|
):
|
|
from sglang.srt.layers.moe.fused_moe_triton import FusedMoeWeightScaleSupported
|
|
|
|
_check_cpu_amx_support(self.quant_config)
|
|
pack_factor = self.quant_config.pack_factor
|
|
|
|
if self.quant_config.group_size != -1:
|
|
scales_size13 = hidden_size // self.quant_config.group_size
|
|
w2_scales_size = intermediate_size_per_partition
|
|
scales_size2 = w2_scales_size // self.quant_config.group_size
|
|
strategy = FusedMoeWeightScaleSupported.GROUP.value
|
|
else:
|
|
scales_size13 = 1
|
|
scales_size2 = 1
|
|
strategy = FusedMoeWeightScaleSupported.CHANNEL.value
|
|
|
|
extra_weight_attrs.update({"quant_method": strategy, "is_transposed": True})
|
|
|
|
w13_qweight = torch.nn.Parameter(
|
|
torch.empty(
|
|
num_experts,
|
|
hidden_size // pack_factor,
|
|
2 * intermediate_size_per_partition,
|
|
dtype=torch.int32,
|
|
),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w13_qweight", w13_qweight)
|
|
set_weight_attrs(w13_qweight, extra_weight_attrs)
|
|
|
|
w2_qweight = torch.nn.Parameter(
|
|
torch.empty(
|
|
num_experts,
|
|
intermediate_size_per_partition // pack_factor,
|
|
hidden_size,
|
|
dtype=torch.int32,
|
|
),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w2_qweight", w2_qweight)
|
|
set_weight_attrs(w2_qweight, extra_weight_attrs)
|
|
|
|
w13_scales = torch.nn.Parameter(
|
|
torch.empty(
|
|
num_experts,
|
|
scales_size13,
|
|
2 * intermediate_size_per_partition,
|
|
dtype=params_dtype,
|
|
),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w13_scales", w13_scales)
|
|
set_weight_attrs(w13_scales, extra_weight_attrs)
|
|
|
|
w2_scales = torch.nn.Parameter(
|
|
torch.empty(num_experts, scales_size2, hidden_size, dtype=params_dtype),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w2_scales", w2_scales)
|
|
set_weight_attrs(w2_scales, extra_weight_attrs)
|
|
set_weight_attrs(w2_scales, {"load_full_w2": self.quant_config.desc_act})
|
|
|
|
w13_qzeros = torch.nn.Parameter(
|
|
torch.empty(
|
|
num_experts,
|
|
scales_size13,
|
|
2 * intermediate_size_per_partition // pack_factor,
|
|
dtype=torch.int32,
|
|
),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w13_qzeros", w13_qzeros)
|
|
set_weight_attrs(w13_qzeros, extra_weight_attrs)
|
|
|
|
w2_qzeros = torch.nn.Parameter(
|
|
torch.empty(
|
|
num_experts,
|
|
scales_size2,
|
|
hidden_size // pack_factor,
|
|
dtype=torch.int32,
|
|
),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w2_qzeros", w2_qzeros)
|
|
set_weight_attrs(w2_qzeros, extra_weight_attrs)
|
|
set_weight_attrs(w2_qzeros, {"load_full_w2": self.quant_config.desc_act})
|
|
|
|
w13_g_idx = torch.nn.Parameter(
|
|
torch.empty(num_experts, hidden_size, dtype=torch.int32),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w13_g_idx", w13_g_idx)
|
|
set_weight_attrs(w13_g_idx, extra_weight_attrs)
|
|
|
|
w2_g_idx = torch.nn.Parameter(
|
|
torch.empty(
|
|
num_experts,
|
|
intermediate_size_per_partition,
|
|
dtype=torch.int32,
|
|
),
|
|
requires_grad=False,
|
|
)
|
|
layer.register_parameter("w2_g_idx", w2_g_idx)
|
|
set_weight_attrs(w2_g_idx, extra_weight_attrs)
|
|
|
|
def create_moe_runner(
|
|
self, layer: torch.nn.Module, moe_runner_config: MoeRunnerConfig
|
|
):
|
|
self.kernel.create_moe_runner(layer, moe_runner_config)
|
|
|
|
def process_weights_after_loading(self, layer: torch.nn.Module) -> None:
|
|
self.kernel.process_weights_after_loading(layer)
|
|
|
|
def apply_weights(
|
|
self,
|
|
layer: torch.nn.Module,
|
|
dispatch_output: StandardDispatchOutput,
|
|
):
|
|
return self.kernel.apply(layer, dispatch_output)
|