diff --git a/src/links/linux-links.ts b/src/links/linux-links.ts index e7438611..4837bb35 100644 --- a/src/links/linux-links.ts +++ b/src/links/linux-links.ts @@ -14,6 +14,10 @@ export class LinuxLinks extends AbstractLinks { super() // Map of cuda SemVer version to download URL this.cudaVersionToURL = new Map([ + [ + '13.3.0', + 'https://developer.download.nvidia.com/compute/cuda/13.3.0/local_installers/cuda_13.3.0_610.43.02_linux.run' + ], [ '13.2.0', 'https://developer.download.nvidia.com/compute/cuda/13.2.0/local_installers/cuda_13.2.0_595.45.04_linux.run' diff --git a/src/links/windows-links.ts b/src/links/windows-links.ts index 97830dc2..5945fcb9 100644 --- a/src/links/windows-links.ts +++ b/src/links/windows-links.ts @@ -24,6 +24,10 @@ export class WindowsLinks extends AbstractLinks { private static _instance: WindowsLinks private cudaVersionToNetworkUrl: Map = new Map([ + [ + '13.3.0', + 'https://developer.download.nvidia.com/compute/cuda/13.3.0/network_installers/cuda_13.3.0_windows_network.exe' + ], [ '13.2.0', 'https://developer.download.nvidia.com/compute/cuda/13.2.0/network_installers/cuda_13.2.0_windows_network.exe'