We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb89690 commit b9dfc72Copy full SHA for b9dfc72
doc/reference/ndarray.rst
@@ -134,7 +134,6 @@ Array conversion
134
135
dpnp.ndarray.item
136
dpnp.ndarray.tolist
137
- dpnp.ndarray.itemset
138
dpnp.ndarray.tostring
139
dpnp.ndarray.tobytes
140
dpnp.ndarray.tofile
dpnp/dpnp_array.py
@@ -1087,8 +1087,6 @@ def item(self, id=None):
1087
1088
return self.flat[id]
1089
1090
- # 'itemset',
1091
-
1092
@property
1093
def itemsize(self):
1094
"""Size of one array element in bytes."""
@@ -1193,8 +1191,6 @@ def ndim(self):
1193
1191
1194
1192
return self._array_obj.ndim
1195
1196
- # 'newbyteorder',
1197
1198
def nonzero(self):
1199
"""
1200
Return the indices of the elements that are non-zero.
0 commit comments