Skip to content

Commit f78d7b6

Browse files
disable the seg fault test
1 parent 9d012c4 commit f78d7b6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

keras/src/backend/common/remat_test.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ def test_invalid_mode(self):
8383

8484
class RematTest(testing.TestCase):
8585
def test_remat_basic_call(self):
86-
if backend.backend() in ("openvino", "numpy"):
86+
if backend.backend() in ("openvino", "numpy") or testing.jax_uses_gpu():
8787
self.skipTest(
88-
"remat is not supported in openvino and numpy backends."
88+
"remat is not supported in openvino and numpy backends. Jax GPU"
89+
" is causing Seg fault"
8990
)
9091
# Generate dummy data
9192
data_size = 10**5

0 commit comments

Comments
 (0)