mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
* Work * Review update * Enabled tests * Bazel: Suppress warnings from external repositories * Fixed whl_test * Formatted * More format
25 lines
608 B
Text
25 lines
608 B
Text
load("@rules_python//python:defs.bzl", "py_library")
|
|
load("@tflm_pip_deps//:requirements.bzl", "requirement")
|
|
load("//third_party/flatbuffers:build_defs.bzl", "flatbuffer_py_library")
|
|
|
|
package(
|
|
default_visibility = [
|
|
"//visibility:public",
|
|
],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
flatbuffer_py_library(
|
|
name = "schema_py",
|
|
srcs = ["//tensorflow/compiler/mlir/lite/schema:schema.fbs"],
|
|
)
|
|
|
|
py_library(
|
|
name = "schema_util",
|
|
srcs = ["schema_util.py"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
requirement("flatbuffers"),
|
|
requirement("tensorflow"),
|
|
],
|
|
)
|