From f0e0643e3e97ca8a0b97b848ac1a1206de88e6c0 Mon Sep 17 00:00:00 2001 From: Peter Heywood Date: Wed, 1 Mar 2023 10:49:54 +0000 Subject: [PATCH] CI: Use CUDA 12.1.0 for the latest CI testing --- .github/scripts/install_cuda_windows.ps1 | 4 +++- .github/workflows/Ubuntu.yml | 2 +- .github/workflows/Windows.yml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/scripts/install_cuda_windows.ps1 b/.github/scripts/install_cuda_windows.ps1 index a741ce7c5..22a9b7078 100755 --- a/.github/scripts/install_cuda_windows.ps1 +++ b/.github/scripts/install_cuda_windows.ps1 @@ -40,7 +40,9 @@ $CUDA_KNOWN_URLS = @{ "11.7.0" = "https://developer.download.nvidia.com/compute/cuda/11.7.0/network_installers/cuda_11.7.0_windows_network.exe"; "11.7.1" = "https://developer.download.nvidia.com/compute/cuda/11.7.1/network_installers/cuda_11.7.1_windows_network.exe"; "11.8.0" = "https://developer.download.nvidia.com/compute/cuda/11.8.0/network_installers/cuda_11.8.0_windows_network.exe"; - "12.0.0" = "https://developer.download.nvidia.com/compute/cuda/12.0.0/network_installers/cuda_12.0.0_windows_network.exe" + "12.0.0" = "https://developer.download.nvidia.com/compute/cuda/12.0.0/network_installers/cuda_12.0.0_windows_network.exe"; + "12.0.1" = "https://developer.download.nvidia.com/compute/cuda/12.0.1/network_installers/cuda_12.0.1_windows_network.exe"; + "12.1.0" = "https://developer.download.nvidia.com/compute/cuda/12.1.0/network_installers/cuda_12.1.0_windows_network.exe"; } # @todo - change this to be based on _MSC_VER intead, or invert it to be CUDA keyed instead diff --git a/.github/workflows/Ubuntu.yml b/.github/workflows/Ubuntu.yml index 7b862500a..0ed8af9a7 100644 --- a/.github/workflows/Ubuntu.yml +++ b/.github/workflows/Ubuntu.yml @@ -29,7 +29,7 @@ jobs: # optional exclude: can be partial, include: must be specific matrix: cudacxx: - - cuda: "12.0" + - cuda: "12.1" cuda_arch: "50" hostcxx: gcc-12 os: ubuntu-22.04 diff --git a/.github/workflows/Windows.yml b/.github/workflows/Windows.yml index 4cded8f05..c2829cfbc 100644 --- a/.github/workflows/Windows.yml +++ b/.github/workflows/Windows.yml @@ -29,7 +29,7 @@ jobs: # optional exclude: can be partial, include: must be specific matrix: cudacxx: - - cuda: "12.0.0" + - cuda: "12.1.0" cuda_arch: "50" hostcxx: "Visual Studio 17 2022" os: windows-2022