Skip to content

Commit e3cf043

Browse files
authored
Never pass enable_xla=False or native_serialization=False in tests (#20664)
These are invalid options in the latest version of jax2tf, they will just immediately throw.
1 parent a62e0ef commit e3cf043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras/src/export/export_lib_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def test_input_signature_error(self):
275275
is_static=(True, False),
276276
jax2tf_kwargs=(
277277
None,
278-
{"enable_xla": False, "native_serialization": False},
278+
{"enable_xla": True, "native_serialization": True},
279279
),
280280
)
281281
)

0 commit comments

Comments
 (0)