Skip to content

Commit 2db42a2

Browse files
author
Alexander Batashev
committed
fix
1 parent 5825e05 commit 2db42a2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

devops/actions/llvm_test_suite/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,11 @@ runs:
8383
if [ -e /runtimes/oneapi-tbb/env/vars.sh ]; then
8484
source /runtimes/oneapi-tbb/env/vars.sh;
8585
fi
86-
export OCL_ICD_FILENAMES="/usr/lib/x86_64-linux-gnu/intel-opencl/libigdrcl.so:/runtimes/oclcpu/x64/libintelocl.so"
86+
# TODO remove workaround of FPGA emu bug
87+
mkdir icd
88+
echo /usr/lib/x86_64-linux-gnu/intel-opencl/libigdrcl.so > icd/gpu.icd
89+
echo /runtimes/oclcpu/x64/libintelocl.so > icd/cpu.icd
90+
export OCL_ICD_VENDORS=$PWD/icd
8791
echo "::group::sycl-ls --verbose"
8892
sycl-ls --verbose
8993
echo "::endgroup::"

0 commit comments

Comments
 (0)