We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I think the stride computation in dpnp arrays is not correct.
>>> import numpy as np >>> import dpnp >>> a = np.arange(0, 10, dtype=dpnp.int64) >>> a.strides (8,) >>> b = dpnp.arange(0, 10, dtype=dpnp.int64) >>> b.strides (1,) >>> c = np.arange(0, 10, dtype=dpnp.int32) >>> c.strides (4,) >>> d = dpnp.arange(0, 10, dtype=dpnp.int32) >>> d.strides (1,) >>> p = a[::2] >>> p.strides (16,) >>> q = b[::2] >>> q.strides (2,) >>> r = c[::2] >>> r.strides (8,) >>> s = d[::2] >>> s.strides (2,)
Why is that?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think the stride computation in dpnp arrays is not correct.
Why is that?
The text was updated successfully, but these errors were encountered: