Skip to content

Commit 2348c5a

Browse files
committed
update svd test
1 parent 2662b7d commit 2348c5a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

dpnp/tests/test_linalg.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2812,11 +2812,7 @@ def test_svd(self, dtype, shape):
28122812
"shape", [(2, 2), (16, 16)], ids=["(2, 2)", "(16, 16)"]
28132813
)
28142814
def test_svd_hermitian(self, dtype, compute_vt, shape):
2815-
# Set seed_value=81 to prevent
2816-
# random generation of the input singular matrix
2817-
a = generate_random_numpy_array(
2818-
shape, dtype, hermitian=True, seed_value=81
2819-
)
2815+
a = generate_random_numpy_array(shape, dtype, hermitian=True)
28202816
dp_a = dpnp.array(a)
28212817

28222818
if compute_vt:

0 commit comments

Comments
 (0)