Skip to content

Commit ad6ffcd

Browse files
authored
[SYCL][Graph] Fix missing includes for e2e tests using reduction (#15115)
Issue resulting of incomplete finer grained includes #13846
1 parent 0a9db37 commit ad6ffcd

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

sycl/test-e2e/Graph/Inputs/dotp_buffer_reduction.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Tests creating a dotp operation which uses a sycl reduction with buffers.
22

33
#include "../graph_common.hpp"
4+
#include <sycl/reduction.hpp>
45

56
int main() {
67
queue Queue{};

sycl/test-e2e/Graph/Inputs/dotp_usm_reduction.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// operation which uses a sycl reduction with USM memory.
33

44
#include "../graph_common.hpp"
5+
#include <sycl/reduction.hpp>
56

67
int main() {
78
queue Queue{};

sycl/test-e2e/Graph/Inputs/sub_graph_reduction.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// reduction as well as a sub-graph.
33

44
#include "../graph_common.hpp"
5+
#include <sycl/reduction.hpp>
56

67
int main() {
78
queue Queue{};

0 commit comments

Comments
 (0)