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.
1 parent 999783e commit fd990adCopy full SHA for fd990ad
.github/workflows/test.yml
@@ -42,6 +42,17 @@ jobs:
42
sudo apt update -qq
43
sudo apt install -qq ocl-icd-opencl-dev pocl-opencl-icd
44
45
+ - name: Install OpenCL - Windows
46
+ if: matrix.os == 'windows-2022'
47
+ run: |
48
+ wget -O opencl_installer.exe 'https://registrationcenter-download.intel.com/akdlm/IRC_NAS/b6dccdb7-b503-41ea-bd4b-a78e9c2d8dd6/w_opencl_runtime_p_2025.1.0.972.exe'
49
+ ./opencl_installer.exe --s --x --f ocl
50
+ cp "./ocl/w_opencl_runtime_p_2025.1.0.972.msi" "./opencl_rt.msi"
51
+ echo "Start Msiexec"
52
+ msiexec /i "opencl_rt.msi" /qn /passive /quiet
53
+ echo "End Msiexec"
54
+
55
56
- name: Install OpenCL - Ubuntu
57
if: matrix.os == 'ubuntu-22.04'
58
run: |
0 commit comments