rocm_jax/WORKSPACE

35 lines
1.2 KiB
Python
Raw Permalink Normal View History

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(
2019-02-28 20:25:09 -08:00
name = "org_tensorflow",
2021-05-17 12:15:54 -07:00
sha256 = "08ff41fc080ab239ce0bea609c10acd7ab6cb52d49f3411efec7de3b6d0c17da",
strip_prefix = "tensorflow-7a0de7d64ffb723c2e420f8bfcaf1f60218991a0",
2019-02-28 20:25:09 -08:00
urls = [
2021-05-17 12:15:54 -07:00
"https://github.com/tensorflow/tensorflow/archive/7a0de7d64ffb723c2e420f8bfcaf1f60218991a0.tar.gz",
2019-02-28 20:25:09 -08:00
],
)
# 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()