Skip to content

Commit 66b15e1

Browse files
authored
Merge branch 'master' into dpctl-put_along_axis
2 parents dec7299 + d1ff2e7 commit 66b15e1

File tree

89 files changed

+5168
-595
lines changed

Some content is hidden

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

89 files changed

+5168
-595
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

.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:

doc/reference/binary.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Bit-wise operations
2-
=================
2+
===================
33

44
.. https://numpy.org/doc/stable/reference/routines.bitwise.html
55
@@ -22,7 +22,6 @@ Element-wise bit operations
2222
dpnp.bitwise_right_shift
2323
dpnp.bitwise_count
2424

25-
2625
Bit packing
2726
-----------
2827

@@ -33,7 +32,6 @@ Bit packing
3332
dpnp.packbits
3433
dpnp.unpackbits
3534

36-
3735
Output formatting
3836
-----------------
3937

doc/reference/linalg.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ Other matrix operations
8787
-----------------------
8888
.. autosummary::
8989
:toctree: generated/
90+
:nosignatures:
9091

9192
dpnp.diagonal
9293
dpnp.linalg.diagonal (Array API compatible)
@@ -96,5 +97,6 @@ Exceptions
9697
----------
9798
.. autosummary::
9899
:toctree: generated/
100+
:nosignatures:
99101

100102
dpnp.linalg.linAlgError

doc/reference/ndarray.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ Array conversion
134134

135135
dpnp.ndarray.item
136136
dpnp.ndarray.tolist
137-
dpnp.ndarray.itemset
138137
dpnp.ndarray.tostring
139138
dpnp.ndarray.tobytes
140139
dpnp.ndarray.tofile

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

0 commit comments

Comments
 (0)