Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cuda toolkit 12.2.0 #251

Merged
merged 2 commits into from
Jul 6, 2023
Merged
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
12 changes: 12 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions src/links/linux-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ export class LinuxLinks extends AbstractLinks {
super()
// Map of cuda SemVer version to download URL
this.cudaVersionToURL = new Map([
[
'12.2.0',
'https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda_12.2.0_535.54.03_linux.run'
],
[
'12.1.0',
'https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run'
Expand Down
8 changes: 8 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([
[
'12.2.0',
'https://developer.download.nvidia.com/compute/cuda/12.2.0/network_installers/cuda_12.2.0_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'
Expand Down Expand Up @@ -155,6 +159,10 @@ export class WindowsLinks extends AbstractLinks {
super()
// Map of cuda SemVer version to download URL
this.cudaVersionToURL = new Map([
[
'12.2.0',
'https://developer.download.nvidia.com/compute/cuda/12.2.0/local_installers/cuda_12.2.0_536.25_windows.exe'
],
[
'12.1.0',
'https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_531.14_windows.exe'
Expand Down
Loading