Skip to content

Commit 2b4b7a6

Browse files
committed
Add missing includes to VM functions
1 parent a872def commit 2b4b7a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+143
-0
lines changed

dpnp/backend/extensions/vm/abs.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/acos.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/acosh.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/add.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
2627
#include <stdexcept>
28+
#include <type_traits>
29+
#include <vector>
2730

2831
#include <oneapi/mkl.hpp>
2932
#include <sycl/sycl.hpp>

dpnp/backend/extensions/vm/arg.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/asin.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/asinh.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/atan.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

dpnp/backend/extensions/vm/atan2.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
//*****************************************************************************
2525

2626
#include <stdexcept>
27+
#include <type_traits>
28+
#include <vector>
2729

2830
#include <oneapi/mkl.hpp>
2931
#include <sycl/sycl.hpp>

dpnp/backend/extensions/vm/atanh.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
// THE POSSIBILITY OF SUCH DAMAGE.
2424
//*****************************************************************************
2525

26+
#include <complex>
27+
#include <type_traits>
28+
#include <vector>
29+
2630
#include <oneapi/mkl.hpp>
2731
#include <sycl/sycl.hpp>
2832

0 commit comments

Comments
 (0)