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
Offset should not be incremented if the array is found empty.
```
import dpctl.tensor as dpt
X = dpt.empty((0,4), dtype='u1')
X[:, 1] # no longer raises ValueError
X[:, 1:3] # no longer raises ValueError
```
0 commit comments