From dd040de18d43b52d5e3dc50bb1cb7610d638bdc0 Mon Sep 17 00:00:00 2001 From: Peter Hawkins Date: Fri, 12 Jun 2020 14:46:45 -0400 Subject: [PATCH] Bump XLA version. (#3424) Update jaxlib release notes. --- WORKSPACE | 6 +++--- docs/CHANGELOG.rst | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 9173c9f6f5c7..ed86fb8045ef 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -28,10 +28,10 @@ http_archive( # and update the sha256 with the result. http_archive( name = "org_tensorflow", - sha256 = "99231c027ad22e1a82866d2e6bc60379d06d0a75793ac09b547282eb5b382d37", - strip_prefix = "tensorflow-37aaafb0c1baa7acd0607748326cc12faf556277", + sha256 = "abb9bea8131dcf2f0d90ffed2462d623c3cf2714c95dad17fac8debbf5b3ef59", + strip_prefix = "tensorflow-76fa5e8a4a3451eb139afe55bac78acd5886dbaf", urls = [ - "https://github.com/tensorflow/tensorflow/archive/37aaafb0c1baa7acd0607748326cc12faf556277.tar.gz", + "https://github.com/tensorflow/tensorflow/archive/76fa5e8a4a3451eb139afe55bac78acd5886dbaf.tar.gz", ], ) diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index c29b24136cfc..e74191205e29 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -14,6 +14,25 @@ jax 0.1.71 (Unreleased) * `GitHub commits `_. +jaxlib 0.1.48 (June 12, 2020) +------------------------------ + +* New features: + + * Adds support for fast traceback collection. + * Adds preliminary support for on-device heap profiling. + * Implements ``np.nextafter`` for ``bfloat16`` types. + * Complex128 support for FFTs on CPU and GPU. + +* Bugfixes: + + * Improved float64 ``tanh`` accuracy on GPU. + * float64 scatters on GPU are much faster. + * Complex matrix multiplication on CPU should be much faster. + * Stable sorts on CPU should actually be stable now. + * Concurrency bug fix in CPU backend. + + jax 0.1.70 (June 8, 2020) ---------------------------