Skip to content

Commit eb34ac1

Browse files
authored
Merge branch 'master' into histogram
2 parents e2b6217 + 4816161 commit eb34ac1

Some content is hidden

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

71 files changed

+3318
-517
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ env:
2525
test_arithmetic.py
2626
test_arraycreation.py
2727
test_arraymanipulation.py
28+
test_arraypad.py
2829
test_bitwise.py
2930
test_copy.py
3031
test_counting.py
@@ -60,6 +61,7 @@ env:
6061
third_party/cupy/logic_tests
6162
third_party/cupy/manipulation_tests
6263
third_party/cupy/math_tests
64+
third_party/cupy/padding_tests
6365
third_party/cupy/sorting_tests
6466
third_party/cupy/statistics_tests/test_histogram.py
6567
third_party/cupy/statistics_tests/test_meanvar.py

doc/reference/binary.rst

Lines changed: 1 addition & 3 deletions

doc/reference/linalg.rst

Lines changed: 2 additions & 0 deletions

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"

0 commit comments

Comments
 (0)