[CI] Add per-job uv venv isolation and upgrade CI version to Cuda 13 (#23119)

Co-authored-by: Kangyan Zhou <zky314343421@gmail.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-authored-by: Alison Shao <a.shao@wustl.edu>
Co-authored-by: Mick <mickjagger19@icloud.com>
This commit is contained in:
Baizhou Zhang
2026-04-19 05:32:36 -07:00
committed by GitHub
co-authored by Kangyan Zhou Claude Opus 4.7 Alison Shao Mick
parent 03828f4205
commit 6ecd6f84db
39 changed files with 892 additions and 239 deletions
+8 -1
View File
@@ -13,7 +13,14 @@ from sgl_kernel.kvcacheio import (
transfer_kv_per_layer_mla,
)
from sglang.srt.utils import is_hip
from sglang.srt.utils import get_cuda_version, is_hip
# Skip entire module on CUDA 13.x — segfaults in transfer_kv kernel.
# Reference failure: https://github.com/sgl-project/sglang/actions/runs/24600433057/job/71938317621?pr=23119
pytestmark = pytest.mark.skipif(
get_cuda_version()[0] >= 13,
reason="test_kvcacheio segfaults on CUDA 13.x (sgl-kernel bug)",
)
def ref_copy_with_indices(src_pool, dst_pool, src_indices, dst_indices):