Skip to content

Commit 91b1924

Browse files
committed
attempt fix
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent d04e73d commit 91b1924

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/sycl-linux-build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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')

.github/workflows/sycl-post-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
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

0 commit comments

Comments
 (0)