您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 行
330B

  1. $ErrorActionPreference = 'Stop'
  2. Write-Host 'Preparing Windows CUDA DLL for gpudemod (MSVC/nvcc path)...' -ForegroundColor Cyan
  3. powershell -ExecutionPolicy Bypass -File .\build-gpudemod-dll.ps1
  4. if ($LASTEXITCODE -ne 0) { throw 'gpudemod DLL build failed' }
  5. Write-Host 'Done. gpudemod_kernels.dll is ready.' -ForegroundColor Green