Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com> Co-authored-by: BBuf <1182563586@qq.com>
182 lines
7.6 KiB
Python
182 lines
7.6 KiB
Python
import itertools
|
|
import sys
|
|
|
|
import pytest
|
|
import torch
|
|
|
|
from sglang.kernels.jit.utils import get_ci_test_range
|
|
from sglang.kernels.ops.kvcache.kvcache import can_use_store_cache, store_cache
|
|
from sglang.test.ci.ci_register import register_amd_ci, register_cuda_ci
|
|
|
|
register_cuda_ci(est_time=28, stage="base-b-kernel-unit", runner_config="1-gpu-large")
|
|
# Nightly is not redundant here: it sets SGLANG_JIT_KERNEL_RUN_FULL_TESTS=1 to expand get_ci_test_range sweeps.
|
|
register_cuda_ci(est_time=40, stage="nightly", runner_config="1-gpu-large")
|
|
register_amd_ci(est_time=55, stage="jit-kernel-unit", runner_config="amd")
|
|
|
|
BS_LIST = [2**n for n in range(0, 15)]
|
|
BS_LIST += [x + 1 + i for i, x in enumerate(BS_LIST)]
|
|
BS_LIST = get_ci_test_range(BS_LIST, [1, 9, 256, 16399])
|
|
HIDDEN_DIMS = get_ci_test_range(
|
|
[64, 128, 256, 512, 1024, 96, 97, 100], [64, 512, 1024, 97]
|
|
)
|
|
CACHE_SIZE = 1024 * 1024
|
|
DTYPE = torch.bfloat16
|
|
DEVICE = "cuda"
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"batch_size,element_dim",
|
|
list(itertools.product(BS_LIST, HIDDEN_DIMS)),
|
|
)
|
|
def test_store_cache(batch_size: int, element_dim: int) -> None:
|
|
k = torch.randn((batch_size, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v = torch.randn((batch_size, element_dim), dtype=DTYPE, device=DEVICE)
|
|
k_cache = torch.randn((CACHE_SIZE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v_cache = torch.randn((CACHE_SIZE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
indices = torch.randperm(CACHE_SIZE - 1, device=DEVICE)[:batch_size] + 1
|
|
|
|
store_cache(k, v, k_cache, v_cache, indices)
|
|
|
|
assert torch.all(k_cache[indices] == k)
|
|
assert torch.all(v_cache[indices] == v)
|
|
|
|
|
|
# Smaller subset for targeted tests below
|
|
REPR_BS = get_ci_test_range([1, 7, 128], [1, 128])
|
|
REPR_DIMS = get_ci_test_range([64, 128, 512, 1024, 96], [64, 1024, 96])
|
|
SMALL_CACHE = 4096
|
|
|
|
|
|
@pytest.mark.parametrize("dtype", [torch.float16, torch.bfloat16, torch.float32])
|
|
@pytest.mark.parametrize(
|
|
"batch_size,element_dim",
|
|
list(itertools.product(REPR_BS, REPR_DIMS)),
|
|
)
|
|
def test_store_cache_dtypes(
|
|
batch_size: int, element_dim: int, dtype: torch.dtype
|
|
) -> None:
|
|
k = torch.randn((batch_size, element_dim), dtype=dtype, device=DEVICE)
|
|
v = torch.randn((batch_size, element_dim), dtype=dtype, device=DEVICE)
|
|
k_cache = torch.randn((SMALL_CACHE, element_dim), dtype=dtype, device=DEVICE)
|
|
v_cache = torch.randn((SMALL_CACHE, element_dim), dtype=dtype, device=DEVICE)
|
|
indices = torch.randperm(SMALL_CACHE - 1, device=DEVICE)[:batch_size] + 1
|
|
|
|
store_cache(k, v, k_cache, v_cache, indices)
|
|
|
|
assert torch.all(k_cache[indices] == k)
|
|
assert torch.all(v_cache[indices] == v)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"batch_size,element_dim",
|
|
list(itertools.product(REPR_BS, REPR_DIMS)),
|
|
)
|
|
def test_store_cache_int32_indices(batch_size: int, element_dim: int) -> None:
|
|
k = torch.randn((batch_size, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v = torch.randn((batch_size, element_dim), dtype=DTYPE, device=DEVICE)
|
|
k_cache = torch.randn((SMALL_CACHE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v_cache = torch.randn((SMALL_CACHE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
# int32 indices exercise a different CUDA template instantiation than default int64
|
|
indices = (torch.randperm(SMALL_CACHE - 1, device=DEVICE)[:batch_size] + 1).to(
|
|
torch.int32
|
|
)
|
|
|
|
store_cache(k, v, k_cache, v_cache, indices)
|
|
|
|
assert torch.all(k_cache[indices.long()] == k)
|
|
assert torch.all(v_cache[indices.long()] == v)
|
|
|
|
|
|
@pytest.mark.parametrize("index_dtype", [torch.int32, torch.int64])
|
|
def test_store_cache_reserved_skip_index(index_dtype: torch.dtype) -> None:
|
|
element_dim = 1024
|
|
k = torch.randn((4, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v = torch.randn((4, element_dim), dtype=DTYPE, device=DEVICE)
|
|
# Model kernels may leave CUDA-graph padding rows undefined. Reproduce the
|
|
# dangerous case directly instead of requiring a full model checkpoint.
|
|
k[[0, 2]] = torch.nan
|
|
v[[0, 2]] = torch.nan
|
|
k_cache = torch.randn((SMALL_CACHE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v_cache = torch.randn((SMALL_CACHE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
reserved_k_before = k_cache[0].clone()
|
|
reserved_v_before = v_cache[0].clone()
|
|
indices = torch.tensor([0, 7, 0, 9], dtype=index_dtype, device=DEVICE)
|
|
|
|
store_cache(
|
|
k,
|
|
v,
|
|
k_cache,
|
|
v_cache,
|
|
indices,
|
|
)
|
|
|
|
torch.testing.assert_close(k_cache[0], reserved_k_before, rtol=0.0, atol=0.0)
|
|
torch.testing.assert_close(v_cache[0], reserved_v_before, rtol=0.0, atol=0.0)
|
|
torch.testing.assert_close(k_cache[indices[1].long()], k[1], rtol=0.0, atol=0.0)
|
|
torch.testing.assert_close(v_cache[indices[1].long()], v[1], rtol=0.0, atol=0.0)
|
|
torch.testing.assert_close(k_cache[indices[3].long()], k[3], rtol=0.0, atol=0.0)
|
|
torch.testing.assert_close(v_cache[indices[3].long()], v[3], rtol=0.0, atol=0.0)
|
|
|
|
|
|
def test_store_cache_zero_index_can_be_written_when_skip_disabled() -> None:
|
|
element_dim = 64
|
|
k = torch.randn((1, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v = torch.randn((1, element_dim), dtype=DTYPE, device=DEVICE)
|
|
k_cache = torch.randn((SMALL_CACHE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
v_cache = torch.randn((SMALL_CACHE, element_dim), dtype=DTYPE, device=DEVICE)
|
|
indices = torch.zeros(1, dtype=torch.int64, device=DEVICE)
|
|
|
|
store_cache(k, v, k_cache, v_cache, indices, reserved_skip_index=-1)
|
|
|
|
torch.testing.assert_close(k_cache[0], k[0], rtol=0.0, atol=0.0)
|
|
torch.testing.assert_close(v_cache[0], v[0], rtol=0.0, atol=0.0)
|
|
|
|
|
|
# Asymmetric K/V (head_dim != v_head_dim): different row widths AND cache strides.
|
|
# MiMoV2 is 192/128. Both orderings, since nothing may assume K is the wider one.
|
|
ASYM_DIM_PAIRS = get_ci_test_range(
|
|
[(192, 128), (128, 192), (1024, 512), (512, 1024), (96, 64), (2048, 1024)],
|
|
[(192, 128), (512, 1024)],
|
|
)
|
|
|
|
|
|
# The kernel is a byte copier specialized on (k_row_bytes, v_row_bytes) -- no dtype
|
|
# in its template args -- so equal-itemsize dtypes share one instantiation. bf16 and
|
|
# fp32 are the two distinct itemsizes; fp16 would just re-run the bf16 one.
|
|
@pytest.mark.parametrize("dtype", [torch.bfloat16, torch.float32])
|
|
@pytest.mark.parametrize("k_dim,v_dim", ASYM_DIM_PAIRS)
|
|
def test_store_cache_asymmetric(k_dim: int, v_dim: int, dtype: torch.dtype) -> None:
|
|
batch_size = 128
|
|
k = torch.randn((batch_size, k_dim), dtype=dtype, device=DEVICE)
|
|
v = torch.randn((batch_size, v_dim), dtype=dtype, device=DEVICE)
|
|
k_cache = torch.randn((SMALL_CACHE, k_dim), dtype=dtype, device=DEVICE)
|
|
v_cache = torch.randn((SMALL_CACHE, v_dim), dtype=dtype, device=DEVICE)
|
|
k_before, v_before = k_cache.clone(), v_cache.clone()
|
|
indices = torch.randperm(SMALL_CACHE - 1, device=DEVICE)[:batch_size] + 1
|
|
|
|
store_cache(k, v, k_cache, v_cache, indices)
|
|
|
|
assert torch.all(k_cache[indices] == k)
|
|
assert torch.all(v_cache[indices] == v)
|
|
# Applying K's stride to V (or vice versa) would corrupt neighbouring slots,
|
|
# which the target-slot assertions above cannot see.
|
|
untouched = torch.ones(SMALL_CACHE, dtype=torch.bool, device=DEVICE)
|
|
untouched[indices] = False
|
|
assert torch.all(k_cache[untouched] == k_before[untouched])
|
|
assert torch.all(v_cache[untouched] == v_before[untouched])
|
|
|
|
|
|
def test_can_use_store_cache() -> None:
|
|
assert can_use_store_cache(128)
|
|
assert can_use_store_cache(256)
|
|
assert can_use_store_cache(1024)
|
|
assert can_use_store_cache(2048)
|
|
# asymmetric widths, and the documented default (v falls back to k)
|
|
assert can_use_store_cache(384, 256)
|
|
assert can_use_store_cache(256, 384)
|
|
assert can_use_store_cache(1024, 0) == can_use_store_cache(1024)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(pytest.main([__file__, "-v", "-s"]))
|