install-opencl.ps1 1.3 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
if (Test-Path "$installer") {
10
    Write-Output "Successfully downloaded OpenCL platform installer"
11
} else {
12
13
14
15
    Write-Output "Unable to download OpenCL platform installer"
    Write-Output "Setting EXIT"
    $host.SetShouldExit(-1)
    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

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