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 5825e05 commit 2db42a2Copy full SHA for 2db42a2
devops/actions/llvm_test_suite/action.yml
@@ -83,7 +83,11 @@ runs:
83
if [ -e /runtimes/oneapi-tbb/env/vars.sh ]; then
84
source /runtimes/oneapi-tbb/env/vars.sh;
85
fi
86
- export OCL_ICD_FILENAMES="/usr/lib/x86_64-linux-gnu/intel-opencl/libigdrcl.so:/runtimes/oclcpu/x64/libintelocl.so"
+ # 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
91
echo "::group::sycl-ls --verbose"
92
sycl-ls --verbose
93
echo "::endgroup::"
0 commit comments