Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 628365237
  • Loading branch information
tensorflower-gardener committed Apr 27, 2024
1 parent d0fd4ae commit 62d2f86
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tensorflow/lite/tools/delegates/compatibility/common/BUILD
Expand Up @@ -11,9 +11,10 @@ cc_library(
srcs = ["online_helper_delegate.cc"],
hdrs = ["online_helper_delegate.h"],
deps = [
":delegate_compatibility_checker_base",
"//tensorflow/lite:kernel_api",
"//tensorflow/lite:minimal_logging",
"//tensorflow/lite/c:c_api_types",
"//tensorflow/lite/c:common",
"//tensorflow/lite/core/c:common",
"//tensorflow/lite/tools/delegates/compatibility/protos:compatibility_result_cc",
"@com_google_absl//absl/status",
Expand All @@ -29,11 +30,10 @@ cc_library(
deps = [
":delegate_compatibility_checker_util",
"//tensorflow/lite:framework_stable",
"//tensorflow/lite:kernel_api",
"//tensorflow/lite/core:framework_stable",
"//tensorflow/lite/core/c:c_api_types",
"//tensorflow/lite/core/c:common",
"//tensorflow/lite/kernels:builtin_ops",
"//tensorflow/lite/schema:schema_fbs",
"//tensorflow/lite/tools/delegates/compatibility/protos:compatibility_result_cc",
"//tensorflow/lite/tools/versioning:op_signature",
"@com_google_absl//absl/status",
Expand Down
Expand Up @@ -22,9 +22,11 @@ limitations under the License.
#include <vector>

#include "absl/status/status.h"
#include "tensorflow/lite/core/c/common.h"
#include "tensorflow/lite/interpreter.h"
#include "tensorflow/lite/model_builder.h"
#include "tensorflow/lite/schema/schema_generated.h"
#include "tensorflow/lite/tools/delegates/compatibility/common/delegate_compatibility_checker_util.h"
#include "tensorflow/lite/tools/delegates/compatibility/protos/compatibility_result.pb.h"
#include "tensorflow/lite/tools/versioning/op_signature.h"

namespace tflite {
namespace tools {
Expand Down
Expand Up @@ -21,6 +21,7 @@ limitations under the License.

#include "absl/status/status.h"
#include "tensorflow/lite/core/model_builder.h"
#include "tensorflow/lite/schema/schema_generated.h"
#include "tensorflow/lite/tools/delegates/compatibility/protos/compatibility_result.pb.h"
#include "tensorflow/lite/tools/versioning/op_signature.h"

Expand Down
Expand Up @@ -15,8 +15,12 @@ limitations under the License.

#include "tensorflow/lite/tools/delegates/compatibility/common/online_helper_delegate.h"

#include "tensorflow/lite/c/c_api_types.h"
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/context_util.h"
#include "tensorflow/lite/logger.h"
#include "tensorflow/lite/minimal_logging.h"
#include "tensorflow/lite/tools/delegates/compatibility/protos/compatibility_result.pb.h"

namespace tflite {
namespace tools {
Expand Down

0 comments on commit 62d2f86

Please sign in to comment.