1
0
mirror of https://github.com/ROCm/jax.git synced 2025-04-19 21:36:05 +00:00

Update README, etc. for jaxlib 0.1.64 release

This commit is contained in:
Skye Wanderman-Milne 2021-03-18 16:11:40 -07:00
parent 2947f562d5
commit 0cbe2c1c05
4 changed files with 6 additions and 4 deletions

@ -16,7 +16,9 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK.
* Breaking changes:
* The minimum jaxlib version is now 0.1.62.
## jaxlib 0.1.64 (unreleased)
## jaxlib 0.1.65 (unreleased)
## jaxlib 0.1.64 (March 18 2021)
## jaxlib 0.1.63 (March 17 2021)

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

@ -14,4 +14,4 @@
# This should be increased after releasing the current version (i.e. this
# is always the next version to be released).
__version__ = "0.1.64"
__version__ = "0.1.65"

@ -16,7 +16,7 @@ from setuptools import setup, find_packages
__version__ = None
_minimum_jaxlib_version = '0.1.62'
_current_jaxlib_version = '0.1.63'
_current_jaxlib_version = '0.1.64'
_available_cuda_versions = ['101', '102', '110', '111', '112']
with open('jax/version.py') as f: