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.devices("cpu") with jax.local_devices(backe…
…nd="cpu"). An upcoming change to JAX will include non-local (addressable) CPU devices in jax.devices() when JAX is used multicontroller-style, where there are multiple Python processes. This change preserves the current behavior by replacing uses of jax.devices("cpu"), which previously only returned local devices, with jax.local_devices("cpu"), which will return local devices both now and in the future. This change is always be safe (i.e., it should always preserve the previous behavior) but it may sometimes be unnecessary if code is never used in a multicontroller setting. PiperOrigin-RevId: 582544519
- Loading branch information