forked from jax-ml/jax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
34 lines (30 loc) · 1.23 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 = "239e4986841e91c9c97a9bdcfddfa12e1190a6a142e9772fee8a90b7df1b0d45",
strip_prefix = "tensorflow-ce227000bdf0dd4b6c1a9dd456a60f4627c54cbc",
urls = [
"https://github.com/tensorflow/tensorflow/archive/ce227000bdf0dd4b6c1a9dd456a60f4627c54cbc.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()