1
0
mirror of https://github.com/ROCm/jax.git synced 2025-04-19 13:26:06 +00:00

Update README, etc. for jaxlib 0.1.65 release

This commit is contained in:
Skye Wanderman-Milne 2021-04-07 17:51:20 -07:00
parent 44cacffbc1
commit f8f373466c
4 changed files with 7 additions and 5 deletions

@ -14,6 +14,10 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK.
* The {func}`jax2tf.convert` now works in presence of gradients for functions
with integer inputs ({jax-issue}`#6360`).
## jaxlib 0.1.66 (unreleased)
## jaxlib 0.1.65 (April 7 2021)
## jax 0.2.12 (April 1 2021)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.11...v0.2.12).
* New features
@ -39,8 +43,6 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK.
* {func}`jax.random.randint` clips rather than wraps of out-of-bounds limits, and can now generate
integers in the full range of the specified dtype ({jax-issue}`#5868`)
## jaxlib 0.1.65 (unreleased)
## jax 0.2.11 (March 23 2021)
* [GitHub

@ -422,7 +422,7 @@ Next, run
```bash
pip install --upgrade pip
pip install --upgrade jax jaxlib==0.1.64+cuda110 -f https://storage.googleapis.com/jax-releases/jax_releases.html
pip install --upgrade jax jaxlib==0.1.65+cuda110 -f https://storage.googleapis.com/jax-releases/jax_releases.html
```
The jaxlib version must correspond to the version of the existing CUDA

@ -17,4 +17,4 @@
# reflect the most recent available binaries.
# __version__ should be increased after releasing the current version
# (i.e. on master, this is always the next version to be released).
__version__ = "0.1.65"
__version__ = "0.1.66"

@ -15,7 +15,7 @@
from setuptools import setup, find_packages
# The following should be updated with each new jaxlib release.
_current_jaxlib_version = '0.1.64'
_current_jaxlib_version = '0.1.65'
_available_cuda_versions = ['101', '102', '110', '111', '112']
_dct = {}