https://github.com/google/jax
Raw File
Tip revision: f7717c89bd842a8dc6112e19c72a461bc739d414 authored by jax authors on 11 May 2021, 21:34:02 UTC
Merge pull request #6724 from hawkinsp:dispatch
Tip revision: f7717c8
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 = "f3b7102c640aca6690787bbc2bba0b1a91371710bd065141b74e10ded4680cbc",
    strip_prefix = "tensorflow-a33a0e8524108a7fe00614194788aad7991ab268",
    urls = [
        "https://github.com/tensorflow/tensorflow/archive/a33a0e8524108a7fe00614194788aad7991ab268.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", "workspace")
workspace()
load("@org_tensorflow//tensorflow:workspace2.bzl", "workspace")
workspace()
load("@org_tensorflow//tensorflow:workspace1.bzl", "workspace")
workspace()
load("@org_tensorflow//tensorflow:workspace0.bzl", "workspace")
workspace()
back to top