Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* FFT module is updated to perform in-place FFT in intermediate steps of ND FFT [#2543](https://github.com/IntelPython/dpnp/pull/2543)
* Reused dpctl tensor include to enable experimental SYCL namespace for complex types [#2546](https://github.com/IntelPython/dpnp/pull/2546)
* Changed Windows-specific logic in dpnp initialization [#2553](https://github.com/IntelPython/dpnp/pull/2553)
* Added missing includes to files in ufunc and VM pybind11 extensions [#2571](https://github.com/IntelPython/dpnp/pull/2571)

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/ufunc/elementwise_functions/fix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/ufunc/elementwise_functions/gcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/ufunc/elementwise_functions/i0.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@
//*****************************************************************************

#include <complex>
#include <optional>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/ufunc/elementwise_functions/lcm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

#include <sycl/sycl.hpp>

#include "dpctl4pybind11.hpp"
Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/abs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/acos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/acosh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/vm/add.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <stdexcept>
#include <type_traits>
#include <vector>

#include <oneapi/mkl.hpp>
#include <sycl/sycl.hpp>
Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/arg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/asin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/asinh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/atan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
2 changes: 2 additions & 0 deletions dpnp/backend/extensions/vm/atan2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
//*****************************************************************************

#include <stdexcept>
#include <type_traits>
#include <vector>

#include <oneapi/mkl.hpp>
#include <sycl/sycl.hpp>
Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/atanh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/vm/cbrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

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

Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/vm/ceil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <type_traits>
#include <vector>

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

Expand Down
2 changes: 2 additions & 0 deletions dpnp/backend/extensions/vm/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

#pragma once

#include <type_traits>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/conj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
2 changes: 2 additions & 0 deletions dpnp/backend/extensions/vm/copysign.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
//*****************************************************************************

#include <stdexcept>
#include <type_traits>
#include <vector>

#include <oneapi/mkl.hpp>
#include <sycl/sycl.hpp>
Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/cos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/cosh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
3 changes: 3 additions & 0 deletions dpnp/backend/extensions/vm/div.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <stdexcept>
#include <type_traits>
#include <vector>

#include <oneapi/mkl.hpp>
#include <sycl/sycl.hpp>
Expand Down
4 changes: 4 additions & 0 deletions dpnp/backend/extensions/vm/exp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************

#include <complex>
#include <type_traits>
#include <vector>

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

Expand Down
Loading
Loading