Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JAX] Replace uses of jax.xla_computation() with jax.jit().lower().
jax.xla_computation() is deprecated in favor of jax.jit(...).lower(...). The most common replacements are either jax.jit(...).lower(...).compiler_ir(dialect='hlo') or jax.jit(...).lower(...).cost_analysis(). PiperOrigin-RevId: 509937560
- Loading branch information