blob: f3f6e7d80eee3b0fd8bd7afb388affb2fdb2ead6 [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "opt",
srcs = [
"conv.cc",
"depthwise_conv_s16.cc",
"elementwise_add_s16.cc",
"elementwise_add_s32.cc",
"elementwise_add_s8.cc",
"leaky_relu_s16.cc",
"leaky_relu_s8.cc",
"memcpy.cc",
],
hdrs = [
"opt.h",
"util.h",
],
target_compatible_with = ["@kelvin_sw//platforms/cpu:kelvin"],
deps = [
"//crt:crt",
"@tflite-micro//tensorflow/lite/kernels/internal:common",
],
alwayslink = True,
)