114 lines
3.2 KiB
Python
114 lines
3.2 KiB
Python
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
|
load("@rules_python//python:proto.bzl", "py_proto_library")
|
|
load("@xla//third_party/rules_python/python:py_library.bzl", "py_library")
|
|
load(
|
|
"//tensorflow:tensorflow.bzl",
|
|
"py_test",
|
|
"tf_cc_test",
|
|
)
|
|
load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
|
|
load(
|
|
"//tensorflow/core/platform:build_config.bzl",
|
|
"tf_proto_library",
|
|
)
|
|
|
|
package(
|
|
# copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"],
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
tf_proto_library(
|
|
name = "toco_conversion_log_proto",
|
|
srcs = ["toco_conversion_log.proto"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "conversion_log_util",
|
|
srcs = ["conversion_log_util.cc"],
|
|
hdrs = ["conversion_log_util.h"],
|
|
compatible_with = get_compatible_with_portable(),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":toco_conversion_log_proto_cc",
|
|
"//tensorflow/core:protos_all_cc",
|
|
"//tensorflow/lite:version",
|
|
"//tensorflow/lite/toco:model",
|
|
"//tensorflow/lite/toco:tooling_util",
|
|
"//tensorflow/lite/toco/tflite:export",
|
|
"//tensorflow/lite/toco/tflite:operator",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/time",
|
|
],
|
|
)
|
|
|
|
tf_cc_test(
|
|
name = "conversion_log_util_test",
|
|
srcs = ["conversion_log_util_test.cc"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":conversion_log_util",
|
|
"//tensorflow/core:ops",
|
|
"//tensorflow/core:protos_all_cc",
|
|
"//tensorflow/lite/toco:model",
|
|
"//tensorflow/lite/toco:model_flags_proto_cc",
|
|
"@com_google_absl//absl/memory",
|
|
"@com_google_googletest//:gtest",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "html_template",
|
|
srcs = [
|
|
"template.html",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "gen_html",
|
|
srcs = ["gen_html.py"],
|
|
data = [
|
|
"html_template",
|
|
],
|
|
strict_deps = True,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":toco_conversion_log_proto_py",
|
|
"//tensorflow/python/lib/io:file_io",
|
|
"//tensorflow/python/platform:resource_loader",
|
|
],
|
|
)
|
|
|
|
py_test(
|
|
name = "gen_html_test",
|
|
srcs = ["gen_html_test.py"],
|
|
data = [
|
|
":template.html",
|
|
"//tensorflow/lite/toco/logging/testdata:generated.html",
|
|
"//tensorflow/lite/toco/logging/testdata:toco_log_after.pb",
|
|
"//tensorflow/lite/toco/logging/testdata:toco_log_before.pb",
|
|
"//tensorflow/lite/toco/logging/testdata:toco_tf_graph.dot",
|
|
"//tensorflow/lite/toco/logging/testdata:toco_tflite_graph.dot",
|
|
],
|
|
strict_deps = True,
|
|
deps = [
|
|
":gen_html",
|
|
":toco_conversion_log_proto_py",
|
|
#internal proto upb dep
|
|
"//tensorflow/python/framework:test_lib",
|
|
"//tensorflow/python/lib/io:file_io",
|
|
"//tensorflow/python/platform:client_testlib",
|
|
"//tensorflow/python/platform:resource_loader",
|
|
],
|
|
)
|
|
|
|
# copybara:uncomment_begin(google-only)
|
|
# py_proto_library(
|
|
# name = "toco_conversion_log_proto_py",
|
|
# visibility = ["//visibility:public"],
|
|
# deps = [":toco_conversion_log_proto"],
|
|
# )
|
|
# copybara:uncomment_end
|