Skip to content

Commit 9aa36b8

Browse files
committed
Add missing includes to common header
1 parent 9f8231d commit 9aa36b8

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

dpnp/backend/extensions/window/common.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828

2929
#pragma once
3030

31+
#include <cstddef>
32+
#include <stdexcept>
33+
#include <tuple>
34+
#include <type_traits>
35+
#include <utility>
36+
#include <vector>
37+
3138
#include <sycl/sycl.hpp>
3239

3340
#include "dpctl4pybind11.hpp"

dpnp/backend/extensions/window/kaiser.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
// THE POSSIBILITY OF SUCH DAMAGE.
2727
//*****************************************************************************
2828

29+
#include <sycl/sycl.hpp>
30+
2931
#include "kaiser.hpp"
3032
#include "common.hpp"
3133

@@ -35,12 +37,9 @@
3537
#include "ext/common.hpp"
3638

3739
// dpctl tensor headers
38-
#include "utils/output_validation.hpp"
3940
#include "utils/type_dispatch.hpp"
4041
#include "utils/type_utils.hpp"
4142

42-
#include <sycl/sycl.hpp>
43-
4443
namespace dpnp::extensions::window
4544
{
4645
namespace py = pybind11;

0 commit comments

Comments
 (0)