Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit bcc90f2

Browse files
[SYCL] Remove use of SYCL_DEVICE_FILTER from set-arg-local-accessor (#1375)
The set-arg-local-accessor test uses SYCL_DEVICE_FILTER explicitly which causes failures with recent change to use ONEAPI_DEVICE_SELECTOR because they are mutually exclusive. Since ONEAPI_DEVICE_SELECTOR is added through the *_RUN_PLACEHOLDER macros the SYCL_DEVICE_FILTER is not needed. The filtering for the OpenCL backend is ensured by the `opencl` feature requirement at the top of the test. Signed-off-by: Larsen, Steffen <[email protected]>
1 parent 642a3f1 commit bcc90f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SYCL/Regression/set-arg-local-accessor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// REQUIRES: opencl, opencl_icd
22
//
33
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s %opencl_lib -o %t.out
4-
// RUN: env SYCL_DEVICE_FILTER=opencl %CPU_RUN_PLACEHOLDER %t.out
5-
// RUN: env SYCL_DEVICE_FILTER=opencl %GPU_RUN_PLACEHOLDER %t.out
6-
// RUN: env SYCL_DEVICE_FILTER=opencl %ACC_RUN_PLACEHOLDER %t.out
4+
// RUN: %CPU_RUN_PLACEHOLDER %t.out
5+
// RUN: %GPU_RUN_PLACEHOLDER %t.out
6+
// RUN: %ACC_RUN_PLACEHOLDER %t.out
77

88
#include <sycl/sycl.hpp>
99

0 commit comments

Comments
 (0)