We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9c0a1 commit 06cef7cCopy full SHA for 06cef7c
dpnp/dpnp_array.py
@@ -150,7 +150,7 @@ def mT(self):
150
if self.ndim < 2:
151
raise ValueError("matrix transpose with ndim < 2 is undefined")
152
153
- return self._array_obj.mT
+ return dpnp_array._create_from_usm_ndarray(self._array_obj.mT)
154
155
def to_device(self, target_device):
156
"""Transfer array to target device."""
0 commit comments