v0.3.16
JAX release v0.3.16
Added 1
- Add jax.debug module with utilities for runtime value debugging including jax.debug.print and jax.debug.breakpoint
Changed 1
- Replace jax.checkpoint and jax.remat default implementation with new implementation, deprecating the old one
Removed 6
- Support for NumPy 1.19 has been dropped
- Remove jax.mask and jax.shapecheck APIs
- Remove jax.experimental.loops
- Remove jax.tree_util.tree_multimap
- Remove jax.experimental.stax deprecated alias
- Remove jax.experimental.optimizers deprecated alias
- GitHub commits.
- Breaking changes
- Support for NumPy 1.19 has been dropped, per the deprecation policy. Please upgrade to NumPy 1.20 or newer.
- Changes
- Added
jax.debugthat includes utilities for runtime value debugging such atjax.debug.printandjax.debug.breakpoint. - Added new documentation for runtime value debugging
- Added
- Deprecations
jax.maskjax.shapecheckAPIs have been removed. See #11557.jax.experimental.loopshas been removed. See #10278 for an alternative API.jax.tree_util.tree_multimaphas been removed. It has been deprecated since JAX release 0.3.5, andjax.tree_util.tree_mapis a direct replacement.- Removed
jax.experimental.stax; it has long been a deprecated alias ofjax.example_libraries.stax. - Removed
jax.experimental.optimizers; it has long been a deprecated alias ofjax.example_libraries.optimizers. jax.checkpoint, also known asjax.remat, has a new implementation switched on by default, meaning the old implementation is deprecated; see JEP 11830.