dpnp.ndarray.strides
property
- property ndarray.strides
Returns memory displacement in array elements, upon unit change of respective index.
For example, for strides
(s1, s2, s3)
and multi-index(i1, i2, i3)
position of the respective element relative to zero multi-index element iss1*s1 + s2*i2 + s3*i3
.