Skip to content

Commit 4a17d26

Browse files
committed
Update reference pages with documentations
1 parent 8dca63f commit 4a17d26

File tree

7 files changed

+37
-7
lines changed

7 files changed

+37
-7
lines changed

doc/reference/creation.rst renamed to doc/reference/array-creation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _routines.creation:
1+
.. _routines.array-creation:
22

33
Array creation routines
44
=======================

doc/reference/manipulation.rst renamed to doc/reference/array-manipulation.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ Adding and removing elements
135135
dpnp.append
136136
dpnp.resize
137137
dpnp.trim_zeros
138-
dpnp.unique
139138
dpnp.pad
140139

141140

File renamed without changes.

doc/reference/misc.rst renamed to doc/reference/other.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Utility
1010
:toctree: generated/
1111
:nosignatures:
1212

13-
dpnp.broadcast_shapes
1413
dpnp.byte_bounds
1514
dpnp.get_include
1615
dpnp.show_config
1716
dpnp.show_runtime
17+
dpnp.broadcast_shapes

doc/reference/routines.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,19 @@ These functions cover a subset of
1111
.. toctree::
1212
:maxdepth: 2
1313

14-
creation
15-
manipulation
16-
binary
14+
array-creation
15+
array-manipulation
16+
bitwise
1717
dtype
1818
fft
1919
functional
2020
indexing
2121
linalg
2222
logic
2323
math
24+
other
2425
.. polynomials
2526
random
26-
sorting
27+
set
28+
sort
2729
statistics

doc/reference/set.rst

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Set routines
2+
============
3+
4+
.. https://numpy.org/doc/stable/reference/routines.set.html
5+
6+
Making proper sets
7+
------------------
8+
.. autosummary::
9+
:toctree: generated/
10+
:nosignatures:
11+
12+
dpnp.unique
13+
dpnp.unique_all
14+
dpnp.unique_counts
15+
dpnp.unique_inverse
16+
dpnp.unique_values
17+
18+
Boolean operations
19+
------------------
20+
.. autosummary::
21+
:toctree: generated/
22+
:nosignatures:
23+
24+
dpnp.in1d
25+
dpnp.intersect1d
26+
dpnp.isin
27+
dpnp.setdiff1d
28+
dpnp.setxor1d
29+
dpnp.union1d
File renamed without changes.

0 commit comments

Comments
 (0)