From f32cbba345516a16751d1c24f3a9a5a9afc30330 Mon Sep 17 00:00:00 2001 From: "Sarnie, Nick" Date: Mon, 7 Oct 2024 07:44:45 -0700 Subject: [PATCH] [SYCL][E2E][AddressSanitizer] Don't test on opencl gpu Signed-off-by: Sarnie, Nick --- sycl/test-e2e/AddressSanitizer/lit.local.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sycl/test-e2e/AddressSanitizer/lit.local.cfg b/sycl/test-e2e/AddressSanitizer/lit.local.cfg index 0f6650c8cf3fa..8c0087f665dc6 100644 --- a/sycl/test-e2e/AddressSanitizer/lit.local.cfg +++ b/sycl/test-e2e/AddressSanitizer/lit.local.cfg @@ -12,3 +12,7 @@ config.unsupported_features += ['cuda', 'hip'] # FIXME: Skip some of gpu devices, waiting for gfx driver uplifting config.unsupported_features += ['gpu-intel-gen9', 'gpu-intel-gen11', 'gpu-intel-gen12', 'gpu-intel-pvc'] + +# GPU testing requires level_zero +if 'opencl:gpu' in config.sycl_devices: + config.required_features += ['level_zero']