Skip to content

Commit 3d4c171

Browse files
author
Vahid Tavanashad
committed
use .T for numpy array tranpose
1 parent 04d72f8 commit 3d4c171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_product.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ def test_not_syrk(self):
12461246
ia = dpnp.array(a)
12471247

12481248
# Result must be square
1249-
b = a.mT[:, ::2]
1249+
b = a.T[:, ::2]
12501250
ib = ia.mT[:, ::2]
12511251
expected = numpy.matmul(a, b)
12521252
result = dpnp.matmul(ia, ib)

0 commit comments

Comments
 (0)