Skip to content

Commit 85f0b2c

Browse files
committed
Remove debug empty print from test_eigenvalue.py
1 parent b69ab1e commit 85f0b2c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/third_party/cupy/linalg_tests/test_eigenvalue.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def test_eigh_batched(self, xp, dtype):
8585
@testing.for_complex_dtypes()
8686
@testing.numpy_cupy_allclose(rtol=1e-3, atol=1e-4, contiguous_check=False)
8787
def test_eigh_complex_batched(self, xp, dtype):
88-
print()
8988
a = xp.array([[[1, 2j, 3], [4j, 5, 6j], [7, 8j, 9]],
9089
[[0, 2j, 3], [4j, 4, 6j], [7, 8j, 8]]], dtype)
9190
w, v = xp.linalg.eigh(a, UPLO=self.UPLO)

0 commit comments

Comments
 (0)