From ed158956dff9964dc125188f5e05ff6c43542c63 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 21 Jan 2021 15:40:14 -0800 Subject: [PATCH] More llvm --- tf/tensorflow/workspace.bzl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tf/tensorflow/workspace.bzl b/tf/tensorflow/workspace.bzl index ecf1e983702..0dc0ea48aa4 100755 --- a/tf/tensorflow/workspace.bzl +++ b/tf/tensorflow/workspace.bzl @@ -698,10 +698,10 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""): # # For all this to work, we need to set up the following variables upon # exporting code to open source and on every integration. - LLVM_COMMIT = "0eeb15741bdaa6740c3bfcbed981b9d19d5348fb" + LLVM_COMMIT = "9dd5aea1e0397f693a739bffb03fd94dc8e1ec79" LLVM_BAZEL_TAG = "llvm-project-{commit}".format(commit = LLVM_COMMIT) - LLVM_BAZEL_SHA256 = "82cde055787b834ee371c465fe852f079f2877026a0165465aebc76780f453cd" - LLVM_PROJECT_SHA256 = "8e73d287327fa5cf6cdc5c6242b8725589024c46ac0d9232aceb7dc41833e7ef" + LLVM_BAZEL_SHA256 = "5d39f1369bad3e9a7b27c3cf9e09b7efc0bff243cebe136bae6248b0ff76223a" + LLVM_PROJECT_SHA256 = "a61665c77fd7f683d6f2be9661eea5e847acad31c80ee12a3e8d60312a5eb353" LLVM_BAZEL_URLS = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/llvm-bazel/archive/{tag}.tar.gz".format(tag = LLVM_BAZEL_TAG), "https://github.com/google/llvm-bazel/archive/{tag}.tar.gz".format(tag = LLVM_BAZEL_TAG), @@ -713,7 +713,7 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""): tf_http_archive( name = "llvm-bazel", # TODO(mihaimaruseac): Wait until https://github.com/google/llvm-bazel/pull/130 or until Bazel 4.0 before removing the patch - #patch_file = clean_dep("//third_party:llvm-bazel.patch"), + patch_file = clean_dep("//third_party:llvm-bazel.patch"), sha256 = LLVM_BAZEL_SHA256, strip_prefix = "llvm-bazel-{tag}/llvm-bazel".format(tag = LLVM_BAZEL_TAG), urls = LLVM_BAZEL_URLS, @@ -728,7 +728,7 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""): ) # TODO(mihaimaruseac): We no longer need these, but Copybara processes still need them before this CL lands (?) - LLVM_SHA256 = "8e73d287327fa5cf6cdc5c6242b8725589024c46ac0d9232aceb7dc41833e7ef" + LLVM_SHA256 = "a61665c77fd7f683d6f2be9661eea5e847acad31c80ee12a3e8d60312a5eb353" LLVM_URLS = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/llvm/llvm-project/archive/{commit}.tar.gz".format(commit = LLVM_COMMIT), "https://github.com/llvm/llvm-project/archive/{commit}.tar.gz".format(commit = LLVM_COMMIT),