jax and jaxlib release

PiperOrigin-RevId: 446295827
This commit is contained in:
Yash Katariya 2022-05-03 14:52:12 -07:00 committed by jax authors
parent c6343ddf8e
commit ff1a3c40ba
3 changed files with 19 additions and 9 deletions

View File

@ -8,11 +8,21 @@ 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.10 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.9...main).
## jax 0.3.11 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.10...main).
## jaxlib 0.3.8 (Unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.7...main).
## 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).
## jaxlib 0.3.10 (May 3, 2022)
* [GitHub commits](https://github.com/google/jax/compare/jaxlib-v0.3.7...jaxlib-v0.3.10).
* Changes
* [TF commit](https://github.com/tensorflow/tensorflow/commit/207d50d253e11c3a3430a700af478a1d524a779a)
fixes an issue in the MHLO canonicalizer that caused constant folding to
take a long time or crash for certain programs.
## jax 0.3.9 (May 2, 2022)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.3.8...jax-v0.3.9).

View File

@ -7,10 +7,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# and update the sha256 with the result.
http_archive(
name = "org_tensorflow",
sha256 = "ef5a001226c37f59eca9c9bf0506b962cf220906bcc8f24df4d1ed6011a593e9",
strip_prefix = "tensorflow-e011187e26dbeed80dede66eb48729d184e3bb1d",
sha256 = "bee3000a7892008b32c65a5d6ba5d0a1f490e9e749d6789c5100d47068b1bbd8",
strip_prefix = "tensorflow-46cb56d405f0800e1741f68bba098d8eea5d0025",
urls = [
"https://github.com/tensorflow/tensorflow/archive/e011187e26dbeed80dede66eb48729d184e3bb1d.tar.gz",
"https://github.com/tensorflow/tensorflow/archive/46cb56d405f0800e1741f68bba098d8eea5d0025.tar.gz",
],
)

View File

@ -14,14 +14,14 @@
from setuptools import setup, find_packages
_current_jaxlib_version = '0.3.7'
_current_jaxlib_version = '0.3.10'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.3.7'
_available_cuda_versions = ['11']
_default_cuda_version = '11'
_available_cudnn_versions = ['82', '805']
_default_cudnn_version = '82'
_libtpu_version = '0.1.dev20220415'
_libtpu_version = '0.1.dev20220503'
_dct = {}
with open('jax/version.py') as f: