aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar William D. Irons <wdirons@us.ibm.com>2018-07-02 16:35:52 -0500
committerGravatar William D. Irons <wdirons@us.ibm.com>2018-07-02 16:35:52 -0500
commit1e469a0b3449c8e33cf99f7e2792151f1f60e798 (patch)
tree8293c2f5403b6979a4840e44c1b9bf08d7b6fdb5
parent71671437c0a6d36bc0f2b5ff0c1003cf76f57cf5 (diff)
Reapplying #20254
PR #20430 contained 151 commits, one of which backleveled PR #20254. This PR is to re-apply that change. Text of 20254: PR #20229 included a change to the Eigen version that failed to compile on ppc64le. rmlarsen created a pull request in Eigen to fix the compile failure: https://bitbucket.org/eigen/eigen/pull-requests/410 This patch is to pick up the Eigen version of that patch.
-rw-r--r--tensorflow/workspace.bzl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
index 5372a585aa..c4ae21b645 100644
--- a/tensorflow/workspace.bzl
+++ b/tensorflow/workspace.bzl
@@ -107,11 +107,11 @@ def tf_workspace(path_prefix="", tf_repo_name=""):
tf_http_archive(
name = "eigen_archive",
urls = [
- "https://mirror.bazel.build/bitbucket.org/eigen/eigen/get/e5e305a158a0.tar.gz",
- "https://bitbucket.org/eigen/eigen/get/e5e305a158a0.tar.gz",
+ "https://mirror.bazel.build/bitbucket.org/eigen/eigen/get/fd6845384b86.tar.gz",
+ "https://bitbucket.org/eigen/eigen/get/fd6845384b86.tar.gz",
],
- sha256 = "8bbe676d69e7f59070c83a949454b8b6344034e0ebbf686b337528e5dc04c7de",
- strip_prefix = "eigen-eigen-e5e305a158a0",
+ sha256 = "d956415d784fa4e42b6a2a45c32556d6aec9d0a3d8ef48baee2522ab762556a9",
+ strip_prefix = "eigen-eigen-fd6845384b86",
build_file = clean_dep("//third_party:eigen.BUILD"),
)