From 3d5aaf94f9ec6623235133ec51e453e6e2ef899e Mon Sep 17 00:00:00 2001 From: Henry Tan Date: Tue, 30 Jun 2020 18:32:55 -0700 Subject: [PATCH] Convert `TpuCompilationCacheLookup` into a template class. PiperOrigin-RevId: 319140193 Change-Id: I9a2371da61593903277c7829ab9baf86dc74950d --- tensorflow/core/tpu/kernels/BUILD | 1 - tensorflow/core/tpu/kernels/tpu_compilation_cache_lookup.h | 1 - 2 files changed, 2 deletions(-) diff --git a/tensorflow/core/tpu/kernels/BUILD b/tensorflow/core/tpu/kernels/BUILD index 57be8a3f03f..59e6d648fbb 100644 --- a/tensorflow/core/tpu/kernels/BUILD +++ b/tensorflow/core/tpu/kernels/BUILD @@ -201,7 +201,6 @@ cc_library( "tpu_compilation_cache_lookup.h", ], deps = [ - ":tpu_compilation_cache_entry", ":tpu_compilation_cache_interface", ":tpu_compilation_cache_proto_cc", "//tensorflow/core/lib/core:refcount", diff --git a/tensorflow/core/tpu/kernels/tpu_compilation_cache_lookup.h b/tensorflow/core/tpu/kernels/tpu_compilation_cache_lookup.h index fb9c3a88407..0d1a53d31d2 100644 --- a/tensorflow/core/tpu/kernels/tpu_compilation_cache_lookup.h +++ b/tensorflow/core/tpu/kernels/tpu_compilation_cache_lookup.h @@ -18,7 +18,6 @@ limitations under the License. #include "tensorflow/core/lib/core/refcount.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/core/tpu/kernels/tpu_compilation_cache.pb.h" -#include "tensorflow/core/tpu/kernels/tpu_compilation_cache_entry.h" #include "tensorflow/core/tpu/kernels/tpu_compilation_cache_interface.h" namespace tensorflow {