Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/links/linux-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 4 additions & 0 deletions src/links/windows-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ export class WindowsLinks extends AbstractLinks {
private static _instance: WindowsLinks

private cudaVersionToNetworkUrl: Map<string, string> = 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'
Expand Down