Skip to content

Commit 9654380

Browse files
Update dpnp/tests/test_linalg.py
Co-authored-by: Anton <100830759+antonwolfy@users.noreply.github.com>
1 parent aa00062 commit 9654380

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

dpnp/tests/test_linalg.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2964,14 +2964,6 @@ def test_overwrite_a(self, dtype, order):
29642964
def test_modes_consistency_batched(self, dtype):
29652965
a_np = self._make_nonsingular_nd_np((3, 4, 4), dtype, "F")
29662966
a_dp = dpnp.array(a_np, order="F")
2967-
A_cast = a_dp.astype(
2968-
(
2969-
dpnp.complex128
2970-
if dpnp.issubdtype(dtype, dpnp.complexfloating)
2971-
else dpnp.float64
2972-
),
2973-
copy=False,
2974-
)
29752967

29762968
P, L, U = dpnp.scipy.linalg.lu(a_dp)
29772969
PL, U2 = dpnp.scipy.linalg.lu(a_dp, permute_l=True)

0 commit comments

Comments
 (0)