Skip to content

Commit

Permalink
[SYCL][NATIVECPU] Fix SYCL header inclusion on Native CPU tests (#15551)
Browse files Browse the repository at this point in the history
Fix `sycl.hpp` inclusion on Native CPU `check_device_code` tests.
  • Loading branch information
PietroGhg authored Oct 2, 2024
1 parent 1ad4294 commit 51cead2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// CHECK: alloca %localVarTypes
// CHECK: attributes #[[ATTR]] = {{.*}} "mux-orig-fn"="_ZTS4TestILi1ELi4EiE"

#include "sycl.hpp"
#include <sycl/sycl.hpp>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// RUN: FileCheck %s --input-file %t.ll --check-prefix=CHECK-WG-BARRIER
// RUN: FileCheck %s --input-file %t.ll

#include "sycl.hpp"
#include <sycl/sycl.hpp>
using namespace sycl;

class Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

#include "sycl.hpp"
#include <sycl/sycl.hpp>
class Test1;
class Test2;
class Test3;
Expand Down

0 comments on commit 51cead2

Please sign in to comment.