forked from ScoopInstaller/Versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuda11.3.json
33 lines (33 loc) · 1.17 KB
/
cuda11.3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"version": "11.3.1",
"description": "A parallel computing platform and programming model invented by NVIDIA",
"homepage": "https://developer.nvidia.com/cuda-toolkit",
"license": {
"identifier": "Freeware",
"url": "https://docs.nvidia.com/cuda/eula/index.html"
},
"architecture": {
"64bit": {
"url": "https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.89_win10.exe#/dl.7z",
"hash": "ff5beed6004e968dd413200535168559e90d7d870e8cf7189786cd32cd78cf01"
}
},
"installer": {
"script": [
"$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
"foreach ($name in $names) {",
" Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
" Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
"}",
"Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
]
},
"env_add_path": [
"bin",
"libnvvp"
],
"env_set": {
"CUDA_PATH": "$dir",
"CUDA_PATH_V11_3": "$dir"
}
}