tflite-micro/codegen/operators/BUILD
Advait Jain 1e7c710ca9
remove unused symbol from BUILD file. (#2190)
Warning shown by internal tools in http://cl/560228301.

BUG=cleanup
2023-08-28 04:07:34 +00:00

52 lines
889 B
Text

load("@rules_python//python:defs.bzl", "py_library")
package(
default_visibility = ["//:__subpackages__"],
licenses = ["notice"],
)
py_library(
name = "constants",
srcs = [
"constants.py",
],
deps = [
"//tensorflow/lite/python:schema_py",
],
)
py_library(
name = "factory",
srcs = [
"factory.py",
],
deps = [
":fully_connected",
":operator",
"//tensorflow/lite/python:schema_py",
],
)
py_library(
name = "fully_connected",
srcs = [
"fully_connected.py",
],
deps = [
":constants",
":operator",
"//codegen:utils",
"//tensorflow/lite/python:schema_py",
],
)
py_library(
name = "operator",
srcs = [
"operator.py",
],
deps = [
"//codegen:utils",
"//tensorflow/lite/python:schema_py",
],
)