Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion doc/reference/ndarray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ Array conversion

dpnp.ndarray.item
dpnp.ndarray.tolist
dpnp.ndarray.itemset
dpnp.ndarray.tostring
dpnp.ndarray.tobytes
dpnp.ndarray.tofile
Expand Down
4 changes: 0 additions & 4 deletions dpnp/dpnp_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -1087,8 +1087,6 @@ def item(self, id=None):

return self.flat[id]

# 'itemset',

@property
def itemsize(self):
"""Size of one array element in bytes."""
Expand Down Expand Up @@ -1193,8 +1191,6 @@ def ndim(self):

return self._array_obj.ndim

# 'newbyteorder',

def nonzero(self):
"""
Return the indices of the elements that are non-zero.
Expand Down
Loading