You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reproducer provided by @ndgrigorian:
```
import dpctl.tensor as dpt
x = dpt.ones((0, 10))
y = dpt.moveaxis(x, 1, 0)
y[1] # raises ValueError
```
Now this returns empty 1d array like `y[0]` does.
A test is added for both integral basic indexing,
and for simple slice.
0 commit comments