mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 03:46:06 +00:00
Update version after jax release
PiperOrigin-RevId: 448822949
This commit is contained in:
parent
42421c81b4
commit
1381afc37f
13
CHANGELOG.md
13
CHANGELOG.md
@ -8,8 +8,14 @@ Remember to align the itemized text with the first line of an item within a list
|
||||
PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
|
||||
-->
|
||||
|
||||
## jax 0.3.11 (Unreleased)
|
||||
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.10...main).
|
||||
## jax 0.3.12 (Unreleased)
|
||||
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.11...main).
|
||||
|
||||
## jaxlib 0.3.11 (Unreleased)
|
||||
* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.10...main).
|
||||
|
||||
## jax 0.3.11 (May 15, 2022)
|
||||
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.10...jax-v0.3.11).
|
||||
* Changes
|
||||
* {func}`jax.lax.eigh` now accepts an optional `sort_eigenvalues` argument
|
||||
that allows users to opt out of eigenvalue sorting on TPU.
|
||||
@ -22,9 +28,6 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
|
||||
* {func}`jax.scipy.linalg.polar_unitary`, which was a JAX extension to the
|
||||
scipy API, is deprecated. Use {func}`jax.scipy.linalg.polar` instead.
|
||||
|
||||
## jaxlib 0.3.11 (Unreleased)
|
||||
* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.10...main).
|
||||
|
||||
## jax 0.3.10 (May 3, 2022)
|
||||
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.9...jax-v0.3.10).
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
def _version_as_tuple(version_str):
|
||||
return tuple(int(i) for i in version_str.split(".") if i.isdigit())
|
||||
|
||||
__version__ = "0.3.11"
|
||||
__version__ = "0.3.12"
|
||||
__version_info__ = _version_as_tuple(__version__)
|
||||
|
||||
_minimum_jaxlib_version = "0.3.7"
|
||||
|
Loading…
x
Reference in New Issue
Block a user