File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ been tested to work successfully.
1515** Optional** The CUDA version to install. View ` src/link/windows-links.ts ` and
1616` src/link/linux-links.ts ` for available versions.
1717
18- Default: ` '12.9.0 ' ` .
18+ Default: ` '12.9.1 ' ` .
1919
2020### ` sub-packages `
2121
Original file line number Diff line number Diff line change 55 cuda :
66 description : ' Cuda version'
77 required : false
8- default : ' 12.9.0 '
8+ default : ' 12.9.1 '
99 sub-packages :
1010 description :
1111 ' Only installs specified subpackages, must be in the form of a JSON array.
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ export class LinuxLinks extends AbstractLinks {
1414 super ( )
1515 // Map of cuda SemVer version to download URL
1616 this . cudaVersionToURL = new Map ( [
17+ [
18+ '12.9.1' ,
19+ 'https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_575.57.08_linux.run'
20+ ] ,
1721 [
1822 '12.9.0' ,
1923 'https://developer.download.nvidia.com/compute/cuda/12.9.0/local_installers/cuda_12.9.0_575.51.03_linux.run'
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ export class WindowsLinks extends AbstractLinks {
2424 private static _instance : WindowsLinks
2525
2626 private cudaVersionToNetworkUrl : Map < string , string > = new Map ( [
27+ [
28+ '12.9.1' ,
29+ 'https://developer.download.nvidia.com/compute/cuda/12.9.1/network_installers/cuda_12.9.1_windows_network.exe'
30+ ] ,
2731 [
2832 '12.9.0' ,
2933 'https://developer.download.nvidia.com/compute/cuda/12.9.0/network_installers/cuda_12.9.0_windows_network.exe'
@@ -227,6 +231,10 @@ export class WindowsLinks extends AbstractLinks {
227231 super ( )
228232 // Map of cuda SemVer version to download URL
229233 this . cudaVersionToURL = new Map ( [
234+ [
235+ '12.9.1' ,
236+ 'https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_576.57_windows.exe'
237+ ] ,
230238 [
231239 '12.9.0' ,
232240 'https://developer.download.nvidia.com/compute/cuda/12.9.0/local_installers/cuda_12.9.0_576.02_windows.exe'
You can’t perform that action at this time.
0 commit comments