v0.3.22
Changed 1
- Set JAX_PLATFORMS=tpu,cpu as default setting in TPU initialization so JAX will raise an error if TPU cannot be initialized instead of falling back to CPU, with options to override using JAX_PLATFORMS='' for automatic backend selection or JAX_PLATFORMS=cpu for CPU-only usage
Removed 1
- Remove several test utilities from jax.test_util that were deprecated in JAX v0.3.8
- Changes
- Add
JAX_PLATFORMS=tpu,cpuas default setting in TPU initialization, so JAX will raise an error if TPU cannot be initialized instead of falling back to CPU. SetJAX_PLATFORMS=''to override this behavior and automatically choose an available backend (the original default), or setJAX_PLATFORMS=cputo always use CPU regardless of if the TPU is available.
- Add
- Deprecations
- Several test utilities deprecated in JAX v0.3.8 are now removed from
{mod}
jax.test_util.
- Several test utilities deprecated in JAX v0.3.8 are now removed from
{mod}