dpnp.ndarray.strides

property ndarray.strides

Get strides of an array.

Returns memory displacement in array elements, upon unit change of respective index.

E.g. for strides (s1, s2, s3) and multi-index (i1, i2, i3)

a[i1, i2, i3] == (&a[0,0,0])[ s1*s1 + s2*i2 + s3*i3]