Update README etc for jaxlib 0.1.66 release.

This commit is contained in:
Qiao Zhang 2021-05-11 16:49:32 -07:00
parent 9cce408945
commit 528d5bbb11
4 changed files with 6 additions and 4 deletions

View File

@ -11,7 +11,9 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK.
## jax 0.2.14 (unreleased)
* [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.13...master).
## jaxlib 0.1.66 (unreleased)
## jaxlib 0.1.67 (unreleased)
## jaxlib 0.1.66 (May 11 2021)
* New features:
* CUDA 11.1 wheels are now supported on all CUDA 11 versions 11.1 or higher.

View File

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

View File

@ -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.66"
__version__ = "0.1.67"

View File

@ -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.65'
_current_jaxlib_version = '0.1.66'
_available_cuda_versions = ['101', '102', '110', '111', '112']
_dct = {}