aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Yifei Feng <yifeif@google.com>2018-05-24 19:12:26 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-24 19:15:01 -0700
commitb59833c3fd91511b33255369016868e4ae6cda2e (patch)
treeecbd70cfd3abb5d934f6eb4b7280a35e8589f5cf /third_party
parent2b99d9cbc7166efedaff9eee11744348da30fc8a (diff)
Merge changes from github.
Revert #18413. Too many internal test failures due to the name scope change caused by this change. Revert #18192. Cannot use re2::StringPiece internally. Need alternative for set call. Will pull and clean this up in a separate change. PiperOrigin-RevId: 197991247
Diffstat (limited to 'third_party')
-rw-r--r--third_party/examples/eager/spinn/README.md2
-rw-r--r--third_party/gpus/cuda_configure.bzl2
-rw-r--r--third_party/mkl/BUILD2
3 files changed, 4 insertions, 2 deletions
diff --git a/third_party/examples/eager/spinn/README.md b/third_party/examples/eager/spinn/README.md
index 7f477d1920..fbb1fde837 100644
--- a/third_party/examples/eager/spinn/README.md
+++ b/third_party/examples/eager/spinn/README.md
@@ -70,7 +70,7 @@ Other eager execution examples can be found under [tensorflow/contrib/eager/pyth
- After training, you may use the model to perform inference on input data in
the SNLI data format. The premise and hypotheses sentences are specified with
the command-line flags `--inference_premise` and `--inference_hypothesis`,
- respecitvely. Each sentence should include the words, as well as parentheses
+ respectively. Each sentence should include the words, as well as parentheses
representing a binary parsing of the sentence. The words and parentheses
should all be separated by spaces. For instance,
diff --git a/third_party/gpus/cuda_configure.bzl b/third_party/gpus/cuda_configure.bzl
index 50d1b778d9..c90c66912d 100644
--- a/third_party/gpus/cuda_configure.bzl
+++ b/third_party/gpus/cuda_configure.bzl
@@ -604,7 +604,7 @@ def _find_cupti_header_dir(repository_ctx, cuda_config):
for relative_path in CUPTI_HEADER_PATHS:
if repository_ctx.path("%s/%scupti.h" % (cuda_toolkit_path, relative_path)).exists:
return ("%s/%s" % (cuda_toolkit_path, relative_path))[:-1]
- auto_configure_fail("Cannot find cupti.h under %s" % cuda_toolkit_path)
+ auto_configure_fail("Cannot find cupti.h under %s" % ", ".join([cuda_toolkit_path + "/" + s for s in CUPTI_HEADER_PATHS]))
def _find_cupti_lib(repository_ctx, cuda_config):
diff --git a/third_party/mkl/BUILD b/third_party/mkl/BUILD
index c2adf578c7..a058c46cc4 100644
--- a/third_party/mkl/BUILD
+++ b/third_party/mkl/BUILD
@@ -34,6 +34,7 @@ filegroup(
"@org_tensorflow//tensorflow:windows": [
"@mkl_windows//:LICENSE",
],
+ "//conditions:default": [],
}),
visibility = ["//visibility:public"],
)
@@ -54,5 +55,6 @@ cc_library(
"@mkl_windows//:mkl_headers",
"@mkl_windows//:mkl_libs_windows",
],
+ "//conditions:default": [],
}),
)