diff --git a/tensorflow/contrib/makefile/download_dependencies.sh b/tensorflow/contrib/makefile/download_dependencies.sh index 7566733680ce6584c8db0555f02a720c25f63cc8..c41513a9096ce404445a77b99c3c9f2e33a907f3 100755 --- a/tensorflow/contrib/makefile/download_dependencies.sh +++ b/tensorflow/contrib/makefile/download_dependencies.sh @@ -26,7 +26,7 @@ if [ ! -f $BZL_FILE_PATH ]; then exit 1; fi -EIGEN_URL="$(grep -o 'http.*bitbucket.org/eigen/eigen/get/.*tar\.gz' "${BZL_FILE_PATH}" | grep -v mirror.bazel | head -n1)" +EIGEN_URL="$(grep -o 'https://bitbucket.org/eigen/eigen/get/.*tar\.gz' "${BZL_FILE_PATH}" | grep -v mirror.bazel | head -n1)" GEMMLOWP_URL="$(grep -o 'http://mirror.tensorflow.org/github.com/google/gemmlowp/.*zip' "${BZL_FILE_PATH}" | head -n1)" GOOGLETEST_URL="https://github.com/google/googletest/archive/release-1.8.0.tar.gz" NSYNC_URL="$(grep -o 'http://mirror.tensorflow.org/github.com/google/nsync/.*tar\.gz' "${BZL_FILE_PATH}" | head -n1)" diff --git a/tensorflow/python/kernel_tests/BUILD b/tensorflow/python/kernel_tests/BUILD index db89cb2dbb08cf6aa94f719819c631298190359c..18a7700a32744e2a5b0af9c7c80143ff42e39047 100644 --- a/tensorflow/python/kernel_tests/BUILD +++ b/tensorflow/python/kernel_tests/BUILD @@ -237,7 +237,7 @@ cuda_py_test( ], shard_count = 5, tags = [ - "no_windows_gpu", + "no_gpu", # TODO(b/131773093): Re-enable. "nomsan", # TODO(b/131773093): Re-enable. ], xla_enable_strict_auto_jit = True, diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl index 2c1ab8f401f6766e944dcf950bd07dc7bd911f2c..55d7eb937116050bde47a2b04573b51edc4128f2 100755 --- a/tensorflow/workspace.bzl +++ b/tensorflow/workspace.bzl @@ -149,11 +149,11 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""): name = "eigen_archive", build_file = clean_dep("//third_party:eigen.BUILD"), patch_file = clean_dep("//third_party/eigen3:gpu_packet_math.patch"), - sha256 = "74845ea27e19a1bcf63f3f271de62e06798f23e0467bb9d45b83a94918941b23", - strip_prefix = "eigen-eigen-20cbc6576426", + sha256 = "0dde8fb87f5dad2e409c9f4ea1bebc54e694cf4f3b633081b0d51a55c00f9c9f", + strip_prefix = "eigen-eigen-a0d250e79c79", urls = [ - "http://mirror.tensorflow.org/bitbucket.org/eigen/eigen/get/20cbc6576426.tar.gz", - "https://bitbucket.org/eigen/eigen/get/20cbc6576426.tar.gz", + "http://mirror.tensorflow.org/bitbucket.org/eigen/eigen/get/a0d250e79c79.tar.gz", + "https://bitbucket.org/eigen/eigen/get/a0d250e79c79.tar.gz", ], )