From 0d8b57b4927e6beadd4a0731ce717212ab4b854a Mon Sep 17 00:00:00 2001 From: Jake Hemstad Date: Wed, 25 Oct 2023 16:51:20 -0500 Subject: [PATCH] Update install-cuda.ps1 --- windows/image/installers/install-cuda.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/windows/image/installers/install-cuda.ps1 b/windows/image/installers/install-cuda.ps1 index 8cfb374d..5ec9071a 100644 --- a/windows/image/installers/install-cuda.ps1 +++ b/windows/image/installers/install-cuda.ps1 @@ -17,7 +17,8 @@ $cudaUri = @{ "12.1" = "12.1.1/network_installers/cuda_12.1.1_windows_network.exe" "12.2" = "12.2.0/network_installers/cuda_12.2.0_windows_network.exe" "12.2.0" = "12.2.0/network_installers/cuda_12.2.0_windows_network.exe" - "latest" = "12.2.0/network_installers/cuda_12.2.0_windows_network.exe" + "12.3.0" = "12.3.0/network_installers/cuda_12.2.0_windows_network.exe" + "latest" = "12.3.0/network_installers/cuda_12.2.0_windows_network.exe" }[$cudaVersion] # The component tags don't include patch, so we need to map input to major.minor @@ -33,7 +34,9 @@ $componentTag = @{ "12.1" = "12.1" "12.2" = "12.2" "12.2.0" = "12.2" - "latest" = "12.2" + "12.3" = "12.3" + "12.3.0" = "12.3" + "latest" = "12.3" }[$cudaVersion] $cudaVersionUrl = "https://developer.download.nvidia.com/compute/cuda/$cudaUri"