install-opencl.ps1 1.27 KB
Newer Older
1
2
3
4
Write-Output "Installing OpenCL CPU platform"

$installer = "AMD-APP-SDKInstaller-v3.0.130.135-GA-windows-F-x64.exe"

5
6
7
Write-Output "Downloading OpenCL platform installer"
$ProgressPreference = "SilentlyContinue"  # progress bar bug extremely slows down download speed
Invoke-WebRequest -OutFile "$installer" -Uri "https://github.com/microsoft/LightGBM/releases/download/v2.0.12/$installer"
8

9
10
11
12
13
14
if (Test-Path "$installer") {
  Write-Output "Successfully downloaded OpenCL platform installer"
} else {
  Write-Output "Unable to download OpenCL platform installer"
  Write-Output "Setting EXIT"
  $host.SetShouldExit(-1)
15
  exit 1
16
17
}

18
# Install OpenCL platform from installer executable
19
Write-Output "Running OpenCL installer"
20
Invoke-Command -ScriptBlock { Start-Process "$installer" -ArgumentList '/S /V"/quiet /norestart /passive /log opencl.log"' -Wait }
21
22
23
24
25
26
27
28

$property = Get-ItemProperty -Path Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\OpenCL\Vendors
if ($property -eq $null) {
  Write-Output "Unable to install OpenCL CPU platform"
  Write-Output "OpenCL installation log:"
  Get-Content "opencl.log"
  Write-Output "Setting EXIT"
  $host.SetShouldExit(-1)
29
  exit 1
30
31
32
33
34
} else {
  Write-Output "Successfully installed OpenCL CPU platform"
  Write-Output "Current OpenCL drivers:"
  Write-Output $property
}