https://github.com/google/jax
Raw File
Tip revision: 2c23c947a52331f6e4352bffc9bb185bc1c8cacd authored by jax authors on 16 March 2022, 19:55:19 UTC
Merge pull request #9920 from skye:release
Tip revision: 2c23c94
WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

# To update TensorFlow to a new revision,
# a) update URL and strip_prefix to the new git commit hash
# b) get the sha256 hash of the commit by running:
#    curl -L https://github.com/tensorflow/tensorflow/archive/<git hash>.tar.gz | sha256sum
#    and update the sha256 with the result.
http_archive(
    name = "org_tensorflow",
    sha256 = "1990eea2e3d195a8561bef633ff94af82fcbc0e1a10ee4052d6c3087616ea7e3",
    strip_prefix = "tensorflow-481b67b1de37bcb1ff625c287bc70c03d187fc7d",
    urls = [
        "https://github.com/tensorflow/tensorflow/archive/481b67b1de37bcb1ff625c287bc70c03d187fc7d.tar.gz",
    ],
)

# For development, one can use a local TF repository instead.
# local_repository(
#    name = "org_tensorflow",
#    path = "tensorflow",
# )

load("//third_party/pocketfft:workspace.bzl", pocketfft = "repo")
pocketfft()

# Initialize TensorFlow's external dependencies.
load("@org_tensorflow//tensorflow:workspace3.bzl", "tf_workspace3")
tf_workspace3()

load("@org_tensorflow//tensorflow:workspace2.bzl", "tf_workspace2")
tf_workspace2()

load("@org_tensorflow//tensorflow:workspace1.bzl", "tf_workspace1")
tf_workspace1()

load("@org_tensorflow//tensorflow:workspace0.bzl", "tf_workspace0")
tf_workspace0()
back to top