File tree Expand file tree Collapse file tree
.github/actions/do_build_run_remote_hal
examples/hal_cpu_remote_server Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 # Run client
3939 cd $GITHUB_WORKSPACE/build_client
4040 exitcode=0
41- OCL_ICD_FILENAMES=$PWD/lib/libCL.so.4.0 ./bin/UnitCL || exitcode=$?
41+ OCL_ICD_FILENAMES=$PWD/lib/libCL.so ./bin/UnitCL || exitcode=$?
4242 kill %1
4343 exit $exitcode
4444 else
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ As a simple test try running a simple UnitCL test (using the in-tree version):
139139
140140```
141141 cd build_client
142- HAL_REMOTE_PORT=<port_num> OCL_ICD_FILENAMES=$PWDlib/libCL.so.4.0 \
142+ HAL_REMOTE_PORT=<port_num> OCL_ICD_FILENAMES=$PWDlib/libCL.so \
143143 ./bin/UnitCL --gtest_filter=Execution/Execution.Task_01_02_Add/OpenCLC
144144```
145145This should show as ` PASSED ` .
@@ -160,7 +160,7 @@ export LD_LIBRARY_PATH=<path_to_dpcpp_compiler_base>/lib:$PWD/lib:$LD_LIBRARY_PA
160160export OCL_ICD_FILENAMES=$PWD/lib/libCL.so
161161export ONEAPI_DEVICE_SELECTOR=*:fpga
162162<path_to_dpcpp_compiler_base>/bin/clang++ -fsycl <path_to_ock>/examples/applications/simple-vector-add.cpp -o simple-vector-add
163- HAL_REMOTE_PORT=<port_num> OCL_ICD_FILENAMES=$PWD/lib/libCL.so.4.0 ./simple-vector-add
163+ HAL_REMOTE_PORT=<port_num> OCL_ICD_FILENAMES=$PWD/lib/libCL.so ./simple-vector-add
164164```
165165
166166This should show "The results are correct!".
You can’t perform that action at this time.
0 commit comments