Skip to content

Commit 3414e5f

Browse files
committed
CI: Include CUDA 12.6.1-12.9.1 for windows install script. Use 12.9.1 in CI
1 parent 801ee75 commit 3414e5f

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/scripts/install_cuda_windows.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ $CUDA_KNOWN_URLS = @{
5454
"12.5.0" = "https://developer.download.nvidia.com/compute/cuda/12.5.0/network_installers/cuda_12.5.0_windows_network.exe";
5555
"12.5.1" = "https://developer.download.nvidia.com/compute/cuda/12.5.1/network_installers/cuda_12.5.1_windows_network.exe";
5656
"12.6.0" = "https://developer.download.nvidia.com/compute/cuda/12.6.0/network_installers/cuda_12.6.0_windows_network.exe";
57+
"12.6.1" = "https://developer.download.nvidia.com/compute/cuda/12.6.1/network_installers/cuda_12.6.1_windows_network.exe";
58+
"12.6.2" = "https://developer.download.nvidia.com/compute/cuda/12.6.2/network_installers/cuda_12.6.2_windows_network.exe";
59+
"12.6.3" = "https://developer.download.nvidia.com/compute/cuda/12.6.3/network_installers/cuda_12.6.3_windows_network.exe";
60+
"12.8.0" = "https://developer.download.nvidia.com/compute/cuda/12.8.0/network_installers/cuda_12.8.0_windows_network.exe"
61+
"12.8.1" = "https://developer.download.nvidia.com/compute/cuda/12.8.1/network_installers/cuda_12.8.1_windows_network.exe"
62+
"12.9.0" = "https://developer.download.nvidia.com/compute/cuda/12.9.0/network_installers/cuda_12.9.0_windows_network.exe"
63+
"12.9.1" = "https://developer.download.nvidia.com/compute/cuda/12.9.1/network_installers/cuda_12.9.1_windows_network.exe"
5764
}
5865

5966
# @todo - change this to be based on _MSC_VER intead, or invert it to be CUDA keyed instead

.github/workflows/Draft-Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
# CUDA_ARCH values are reduced compared to wheels due to CI memory issues while compiling the test suite.
188188
cudacxx:
189189
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
190-
- cuda: "12.6.0"
190+
- cuda: "12.9.1"
191191
cuda_arch: "50"
192192
hostcxx: "Visual Studio 17 2022"
193193
os: windows-2025

.github/workflows/Windows-Tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# CUDA_ARCH values are reduced compared to wheels due to CI memory issues while compiling the test suite.
2525
cudacxx:
2626
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
27-
- cuda: "12.6.0"
27+
- cuda: "12.9.1"
2828
cuda_arch: "50"
2929
hostcxx: "Visual Studio 17 2022"
3030
os: windows-2025

.github/workflows/Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
cudacxx:
3232
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
33-
- cuda: "12.6.0"
33+
- cuda: "12.9.1"
3434
cuda_arch: "50"
3535
hostcxx: "Visual Studio 17 2022"
3636
os: windows-2025

0 commit comments

Comments
 (0)