aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--configure.py2
-rwxr-xr-xtensorflow/workspace.bzl16
-rw-r--r--third_party/mkl/build_defs.bzl2
-rw-r--r--third_party/ngraph/ngraph.BUILD4
4 files changed, 12 insertions, 12 deletions
diff --git a/configure.py b/configure.py
index cc6a654a61..f71caa1994 100644
--- a/configure.py
+++ b/configure.py
@@ -1631,7 +1631,7 @@ def main():
config_info_line('monolithic', 'Config for mostly static monolithic build.')
config_info_line('gdr', 'Build with GDR support.')
config_info_line('verbs', 'Build with libverbs support.')
- config_info_line('ngraph', 'Build with Intel ngraph support.')
+ config_info_line('ngraph', 'Build with Intel nGraph support.')
if __name__ == '__main__':
diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
index e5a0a0b2b7..6966783efd 100755
--- a/tensorflow/workspace.bzl
+++ b/tensorflow/workspace.bzl
@@ -862,11 +862,11 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
tf_http_archive(
name = "ngraph",
urls = [
- "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.8.0.tar.gz",
- "https://github.com/NervanaSystems/ngraph/archive/v0.8.0.tar.gz",
+ "https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.8.1.tar.gz",
+ "https://github.com/NervanaSystems/ngraph/archive/v0.8.1.tar.gz",
],
- sha256 = "a8cf3ef2d0e6d31b54eb33f6a9e795f562195ce5c2a857e729ca9c35241cc45c",
- strip_prefix = "ngraph-0.8.0",
+ sha256 = "bf9dcc88e5c66021e3aac80491a231711211540d613bf9b6bd28db3f5bb86b62",
+ strip_prefix = "ngraph-0.8.1",
build_file = clean_dep("//third_party/ngraph:ngraph.BUILD"),
)
@@ -884,11 +884,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.6.0.tar.gz",
- "https://github.com/NervanaSystems/ngraph-tf/archive/v0.6.0.tar.gz",
+ "https://mirror.bazel.build/github.com/NervanaSystems/ngraph-tf/archive/v0.6.1.tar.gz",
+ "https://github.com/NervanaSystems/ngraph-tf/archive/v0.6.1.tar.gz",
],
- sha256 = "1f49391c02bef24872e9f85591e60e0e7eef12a337db71390444118049fe451f",
- strip_prefix = "ngraph-tf-0.6.0",
+ sha256 = "402f84c748c113780a60f35f39aab118435285543aee4900d712b76fbf8a21ee",
+ strip_prefix = "ngraph-tf-0.6.1",
build_file = clean_dep("//third_party/ngraph:ngraph_tf.BUILD"),
)
diff --git a/third_party/mkl/build_defs.bzl b/third_party/mkl/build_defs.bzl
index bb798e715a..10c2d90c84 100644
--- a/third_party/mkl/build_defs.bzl
+++ b/third_party/mkl/build_defs.bzl
@@ -92,7 +92,7 @@ def if_enable_mkl(if_true, if_false = []):
A select evaluating to either if_true or if_false as appropriate.
"""
return select({
- "//third_party/mkl:enable_mkl": if_true,
+ str(Label("//third_party/mkl:enable_mkl")): if_true,
"//conditions:default": if_false,
})
diff --git a/third_party/ngraph/ngraph.BUILD b/third_party/ngraph/ngraph.BUILD
index 71b2187011..6602a480af 100644
--- a/third_party/ngraph/ngraph.BUILD
+++ b/third_party/ngraph/ngraph.BUILD
@@ -110,7 +110,7 @@ cc_library(
"-I external/ngraph/src",
"-I external/nlohmann_json_lib/include/",
'-D SHARED_LIB_EXT=\\".so\\"',
- '-D NGRAPH_VERSION=\\"0.8.0\\"',
+ '-D NGRAPH_VERSION=\\"0.8.1\\"',
"-D NGRAPH_DEX_ONLY",
],
visibility = ["//visibility:public"],
@@ -144,7 +144,7 @@ cc_library(
"-I external/ngraph/src",
"-I external/nlohmann_json_lib/include/",
'-D SHARED_LIB_EXT=\\".so\\"',
- '-D NGRAPH_VERSION=\\"0.8.0\\"',
+ '-D NGRAPH_VERSION=\\"0.8.1\\"',
],
visibility = ["//visibility:public"],
alwayslink = 1,