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
26 lines
599 B
Python
26 lines
599 B
Python
package(
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
cc_library(
|
|
name = "resource",
|
|
srcs = [
|
|
"resource_variable.cc",
|
|
"static_hashtable.cc",
|
|
],
|
|
hdrs = [
|
|
"lookup_interfaces.h",
|
|
"lookup_util.h",
|
|
"resource_base.h",
|
|
"resource_variable.h",
|
|
"static_hashtable.h",
|
|
],
|
|
deps = [
|
|
"//tensorflow/lite:string_util",
|
|
"//tensorflow/lite/c:common",
|
|
"//tensorflow/lite/kernels/internal:compatibility",
|
|
"//tensorflow/lite/kernels/internal:tensor",
|
|
],
|
|
)
|