File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed
Expand file tree Collapse file tree 4 files changed +14
-2
lines changed 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: ` '13.0.1 ' ` .
18+ Default: ` '13.0.2 ' ` .
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 : ' 13.0.1 '
8+ default : ' 13.0.2 '
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+ '13.0.2' ,
19+ 'https://developer.download.nvidia.com/compute/cuda/13.0.2/local_installers/cuda_13.0.2_580.95.05_linux.run'
20+ ] ,
1721 [
1822 '13.0.1' ,
1923 'https://developer.download.nvidia.com/compute/cuda/13.0.1/local_installers/cuda_13.0.1_580.82.07_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+ '13.0.2' ,
29+ 'https://developer.download.nvidia.com/compute/cuda/13.0.2/network_installers/cuda_13.0.2_windows_network.exe'
30+ ] ,
2731 [
2832 '13.0.1' ,
2933 'https://developer.download.nvidia.com/compute/cuda/13.0.1/network_installers/cuda_13.0.1_windows_network.exe'
@@ -239,6 +243,10 @@ export class WindowsLinks extends AbstractLinks {
239243 super ( )
240244 // Map of cuda SemVer version to download URL
241245 this . cudaVersionToURL = new Map ( [
246+ [
247+ '13.0.2' ,
248+ 'https://developer.download.nvidia.com/compute/cuda/13.0.2/local_installers/cuda_13.0.2_windows.exe'
249+ ] ,
242250 [
243251 '13.0.1' ,
244252 'https://developer.download.nvidia.com/compute/cuda/13.0.1/local_installers/cuda_13.0.1_windows.exe'
You can’t perform that action at this time.
0 commit comments