[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
@@ -249,8 +249,8 @@ def compare_results(jit_out, sgl_out, dtype):
assert not torch.isnan(sgl_out).any(), "NaN in SGL results"
# Compare results
atol = 1e-2 if dtype != torch.float32 else 1e-5
rtol = 1e-2 if dtype != torch.float32 else 1e-5
atol = 4e-2 if dtype != torch.float32 else 1e-5
rtol = 4e-2 if dtype != torch.float32 else 1e-5
torch.testing.assert_close(jit_out, sgl_out, atol=atol, rtol=rtol)