Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation page with Manipulation routine #2033

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Changes from all 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
13 changes: 7 additions & 6 deletions doc/reference/manipulation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ Transpose-like operations
:nosignatures:

dpnp.moveaxis
dpnp.roll
dpnp.rollaxis
dpnp.swapaxes
dpnp.ndarray.T
dpnp.transpose
dpnp.permute_dims
dpnp.matrix_transpose (Array API compatible)


Changing number of dimensions
Expand Down Expand Up @@ -69,9 +70,8 @@ Changing kind of array
:nosignatures:

dpnp.asarray
dpnp.asnumpy
dpnp.asanyarray
dpnp.asmatrix
dpnp.asnumpy
dpnp.asfarray
dpnp.asfortranarray
dpnp.ascontiguousarray
Expand All @@ -87,13 +87,14 @@ Joining arrays
:nosignatures:

dpnp.concatenate
dpnp.concat
dpnp.stack
dpnp.block
dpnp.vstack
dpnp.hstack
dpnp.dstack
dpnp.column_stack
dpnp.row_stack
dpnp.dstack


Splitting arrays
Expand All @@ -108,6 +109,7 @@ Splitting arrays
dpnp.dsplit
dpnp.hsplit
dpnp.vsplit
dpnp.unstack


Tiling arrays
Expand All @@ -132,8 +134,8 @@ Adding and removing elements
dpnp.insert
dpnp.append
dpnp.resize
dpnp.unique
dpnp.trim_zeros
dpnp.unique
dpnp.pad


Expand All @@ -147,6 +149,5 @@ Rearranging elements
dpnp.flip
dpnp.fliplr
dpnp.flipud
dpnp.reshape
dpnp.roll
dpnp.rot90
Loading