File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -198,6 +198,10 @@ jobs:
198198 - name : check-llvm
199199 if : always() && !cancelled() && contains(inputs.changes, 'llvm')
200200 run : |
201+ if [[ ${{inputs.cc}} == 'icx' ]] || [[ ${inputs.cxx}} == 'icpx' ]]; then
202+
203+ export LIT_FILTER="SYCL"
204+ fi
201205 cmake --build $GITHUB_WORKSPACE/build --target check-llvm
202206 - name : check-clang
203207 if : always() && !cancelled() && contains(inputs.changes, 'clang')
@@ -210,6 +214,9 @@ jobs:
210214 run : |
211215 # TODO consider moving this to Dockerfile.
212216 export LD_LIBRARY_PATH=/usr/local/cuda/compat/:/usr/local/cuda/lib64:$LD_LIBRARY_PATH
217+ if [[ ${{inputs.cc}} == 'icx' ]] || [[ ${inputs.cxx}} == 'icpx' ]]; then
218+ export LIT_FILTER_OUT="host_tanpi_double_accuracy"
219+ fi
213220 cmake --build $GITHUB_WORKSPACE/build --target check-sycl
214221 - name : check-sycl-unittests
215222 if : always() && !cancelled() && contains(inputs.changes, 'sycl')
Original file line number Diff line number Diff line change 3636 build_cache_root : " /__w/llvm"
3737 build_cache_suffix : icx
3838 build_artifact_suffix : default
39- build_configure_extra_args : --no-assertions --hip --cuda --native_cpu --cmake-opt="-DSYCL_ENABLE_STACK_PRINTING=ON" --cmake-opt="-DSYCL_LIB_WITH_DEBUG_SYMBOL=ON"
39+ build_configure_extra_args : --no-assertions --hip --cuda --native_cpu --cmake-opt="-DSYCL_ENABLE_STACK_PRINTING=ON" --cmake-opt="-DSYCL_LIB_WITH_DEBUG_SYMBOL=ON" --cmake-opt="-DCOMPILER_RT_BUILD_SANITIZERS=Off" --cmake-opt="-DCOMPILER_RT_BUILD_MEMPROF=Off"
4040 merge_ref : ' '
4141 cc : icx
4242 cxx : icpx
You can’t perform that action at this time.
0 commit comments