The C types in lite/c/c_api_internal.h are not actually internal, rather, they are common types used throughout the C++ and C APIs. Rename the header accordingly. PiperOrigin-RevId: 282494601 Change-Id: Ia784f35724d774db256ffcbbcdc5bb00e6574417
20 lines
474 B
Python
20 lines
474 B
Python
package(
|
|
default_visibility = [
|
|
"//visibility:public",
|
|
],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
load("//tensorflow/lite:build_def.bzl", "tflite_copts")
|
|
|
|
cc_library(
|
|
name = "custom_delegates",
|
|
hdrs = ["custom_delegates.h"],
|
|
copts = tflite_copts(),
|
|
deps = [
|
|
"//tensorflow/core:tflite_portable_logging",
|
|
"//tensorflow/lite/c:common",
|
|
"//tensorflow/lite/tools/evaluation/stages:image_classification_stage",
|
|
],
|
|
)
|