mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 21:49:02 +08:00
6 lines
200 B
PowerShell
6 lines
200 B
PowerShell
|
if (Test-Path "$env:ProgramFiles\NVIDIA GPU Computing Toolkit\CUDA\v12.1\include\cudnn.h") {
|
||
|
Write-Host 'cudnn appears correctly installed'
|
||
|
} else {
|
||
|
Write-Error 'cudnn appears broken!'
|
||
|
}
|