Skip to content

Commit 26d213a

Browse files
Fix typos
1 parent f8729c4 commit 26d213a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpnp/tests/test_linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3188,12 +3188,12 @@ def check_qr(self, a_np, a_dp, mode):
31883188
)
31893189

31903190
assert tau_dp.shape == tau_np.shape
3191-
if has_support_aspect64(tau_dp.sycl_device):
3191+
if not has_support_aspect64(tau_dp.sycl_device):
31923192
if tau_np.dtype == numpy.float64:
31933193
tau_np = tau_np.astype("float32")
31943194
elif tau_np.dtype == numpy.complex128:
31953195
tau_np = tau_np.astype("complex64")
3196-
assert tau_dp.dtype == tau_np.dtypes
3196+
assert tau_dp.dtype == tau_np.dtype
31973197

31983198
else: # mode == "r"
31993199
R_np = numpy.linalg.qr(a_np, mode="r")

0 commit comments

Comments
 (0)