qwen 3.8 rebase (#35758)

Co-authored-by: cherichy <cherichy@outlook.com>
Co-authored-by: guangyunh-nv <guangyunh@nvidia.com>
Co-authored-by: jiahanc <jiahanc@nvidia.com>
Co-authored-by: jinyangyuan-nvidia <joyuan@nvidia.com>
Co-authored-by: Cheng Hang <chang@nvidia.com>
Co-authored-by: Yicheng Qiang <yqiang@nvidia.com>
Co-authored-by: Sam Li <lsam@nvidia.com>
Co-authored-by: Tom-Zheng <tizheng@nvidia.com>
Co-authored-by: Yangmin Li <yangminl@nvidia.com>
Co-authored-by: xiaoweiw-nv <xiaoweiw@nvidia.com>
Co-authored-by: Zheng Li <lizheng.cs@zju.edu.cn>
Co-authored-by: yizhang2077 <1109276519@qq.com>
Co-authored-by: Ke Bao <ispobaoke@gmail.com>
Co-authored-by: Xinyuan Tong <115166877+JustinTong0323@users.noreply.github.com>
Co-authored-by: Yuhao Yang <47235274+yhyang201@users.noreply.github.com>
Co-authored-by: Zijie Xia <zijie.xia@radixark.ai>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Qiaolin Yu
2026-08-28 20:41:34 -07:00
committed by GitHub
co-authored by cherichy guangyunh-nv jiahanc jinyangyuan-nvidia Cheng Hang Yicheng Qiang Sam Li Tom-Zheng Yangmin Li xiaoweiw-nv Zheng Li yizhang2077 Ke Bao Xinyuan Tong Yuhao Yang Zijie Xia github-actions[bot]
parent ca8cc101b8
commit 5f216fc33f
97 changed files with 14483 additions and 373 deletions
@@ -0,0 +1,62 @@
import pytest
from sglang.srt.environ import envs
from sglang.srt.layers.quantization.unquant import (
_FLASHINFER_PR4266_TUNED_TACTICS,
Bf16GemmBackend,
should_enable_bf16_splitk_gemm,
use_flashinfer_pr4266_bf16_gemm,
)
from sglang.test.ci.ci_register import register_cpu_ci
register_cpu_ci(est_time=5, suite="base-a-test-cpu")
@pytest.mark.parametrize("m,n,k", _FLASHINFER_PR4266_TUNED_TACTICS)
def test_flashinfer_pr4266_selects_tuned_oakhaven_shape(m: int, n: int, k: int):
assert use_flashinfer_pr4266_bf16_gemm(m, n, k)
@pytest.mark.parametrize("m", [0, 33, 64])
@pytest.mark.parametrize("n,k", [(256, 8192), (512, 8192), (2304, 8192), (2560, 8192)])
def test_flashinfer_pr4266_keeps_large_m_on_existing_path(m: int, n: int, k: int):
assert not use_flashinfer_pr4266_bf16_gemm(m, n, k)
@pytest.mark.parametrize(
"shape",
[
(1, 1024, 2048),
(3, 256, 8192),
(16, 8192, 4096),
(32, 4096, 8192),
],
)
def test_flashinfer_pr4266_rejects_unmeasured_shapes(shape: tuple[int, int, int]):
assert not use_flashinfer_pr4266_bf16_gemm(*shape)
def test_flashinfer_pr4266_backend_is_explicit():
assert Bf16GemmBackend.FLASHINFER_PR4266.value == "flashinfer_pr4266"
def test_bf16_splitk_is_enabled_by_default():
assert envs.SGLANG_ENABLE_BF16_SPLITK_GEMM.default is True
with envs.SGLANG_ENABLE_BF16_SPLITK_GEMM.override(True):
assert should_enable_bf16_splitk_gemm(Bf16GemmBackend.CUTEDSL)
def test_bf16_splitk_env_kill_switch():
with envs.SGLANG_ENABLE_BF16_SPLITK_GEMM.override(False):
assert not should_enable_bf16_splitk_gemm(Bf16GemmBackend.CUTEDSL)
def test_bf16_splitk_does_not_override_torch_backend():
with envs.SGLANG_ENABLE_BF16_SPLITK_GEMM.override(True):
assert not should_enable_bf16_splitk_gemm(Bf16GemmBackend.TORCH)
if __name__ == "__main__":
import sys
sys.exit(pytest.main([__file__, "-v"]))