Skip to content

Commit 95496d2

Browse files
author
Colin Davidson
committed
TBD
1 parent 29b45a2 commit 95496d2

File tree

7 files changed

+226
-191
lines changed

7 files changed

+226
-191
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ jobs:
344344
target_devices: all
345345
binaries_artifact: ${{ inputs.e2e_binaries_artifact }}
346346
sycl_compiler: $GITHUB_WORKSPACE/toolchain/bin/clang++
347-
extra_lit_opts: --param sycl_build_targets="native_cpu;spir;nvidia;amd"
347+
extra_lit_opts: --param sycl_build_targets="spir;nvidia;amd"
348348

349349
- name: Remove E2E tests before spirv-backend run
350350
if: ${{ inputs.e2e_binaries_spirv_backend_artifact && always() && !cancelled() && steps.build.conclusion == 'success' }}

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

Lines changed: 215 additions & 184 deletions
Large diffs are not rendered by default.

sycl/test-e2e/AddressSanitizer/lit.local.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ config.unsupported_features += ['spirv-backend']
2121
# https://github.com/intel/llvm/issues/16920
2222
config.unsupported_features += ['arch-intel_gpu_bmg_g21']
2323

24+
# AddressSanitizer currently not supported for Native CPU
25+
config.unsupported_features += ['target-native_cpu']
2426
unsupported_san_flags = [
2527
# "-fsanitize=address",
2628
"-fsanitize=memory",
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# BFloat16 is not supported on Native CPU
2+
config.unsupported_features += ['target-native_cpu']

sycl/test-e2e/Basic/image/lit.local.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# https://github.com/KhronosGroup/SPIRV-Headers/issues/487
44
# After the issue is resolved we will re-enable Image support.
55
#
6-
# Legacy images aren't supported on AMD and also don't compile, so mark them
6+
# Legacy images aren't supported on AMD and Native CPU and also don't compile, so mark them
77
# unsupported here. Bindless images should be used instead.
8-
config.unsupported_features += ['spirv-backend', 'target-amd']
8+
config.unsupported_features += ['spirv-backend', 'target-amd', 'target-native_cpu']
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# IMF is not supported on Nvidia and AMD
2-
config.unsupported_features += ['target-nvidia', 'target-amd']
1+
# IMF is not supported on Nvidia, AMD and Native CPU
2+
config.unsupported_features += ['target-nvidia', 'target-amd', 'target-native_cpu']

sycl/test-e2e/ESIMD/lit.local.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ for substitution in config.substitutions:
2222
config.substitutions.insert(0,
2323
("%clangxx", original_clangxx+" -Wno-error=deprecated-declarations"))
2424

25-
# At the moment SPIR-V Backend has no plans to support this feature.
26-
config.unsupported_features += ['spirv-backend']
25+
# At the moment SPIR-V Backend and Native CPU has no plans to support this feature.
26+
config.unsupported_features += ['spirv-backend', 'target-native_cpu']

0 commit comments

Comments
 (0)