Jax: jaxlib-v0.4.29 Release

Release date:
June 10, 2024
Previous version:
jaxlib-v0.4.28 (released May 9, 2024)
Magnitude:
27,453 Diff Delta
Contributors:
70 total committers
Data confidence:
Commits:

401 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored May 17, 2024
Authored June 7, 2024
Authored May 23, 2024
Authored May 24, 2024

Top Contributors in jaxlib-v0.4.29

jakevdp
superbobry
yashk2810
a-googler
gnecula
apaszke
froystig
dfm
hawkinsp
bythew3i

Directory Browser for jaxlib-v0.4.29

All files are compared to previous version, jaxlib-v0.4.28. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

  • Bug fixes

  • Deprecations

    • jax.tree.map(f, None, non-None) now emits a DeprecationWarning, and will raise an error in a future version of jax. None is only a tree-prefix of itself. To preserve the current behavior, you can ask jax.tree.map to treat None as a leaf value by writing: jax.tree.map(lambda x, y: None if x is None else f(x, y), a, b, is_leaf=lambda x: x is None).