aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar avijit-nervana <avijit.chakraborty@intel.com>2018-09-27 12:57:24 -0700
committerGravatar avijit-nervana <avijit.chakraborty@intel.com>2018-09-27 13:38:04 -0700
commitf172c52ac74ae6db228119b90785add81648372e (patch)
tree62d132d05cb231f698c4e3a91966cf500a4a288c /third_party
parent4cedc8b6e738b7a188c9c091cf667bacafae44b7 (diff)
Fixed the broken unit tests
Diffstat (limited to 'third_party')
-rw-r--r--third_party/mkl/build_defs.bzl2
-rw-r--r--third_party/ngraph/ngraph.BUILD4
2 files changed, 3 insertions, 3 deletions
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,