Skip to content

Commit 0573f5d

Browse files
authored
Merge 2ef38ff into c06e457
2 parents c06e457 + 2ef38ff commit 0573f5d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/test_usm_type.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -787,6 +787,9 @@ def test_clip(usm_type):
787787
)
788788
def test_solve(matrix, vector, usm_type_matrix, usm_type_vector):
789789
x = dp.array(matrix, usm_type=usm_type_matrix)
790+
if x.ndim > 2 and x.device.sycl_device.is_cpu:
791+
pytest.skip("SAT-6842: reported hanging in public CI")
792+
790793
y = dp.array(vector, usm_type=usm_type_vector)
791794
z = dp.linalg.solve(x, y)
792795

tests/third_party/cupy/linalg_tests/test_solve.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class TestSolve(unittest.TestCase):
3535
@testing.numpy_cupy_allclose(
3636
atol=1e-3, contiguous_check=False, type_check=has_support_aspect64()
3737
)
38+
@pytest.mark.skipif(is_cpu_device(), reason="SAT-6842")
3839
def check_x(self, a_shape, b_shape, xp, dtype):
3940
a = testing.shaped_random(a_shape, xp, dtype=dtype, seed=0, scale=20)
4041
b = testing.shaped_random(b_shape, xp, dtype=dtype, seed=1)

0 commit comments

Comments
 (0)