Skip to content

Commit 961a6d8

Browse files
committed
fix e2e test header file issue
Signed-off-by: jinge90 <[email protected]>
1 parent 5436084 commit 961a6d8

14 files changed

+14
-14
lines changed

sycl/test-e2e/DeviceLib/group_sort/group_joint_sort_p1p1.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include <sycl.hpp>
2+
#include <sycl/sycl.hpp>
33

44
#ifdef __SYCL_DEVICE_ONLY__
55
SYCL_EXTERNAL extern "C" void

sycl/test-e2e/DeviceLib/group_sort/group_joint_sort_p1p3.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include <sycl.hpp>
2+
#include <sycl/sycl.hpp>
33

44
#ifdef __SYCL_DEVICE_ONLY__
55
SYCL_EXTERNAL extern "C" void

sycl/test-e2e/DeviceLib/group_sort/group_joint_sort_p3p1.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include <sycl.hpp>
2+
#include <sycl/sycl.hpp>
33

44
#ifdef __SYCL_DEVICE_ONLY__
55
SYCL_EXTERNAL extern "C" void

sycl/test-e2e/DeviceLib/group_sort/group_joint_sort_p3p3.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include <sycl.hpp>
2+
#include <sycl/sycl.hpp>
33

44
#ifdef __SYCL_DEVICE_ONLY__
55
SYCL_EXTERNAL extern "C" void

sycl/test-e2e/DeviceLib/group_sort/group_private_KV_sort_p1p1_p1.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <cmath>
55
#include <cstddef>
66
#include <iostream>
7-
#include <sycl.hpp>
7+
#include <sycl/sycl.hpp>
88
#include <tuple>
99
#include <vector>
1010
__DPCPP_SYCL_EXTERNAL extern "C" void

sycl/test-e2e/DeviceLib/group_sort/group_private_KV_sort_p1p1_p3.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <cmath>
55
#include <cstddef>
66
#include <iostream>
7-
#include <sycl.hpp>
7+
#include <sycl/sycl.hpp>
88
#include <tuple>
99
#include <vector>
1010
__DPCPP_SYCL_EXTERNAL extern "C" void

sycl/test-e2e/DeviceLib/group_sort/group_private_sort_p1p1.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include <sycl.hpp>
2+
#include <sycl/sycl.hpp>
33
#ifdef __SYCL_DEVICE_ONLY__
44
SYCL_EXTERNAL extern "C" void
55
__devicelib_default_work_group_private_sort_close_ascending_p1i8_u32_p1i8(

sycl/test-e2e/DeviceLib/group_sort/group_sort.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include <sycl.hpp>
2+
#include <sycl/sycl.hpp>
33

44
#if defined(__SYCL_DEVICE_ONLY__) && (defined(__SPIR__) || defined(__SPIRV__))
55
#define __DEVICE_CODE 1

sycl/test-e2e/DeviceLib/group_sort/workgroup_joint_KV_sort_p1p1_p1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include <cmath>
1313
#include <cstddef>
1414
#include <iostream>
15-
#include <sycl.hpp>
15+
#include <sycl/sycl.hpp>
1616
#include <tuple>
1717
#include <vector>
1818

sycl/test-e2e/DeviceLib/group_sort/workgroup_joint_sort_p1p1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <cmath>
1818
#include <cstddef>
1919
#include <iostream>
20-
#include <sycl.hpp>
20+
#include <sycl/sycl.hpp>
2121
using namespace sycl;
2222

2323
template <typename Ty, size_t WG_SZ, size_t NUM, typename SortHelper>

0 commit comments

Comments
 (0)