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
* Fixes#649
```
In [1]: import dpctl.tensor as dpt, itertools
In [2]: a = dpt.usm_ndarray((2,3))
In [3]: for i,j in itertools.product(range(2), range(3)): a[i, j] = i*3 + j
In [4]: dpt.to_numpy(a)[1:].T
Out[4]:
array([[3.],
[4.],
[5.]])
In [5]: dpt.to_numpy(a[1:].T)
Out[5]:
array([[3.],
[4.],
[5.]])
```
* Fixed issues with `.real` and `.imag` of usm_ndarray
These were similar to those reported in #649
* Added tests for T, real, imag methods of the object inspired by #649
0 commit comments