Skip to content

Commit 5392a45

Browse files
Fix validation fell
1 parent 37f5400 commit 5392a45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/third_party/cupy/linalg_tests/test_solve.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def check_shape(self, a_shape, b_shape, error_types):
6262
xp.linalg.solve(a, b)
6363

6464
# Undefined behavior is implementation-dependent:
65-
# Numpy with OpenBLAS returns an empty array while numpy with MKL raises LinAlgError
65+
# Numpy with OpenBLAS returns an empty array
66+
# while numpy with Intel MKL raises LinAlgError
6667
@pytest.mark.skip("Undefined behavior")
6768
def test_solve_singular_empty(self, xp):
6869
a = xp.zeros((3, 3)) # singular

0 commit comments

Comments
 (0)