Skip to content

Commit 1602e01

Browse files
committed
Install windows icd 2
1 parent fd990ad commit 1602e01

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
- name: Install OpenCL - Windows
4646
if: matrix.os == 'windows-2022'
4747
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"
48+
curl -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"
5151
echo "Start Msiexec"
52-
msiexec /i "opencl_rt.msi" /qn /passive /quiet
52+
msiexec /i "opencl-rt.msi" /qn /passive /quiet
5353
echo "End Msiexec"
5454
5555

test/utils/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const assert = require('node:assert').strict;
44

55
const cl = require('../../');
6-
require('./device_selection');
6+
require('./device-selection');
77

88

99
const Utils = {

0 commit comments

Comments
 (0)