sgl-project--sglang
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
331 行
10 KiB
Python
331 行
10 KiB
Python
import unittest
|
|
from typing import Optional
|
|
|
|
import sgl_kernel # noqa: F401
|
|
import torch
|
|
import torch.nn.functional as F
|
|
from utils import parametrize, precision
|
|
|
|
from sglang.test.ci.ci_register import register_cpu_ci
|
|
from sglang.test.test_utils import CustomTestCase
|
|
|
|
register_cpu_ci(est_time=10, suite="base-b-test-cpu")
|
|
|
|
causal_conv1d_weight_pack = torch.ops.sgl_kernel.causal_conv1d_weight_pack
|
|
causal_conv1d_fwd = torch.ops.sgl_kernel.causal_conv1d_fwd_cpu
|
|
causal_conv1d_update = torch.ops.sgl_kernel.causal_conv1d_update_cpu
|
|
|
|
|
|
torch.manual_seed(1234)
|
|
|
|
PAD_SLOT_ID = -1
|
|
|
|
|
|
def causal_conv1d_ref(
|
|
x: torch.Tensor,
|
|
weight: torch.Tensor,
|
|
bias: Optional[torch.Tensor] = None,
|
|
initial_states: Optional[torch.Tensor] = None,
|
|
return_final_states: bool = False,
|
|
final_states_out: Optional[torch.Tensor] = None,
|
|
activation: Optional[str] = "silu",
|
|
):
|
|
"""
|
|
x: (batch, dim, seqlen)
|
|
weight: (dim, width)
|
|
bias: (dim,)
|
|
initial_states: (batch, dim, width - 1)
|
|
final_states_out: (batch, dim, width - 1)
|
|
|
|
out: (batch, dim, seqlen)
|
|
"""
|
|
if activation not in [None, "silu", "swish"]:
|
|
raise NotImplementedError("activation must be None, silu, or swish")
|
|
dtype_in = x.dtype
|
|
x = x.to(weight.dtype)
|
|
seqlen = x.shape[-1]
|
|
dim, width = weight.shape
|
|
if initial_states is None:
|
|
out = F.conv1d(x, weight.unsqueeze(1), bias, padding=width - 1, groups=dim)
|
|
else:
|
|
x = torch.cat([initial_states, x], dim=-1)
|
|
out = F.conv1d(x, weight.unsqueeze(1), bias, padding=0, groups=dim)
|
|
out = out[..., :seqlen]
|
|
if return_final_states:
|
|
final_states = F.pad(x, (width - 1 - x.shape[-1], 0)).to(
|
|
dtype_in
|
|
) # (batch, dim, width - 1)
|
|
if final_states_out is not None:
|
|
final_states_out.copy_(final_states)
|
|
else:
|
|
final_states_out = final_states
|
|
out = (out if activation is None else F.silu(out)).to(dtype=dtype_in)
|
|
return (out, None) if not return_final_states else (out, final_states_out)
|
|
|
|
|
|
def causal_conv1d_update_ref(
|
|
x, conv_state, weight, bias=None, activation=None, cache_seqlens=None
|
|
):
|
|
"""
|
|
x: (batch, dim) or (batch, dim, seqlen)
|
|
conv_state: (batch, dim, state_len), where state_len >= width - 1
|
|
weight: (dim, width)
|
|
bias: (dim,)
|
|
cache_seqlens: (batch,), dtype int32.
|
|
If not None, the conv_state is treated as a circular buffer.
|
|
The conv_state will be updated by copying x to the
|
|
conv_state starting at the index
|
|
@cache_seqlens % state_len before performing the convolution.
|
|
|
|
out: (batch, dim) or (batch, dim, seqlen)
|
|
"""
|
|
if activation not in [None, "silu", "swish"]:
|
|
raise NotImplementedError("activation must be None, silu, or swish")
|
|
|
|
x = x.unsqueeze(-1)
|
|
batch, dim, seqlen = x.shape
|
|
width = weight.shape[1]
|
|
state_len = conv_state.shape[-1]
|
|
|
|
x_new = torch.cat([conv_state, x], dim=-1)
|
|
conv_state.copy_(x_new[:, :, -state_len:])
|
|
out = F.conv1d(x_new, weight.unsqueeze(1), bias, padding=0, groups=dim)[
|
|
:, :, -seqlen:
|
|
]
|
|
|
|
out = out.squeeze(-1)
|
|
return out if activation is None else F.silu(out)
|
|
|
|
|
|
class TestCausalConv1d(CustomTestCase):
|
|
activation = "silu"
|
|
|
|
@parametrize(
|
|
batch=[1, 1024],
|
|
dim=[96, 512],
|
|
seqlen=[2, 36],
|
|
width=[4],
|
|
has_bias=[True, False],
|
|
has_initial_state=[True, False],
|
|
)
|
|
def test_causal_conv1d(
|
|
self,
|
|
batch,
|
|
dim,
|
|
seqlen,
|
|
width,
|
|
has_bias,
|
|
has_initial_state,
|
|
dtype=torch.bfloat16,
|
|
prepack=True,
|
|
):
|
|
x = torch.randn(batch, seqlen, dim).to(dtype).transpose_(-1, -2)
|
|
weight = torch.randn(dim, width).to(dtype)
|
|
bias = torch.randn(dim).to(dtype) if has_bias else None
|
|
|
|
if has_initial_state:
|
|
initial_states = torch.randn(batch, dim, width - 1, dtype=dtype)
|
|
has_initial_state_tensor = torch.ones(batch, dtype=torch.bool)
|
|
else:
|
|
initial_states = None
|
|
has_initial_state_tensor = None
|
|
|
|
packed_weight = causal_conv1d_weight_pack(weight) if prepack else weight
|
|
|
|
out_ref, final_states_ref = causal_conv1d_ref(
|
|
x,
|
|
weight,
|
|
bias,
|
|
initial_states,
|
|
return_final_states=has_initial_state,
|
|
activation=self.activation,
|
|
)
|
|
|
|
out = causal_conv1d_fwd(
|
|
x,
|
|
packed_weight,
|
|
bias,
|
|
initial_states,
|
|
None,
|
|
None,
|
|
has_initial_state_tensor,
|
|
self.activation in ["silu"],
|
|
PAD_SLOT_ID,
|
|
prepack,
|
|
)
|
|
|
|
atol = rtol = precision[dtype]
|
|
torch.testing.assert_close(out_ref, out, atol=atol, rtol=rtol)
|
|
torch.testing.assert_close(
|
|
final_states_ref, initial_states, atol=atol, rtol=rtol
|
|
)
|
|
|
|
@parametrize(
|
|
batch=[11],
|
|
dim=[96],
|
|
max_seqlen=[66],
|
|
width=[4],
|
|
)
|
|
def test_causal_conv1d_varlen(
|
|
self,
|
|
batch,
|
|
dim,
|
|
max_seqlen,
|
|
width,
|
|
has_bias=False,
|
|
dtype=torch.bfloat16,
|
|
prepack=False,
|
|
):
|
|
total_entries = batch + 3
|
|
|
|
seqlens = torch.randint(1, max_seqlen, (batch + 1,))
|
|
seqlens[0] = 0
|
|
# 1 or 2 must test
|
|
seqlens[-2] = 2
|
|
|
|
query_start_loc = torch.cumsum(seqlens, dim=0).to(torch.int32)
|
|
|
|
seqlen = query_start_loc[-1].item()
|
|
x = torch.randn(seqlen, dim, dtype=dtype).transpose_(-1, -2)
|
|
weight = torch.randn(dim, width, dtype=dtype)
|
|
bias = torch.randn(dim, dtype=dtype) if has_bias else None
|
|
|
|
final_states = torch.randn(total_entries, dim, width - 1, dtype=dtype)
|
|
final_states_ref = final_states.clone()
|
|
|
|
has_initial_states = torch.randint(0, 2, (batch,), dtype=torch.bool).fill_(
|
|
False
|
|
)
|
|
state_indices = torch.randperm(total_entries, dtype=torch.int32)[:batch]
|
|
|
|
out_ref = []
|
|
out_ref_b = []
|
|
|
|
return_final_states = final_states is not None
|
|
splits = torch.split(x, seqlens[1:].tolist(), dim=1)
|
|
for i, x_s in enumerate(splits):
|
|
out_ref_b.append(
|
|
causal_conv1d_ref(
|
|
x_s.unsqueeze(0),
|
|
weight,
|
|
bias,
|
|
activation=self.activation,
|
|
return_final_states=return_final_states,
|
|
final_states_out=(
|
|
final_states_ref[state_indices[i]].unsqueeze(0)
|
|
if return_final_states
|
|
else None
|
|
),
|
|
initial_states=(
|
|
final_states_ref[state_indices[i]].unsqueeze(0)
|
|
if has_initial_states[i]
|
|
else None
|
|
),
|
|
)
|
|
)
|
|
out_ref.append(torch.cat([t[0] for t in out_ref_b], dim=2))
|
|
out_ref_tensor = torch.cat(out_ref, dim=0).squeeze(0)
|
|
|
|
out = causal_conv1d_fwd(
|
|
x,
|
|
weight,
|
|
bias,
|
|
final_states,
|
|
query_start_loc,
|
|
state_indices,
|
|
has_initial_states,
|
|
self.activation in ["silu"],
|
|
PAD_SLOT_ID,
|
|
prepack,
|
|
)
|
|
|
|
atol = rtol = precision[dtype]
|
|
torch.testing.assert_close(out_ref_tensor, out, atol=atol, rtol=rtol)
|
|
torch.testing.assert_close(final_states_ref, final_states, atol=atol, rtol=rtol)
|
|
|
|
@parametrize(
|
|
batch=[11],
|
|
dim=[32, 64, 96],
|
|
width=[4],
|
|
)
|
|
def test_causal_conv1d_update(
|
|
self, batch, dim, width, has_bias=False, dtype=torch.bfloat16, prepack=True
|
|
):
|
|
x = torch.randn(batch, dim).to(dtype)
|
|
conv_state = torch.randn(batch, dim, width - 1, dtype=dtype)
|
|
weight = torch.randn(dim, width).to(dtype)
|
|
bias = torch.randn(dim).to(dtype) if has_bias else None
|
|
|
|
packed_weight = causal_conv1d_weight_pack(weight) if prepack else weight
|
|
|
|
conv_state_ref = conv_state.clone()
|
|
out_ref = causal_conv1d_update_ref(
|
|
x, conv_state_ref, weight, bias, activation=self.activation
|
|
)
|
|
|
|
cache_seqlens = None
|
|
conv_state_indices = None
|
|
out = causal_conv1d_update(
|
|
x,
|
|
conv_state,
|
|
packed_weight,
|
|
bias,
|
|
self.activation in ["silu"],
|
|
cache_seqlens,
|
|
conv_state_indices,
|
|
PAD_SLOT_ID,
|
|
prepack,
|
|
)
|
|
|
|
atol = rtol = precision[dtype]
|
|
torch.testing.assert_close(out_ref, out, atol=atol, rtol=rtol)
|
|
torch.testing.assert_close(conv_state_ref, conv_state, atol=atol, rtol=rtol)
|
|
|
|
@parametrize(
|
|
batch=[7],
|
|
dim=[96],
|
|
width=[4],
|
|
)
|
|
def test_causal_conv1d_update_with_batch_gather(
|
|
self, batch, dim, width, has_bias=False, dtype=torch.bfloat16, prepack=True
|
|
):
|
|
total_entries = batch + 3
|
|
|
|
x = torch.randn(batch, dim).to(dtype=dtype)
|
|
|
|
conv_state_indices = torch.randperm(total_entries)[:batch].to(dtype=torch.int32)
|
|
conv_state = torch.randn(total_entries, dim, width - 1, dtype=dtype)
|
|
|
|
weight = torch.randn(dim, width).to(dtype=dtype)
|
|
bias = torch.randn(dim).to(dtype=dtype) if has_bias else None
|
|
conv_state_ref = conv_state[conv_state_indices, :]
|
|
|
|
packed_weight = causal_conv1d_weight_pack(weight) if prepack else weight
|
|
|
|
out_ref = causal_conv1d_update_ref(
|
|
x, conv_state_ref, weight, bias, activation=self.activation
|
|
)
|
|
|
|
cache_seqlens = None
|
|
out = causal_conv1d_update(
|
|
x,
|
|
conv_state,
|
|
packed_weight,
|
|
bias,
|
|
self.activation in ["silu"],
|
|
cache_seqlens,
|
|
conv_state_indices,
|
|
PAD_SLOT_ID,
|
|
prepack,
|
|
)
|
|
|
|
atol = rtol = precision[dtype]
|
|
torch.testing.assert_close(out_ref, out, atol=atol, rtol=rtol)
|
|
torch.testing.assert_close(
|
|
conv_state_ref, conv_state[conv_state_indices, :], atol=atol, rtol=rtol
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|