Skip to content

Commit 2453e37

Browse files
authored
Merge branch 'master' into impl_item
2 parents ed76eae + bb89690 commit 2453e37

Some content is hidden

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

65 files changed

+1883
-52
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ repos:
5252
rev: 24.4.2
5353
hooks:
5454
- id: black
55-
args: ["--check", "--diff", "--color"]
5655
- repo: https://github.com/pycqa/isort
5756
rev: 5.13.2
5857
hooks:

dpnp/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ add_subdirectory(backend/extensions/fft)
5858
add_subdirectory(backend/extensions/lapack)
5959
add_subdirectory(backend/extensions/vm)
6060
add_subdirectory(backend/extensions/ufunc)
61+
add_subdirectory(backend/extensions/statistics)
6162

6263
add_subdirectory(dpnp_algo)
6364
add_subdirectory(dpnp_utils)

dpnp/backend/extensions/blas/dot.hpp

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

2626
#pragma once
2727

28+
#include <stdexcept>
29+
2830
#include "dot_common.hpp"
2931

3032
namespace dpnp::extensions::blas

dpnp/backend/extensions/blas/dotc.hpp

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

2626
#pragma once
2727

28+
#include <stdexcept>
29+
2830
#include "dot_common.hpp"
2931

3032
namespace dpnp::extensions::blas

dpnp/backend/extensions/blas/dotu.hpp

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

2626
#pragma once
2727

28+
#include <stdexcept>
29+
2830
#include "dot_common.hpp"
2931

3032
namespace dpnp::extensions::blas

dpnp/backend/extensions/blas/gemm.cpp

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

26+
#include <stdexcept>
27+
2628
#include <pybind11/pybind11.h>
2729

2830
// dpctl tensor headers

dpnp/backend/extensions/blas/gemm_batch.cpp

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

26+
#include <stdexcept>
27+
2628
#include <pybind11/pybind11.h>
2729

2830
// dpctl tensor headers

dpnp/backend/extensions/blas/gemv.cpp

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

26+
#include <stdexcept>
27+
2628
#include <pybind11/pybind11.h>
2729

2830
// dpctl tensor headers

dpnp/backend/extensions/elementwise_functions/elementwise_functions.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525

2626
#pragma once
2727

28+
#include <exception>
29+
#include <stdexcept>
30+
2831
#include <sycl/sycl.hpp>
2932

3033
#include "dpctl4pybind11.hpp"

dpnp/backend/extensions/fft/common.hpp

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

2626
#pragma once
2727

28+
#include <stdexcept>
29+
2830
#include <oneapi/mkl.hpp>
2931
#include <pybind11/pybind11.h>
3032
#include <sycl/sycl.hpp>

0 commit comments

Comments
 (0)