Skip to content

Commit

Permalink
Never pass enable_xla=False or native_serialization=False in tests (k…
Browse files Browse the repository at this point in the history
…eras-team#20664)

These are invalid options in the latest version of jax2tf, they
will just immediately throw.
  • Loading branch information
mattdangerw authored Dec 19, 2024
1 parent a62e0ef commit e3cf043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras/src/export/export_lib_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def test_input_signature_error(self):
is_static=(True, False),
jax2tf_kwargs=(
None,
{"enable_xla": False, "native_serialization": False},
{"enable_xla": True, "native_serialization": True},
),
)
)
Expand Down

0 comments on commit e3cf043

Please sign in to comment.