aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/workspace.bzl
diff options
context:
space:
mode:
authorGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-18 17:18:58 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-18 17:19:05 -0700
commit08af8cac22af4cc430e092b6218ca77736efb82c (patch)
tree36d4b644f518eea56e359a777d208846be52a635 /tensorflow/workspace.bzl
parent93b5dea9663c00d3bb06348143b50b73b6fbacfb (diff)
parent7210ca23ce19e54aa3cbc21ff72e5e5d4189dfea (diff)
Merge pull request #22160 from NervanaSystems:avijit/add-cpu-backend
PiperOrigin-RevId: 213546915
Diffstat (limited to 'tensorflow/workspace.bzl')
-rwxr-xr-xtensorflow/workspace.bzl27
1 files changed, 19 insertions, 8 deletions
diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
index 4ca083c8a3..d2e6f8def5 100755
--- a/tensorflow/workspace.bzl
+++ b/tensorflow/workspace.bzl
@@ -831,13 +831,24 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
)
tf_http_archive(
+ name = "tbb",
+ urls = [
+ "https://mirror.bazel.build/github.com/01org/tbb/archive/tbb_2018.zip",
+ "https://github.com/01org/tbb/archive/tbb_2018.zip",
+ ],
+ sha256 = "724686f90bcda78f13b76f297d964008737ccd6399328143c1c0093e73ae6a13",
+ strip_prefix = "tbb-tbb_2018",
+ build_file = clean_dep("//third_party/ngraph:tbb.BUILD"),
+ )
+
+ tf_http_archive(
name = "ngraph",
urls = [
- "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.5.0.tar.gz",
- "https://github.com/NervanaSystems/ngraph/archive/v0.5.0.tar.gz",
+ "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.7.0.tar.gz",
+ "https://github.com/NervanaSystems/ngraph/archive/v0.7.0.tar.gz",
],
- sha256 = "cb35d3d98836f615408afd18371fb13e3400711247e0d822ba7f306c45e9bb2c",
- strip_prefix = "ngraph-0.5.0",
+ sha256 = "34434b6d5993ac5233538c84f498840db7ac91df82e225c379ee7c8f6de644a5",
+ strip_prefix = "ngraph-0.7.0",
build_file = clean_dep("//third_party/ngraph:ngraph.BUILD"),
)
@@ -855,11 +866,11 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
tf_http_archive(
name = "ngraph_tf",
urls = [
- "https://mirror.bazel.build/github.com/NervanaSystems/ngraph-tf/archive/v0.3.0-rc1.tar.gz",
- "https://github.com/NervanaSystems/ngraph-tf/archive/v0.3.0-rc1.tar.gz",
+ "https://mirror.bazel.build/github.com/NervanaSystems/ngraph-tf/archive/v0.5.0.tar.gz",
+ "https://github.com/NervanaSystems/ngraph-tf/archive/v0.5.0.tar.gz",
],
- sha256 = "7919332cb15120101c3e05c1b969a5e029a6411581312583c8f80b6aaaa83072",
- strip_prefix = "ngraph-tf-0.3.0-rc1",
+ sha256 = "23b4566d8e40d6f1f236b0ffe3905dd964ae42ca54bacff67f24abcefd443afb",
+ strip_prefix = "ngraph-tf-0.5.0",
build_file = clean_dep("//third_party/ngraph:ngraph_tf.BUILD"),
)