We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ada1dd + cd7971c commit e8975b8Copy full SHA for e8975b8
windows/image/installers/install-cuda.ps1
@@ -35,6 +35,12 @@ $cudaComponents =
35
"nvtx_$mmVersionTag",
36
"cuxxfilt_$mmVersionTag"
37
38
+if ("${major}" -ge "13") {
39
+ $cudaComponents += "crt_$mmVersionTag"
40
+}
41
+
42
+Write-Output "Installing CUDA Components: ${cudaComponents}"
43
44
Invoke-WebRequest -Uri "$cudaVersionUrl" -OutFile "./cuda_network.exe" -UseBasicParsing
45
Start-Process -Wait -PassThru -FilePath .\cuda_network.exe -ArgumentList "-s $cudaComponents"
46
0 commit comments