From adcb57917de7a8f1548b488645f904fbb79169d5 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 18 May 2026 21:01:25 -0500 Subject: [PATCH 1/2] Add CUDA 13.2 to nightly support --- _includes/selector.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/selector.html b/_includes/selector.html index dfc6d5bafdc..bd196e6d974 100644 --- a/_includes/selector.html +++ b/_includes/selector.html @@ -449,7 +449,7 @@ }, "Nightly": { "12": ["12.2", "12.9"], - "13": ["13.0", "13.1"] + "13": ["13.0", "13.2"] } }; var bounds = cuda_version_info[this.active_release][version]; From e4287cef6c53417cdf850a21347590a31ae2844c Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 18 May 2026 21:03:00 -0500 Subject: [PATCH 2/2] Update platform support for RAPIDS 26.06 --- _data/platform_support.yml | 52 ++++++++++++++++++++++++++++++++++++++ _includes/selector.html | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/_data/platform_support.yml b/_data/platform_support.yml index d32b1de4ee2..429388b62ec 100644 --- a/_data/platform_support.yml +++ b/_data/platform_support.yml @@ -1,4 +1,56 @@ releases: + - version: "26.06" + python: + - "3.11" + - "3.12" + - "3.13" + - "3.14" + glibc_min: "2.28" + cpu_arch: + - "x86_64" + - "aarch64" + os_support: + - "Ubuntu 22.04" + - "Ubuntu 24.04" + - "Rocky Linux 8" + source_build: + cccl: "3.4.0" + nvcomp: "5.2.0.13" + gcc: "13.3+" + cuda: + - major: 12 + toolkit_min: "12.2" + toolkit_max: "12.9" + driver_min: "535" + compute_capability: + - name: "Volta" + sm: 70 + - name: "Turing" + sm: 75 + - name: "Ampere" + sm: [80, 86] + - name: "Ada" + sm: 89 + - name: "Hopper" + sm: 90 + - name: "Blackwell" + sm: [100, 120] + - major: 13 + toolkit_min: "13.0" + toolkit_max: "13.2" + driver_min: "580" + compute_capability: + - name: "Turing" + sm: 75 + - name: "Ampere" + sm: [80, 86] + - name: "Ada" + sm: 89 + - name: "Hopper" + sm: 90 + - name: "Blackwell" + sm: [100, 120] + - version: "26.04" python: - "3.11" diff --git a/_includes/selector.html b/_includes/selector.html index bd196e6d974..4404c79bf40 100644 --- a/_includes/selector.html +++ b/_includes/selector.html @@ -445,7 +445,7 @@ var cuda_version_info = { "Stable": { "12": ["12.2", "12.9"], - "13": ["13.0", "13.1"] + "13": ["13.0", "13.2"] }, "Nightly": { "12": ["12.2", "12.9"],