Skip to content

Commit 8a33df3

Browse files
[SYCL][E2E] Fix include of sycl/sycl.hpp in profiling tag tests (#13970)
An include of sycl/sycl.hpp snuck in with #12838. This commit fixes this. Signed-off-by: Larsen, Steffen <[email protected]>
1 parent e876532 commit 8a33df3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sycl/test-e2e/ProfilingTag/common.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#pragma once
22

3-
#include <sycl/sycl.hpp>
3+
#include <sycl/builtins.hpp>
4+
#include <sycl/detail/core.hpp>
5+
#include <sycl/ext/oneapi/experimental/profiling_tag.hpp>
46

57
#define CHECK(Counter, Check) \
68
if (!(Check)) { \

0 commit comments

Comments
 (0)