diff --git a/keras/src/ops/numpy_test.py b/keras/src/ops/numpy_test.py index 93824e3f768..76952cef321 100644 --- a/keras/src/ops/numpy_test.py +++ b/keras/src/ops/numpy_test.py @@ -433,6 +433,7 @@ def test_matmul(self): y = KerasTensor((2, 3, 4)) knp.matmul(x, y) + @pytest.mark.skipif(testing.tensorflow_uses_gpu(), reason="Segfault") def test_matmul_sparse(self): x = KerasTensor((2, 3), sparse=True) y = KerasTensor((3, 2))