We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d012c4 commit f78d7b6Copy full SHA for f78d7b6
keras/src/backend/common/remat_test.py
@@ -83,9 +83,10 @@ def test_invalid_mode(self):
83
84
class RematTest(testing.TestCase):
85
def test_remat_basic_call(self):
86
- if backend.backend() in ("openvino", "numpy"):
+ if backend.backend() in ("openvino", "numpy") or testing.jax_uses_gpu():
87
self.skipTest(
88
- "remat is not supported in openvino and numpy backends."
+ "remat is not supported in openvino and numpy backends. Jax GPU"
89
+ " is causing Seg fault"
90
)
91
# Generate dummy data
92
data_size = 10**5
0 commit comments