From d5e664d1948510d33a021f48a454d7131095ebcb Mon Sep 17 00:00:00 2001 From: Eugene Zhulenev Date: Tue, 17 Oct 2023 20:18:37 -0700 Subject: [PATCH] [tensorflow] Update TFRT dependency PiperOrigin-RevId: 574338996 --- third_party/tf_runtime/workspace.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third_party/tf_runtime/workspace.bzl b/third_party/tf_runtime/workspace.bzl index 90cc1e5d2..44d692c03 100644 --- a/third_party/tf_runtime/workspace.bzl +++ b/third_party/tf_runtime/workspace.bzl @@ -6,8 +6,8 @@ def repo(): """Imports TFRT.""" # Attention: tools parse and update these lines. - TFRT_COMMIT = "70637966e2ec9afccc2cf4d51ed2391172b1b9c5" - TFRT_SHA256 = "e3c5911cd4a70b01de980479b3c5aa45235240bf48a07cd9c1016cd140917fd3" + TFRT_COMMIT = "6d71fa4816fafb69ee1caac955b2b3844290d577" + TFRT_SHA256 = "37da0c18b558e85e8e9c9e482c217221762679265245893ab87c136df7265446" tf_http_archive( name = "tf_runtime", @@ -16,5 +16,5 @@ def repo(): urls = tf_mirror_urls("https://github.com/tensorflow/runtime/archive/{commit}.tar.gz".format(commit = TFRT_COMMIT)), # A patch file can be provided for atomic commits to both TF and TFRT. # The job that bumps the TFRT_COMMIT also resets patch_file to 'None'. - patch_file = ["//third_party/tf_runtime:tf_runtime_clangcl.patch"], + patch_file = None, )