Skip to content

Commit

Permalink
Merge pull request #14342 from skye:version
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 507907767
  • Loading branch information
jax authors committed Feb 7, 2023
2 parents eb13c05 + 8ab1585 commit a46f31b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# and update the sha256 with the result.
http_archive(
name = "org_tensorflow",
sha256 = "eee3984f41375d438c18fdfae71f66673a35cefe883ef309f4c6a9a4ffc16218",
strip_prefix = "tensorflow-bbabe41b20327819d2472425d43178c35ce2b1bf",
sha256 = "8d85c2a03b60fdb7152e810ac9e7380f9ebd677f382f7ea93f2e88af6f23ed26",
strip_prefix = "tensorflow-5e52982c02c0f5d88eaa449408abe3bdcac9ee05",
urls = [
"https://github.com/tensorflow/tensorflow/archive/bbabe41b20327819d2472425d43178c35ce2b1bf.tar.gz",
"https://github.com/tensorflow/tensorflow/archive/5e52982c02c0f5d88eaa449408abe3bdcac9ee05.tar.gz",
],
)

Expand Down
2 changes: 1 addition & 1 deletion jax/tools/colab_tpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
TPU_DRIVER_MODE = 0


def setup_tpu(tpu_driver_version='tpu_driver_20230120'):
def setup_tpu(tpu_driver_version='tpu_driver_20230207'):
"""Sets up Colab to run on TPU.
Note: make sure the Colab Runtime is set to Accelerator: TPU.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@

from setuptools import setup, find_packages

_current_jaxlib_version = '0.4.2'
_current_jaxlib_version = '0.4.3'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.2'
_available_cuda_versions = ['11']
_default_cuda_version = '11'
_available_cudnn_versions = ['82', '86']
_default_cudnn_version = '86'
_libtpu_version = '0.1.dev20230124'
_libtpu_version = '0.1.dev20230207'

_dct = {}
with open('jax/version.py', encoding='utf-8') as f:
Expand Down

0 comments on commit a46f31b

Please sign in to comment.