Skip to content

Commit 51cead2

Browse files
authored
[SYCL][NATIVECPU] Fix SYCL header inclusion on Native CPU tests (#15551)
Fix `sycl.hpp` inclusion on Native CPU `check_device_code` tests.
1 parent 1ad4294 commit 51cead2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sycl/test/check_device_code/native_cpu/local_module_scope.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// CHECK: alloca %localVarTypes
1212
// CHECK: attributes #[[ATTR]] = {{.*}} "mux-orig-fn"="_ZTS4TestILi1ELi4EiE"
1313

14-
#include "sycl.hpp"
14+
#include <sycl/sycl.hpp>
1515

1616
template <int dims, int size, typename T = int> struct Test;
1717

sycl/test/check_device_code/native_cpu/native_cpu_attrs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RUN: FileCheck %s --input-file %t.ll --check-prefix=CHECK-WG-BARRIER
44
// RUN: FileCheck %s --input-file %t.ll
55

6-
#include "sycl.hpp"
6+
#include <sycl/sycl.hpp>
77
using namespace sycl;
88

99
class Test;

sycl/test/check_device_code/native_cpu/native_cpu_builtins.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// CHECK-NOT: define internal{{.*}}__mux_sub_group_shuffle
1616

17-
#include "sycl.hpp"
17+
#include <sycl/sycl.hpp>
1818
class Test1;
1919
class Test2;
2020
class Test3;

0 commit comments

Comments
 (0)