From f06bb9a7f46c68a159f05a58e78c74f297f0347d Mon Sep 17 00:00:00 2001 From: Skye Wanderman-Milne Date: Tue, 9 Mar 2021 17:55:40 -0800 Subject: [PATCH] Update jaxlib version etc. --- CHANGELOG.md | 8 ++++---- README.md | 2 +- jaxlib/version.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cb9d0098..843688467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. * Bug fixes: * Breaking changes: +## jaxlib 0.1.63 (Unreleased) + ## jax 0.2.10 (March 5 2021) * [GitHub commits](https://github.com/google/jax/compare/jax-v0.2.9...jax-v0.2.10). @@ -46,7 +48,7 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. {func}`jax.numpy.repeat`, {func}`jax.numpy.reshape`. In general, {mod}`jax.numpy` functions should be used with scalars or array arguments. -## jaxlib 0.1.62 (Unreleased) +## jaxlib 0.1.62 (March 9 2021) * New features: * jaxlib wheels are now built to require AVX instructions on x86-64 machines @@ -571,7 +573,7 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. > > * Forward-mode automatic differentiation (`jvp`) of while loop > ({jax-issue}`#1980`) > * New NumPy and SciPy functions: - > + > > * {py:func}`jax.numpy.fft.fft2` > * {py:func}`jax.numpy.fft.ifft2` > * {py:func}`jax.numpy.fft.rfft` @@ -592,5 +594,3 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK. * With the Python 3 upgrade, JAX no longer depends on `fastcache`, which should help with installation. - - diff --git a/README.md b/README.md index ab4cee7cb..7a11b7fa1 100644 --- a/README.md +++ b/README.md @@ -422,7 +422,7 @@ Next, run ```bash pip install --upgrade pip -pip install --upgrade jax jaxlib==0.1.61+cuda110 -f https://storage.googleapis.com/jax-releases/jax_releases.html +pip install --upgrade jax jaxlib==0.1.62+cuda110 -f https://storage.googleapis.com/jax-releases/jax_releases.html ``` The jaxlib version must correspond to the version of the existing CUDA diff --git a/jaxlib/version.py b/jaxlib/version.py index 2dfb78242..b6d3fa7e3 100644 --- a/jaxlib/version.py +++ b/jaxlib/version.py @@ -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.62" +__version__ = "0.1.63"