ATrace profiler is included in Android library always. To enable ATrace profiler when running app, users need to set 'debug.tflite.trace' property. $ adb shell setprop debug.tflite.trace 1 PiperOrigin-RevId: 328684900 Change-Id: I3fa9511a58e9055c3c4d371f904daf8c530abcf4
200 lines
4.5 KiB
Python
200 lines
4.5 KiB
Python
load("//tensorflow:tensorflow.bzl", "if_not_windows")
|
|
load("//tensorflow:tensorflow.bzl", "get_compatible_with_portable")
|
|
load("//tensorflow/lite:build_def.bzl", "tflite_copts")
|
|
load("//tensorflow/lite:special_rules.bzl", "tflite_portable_test_suite_combined")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
common_copts = tflite_copts() + if_not_windows(["-Wall"])
|
|
|
|
cc_library(
|
|
name = "profiler",
|
|
hdrs = [
|
|
"buffered_profiler.h",
|
|
"noop_profiler.h",
|
|
"profiler.h",
|
|
],
|
|
copts = common_copts,
|
|
deps = [
|
|
":profile_buffer",
|
|
"//tensorflow/lite/core/api",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "profiler_test",
|
|
srcs = ["profiler_test.cc"],
|
|
deps = [
|
|
":profiler",
|
|
":test_main",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "atrace_profiler",
|
|
srcs = ["atrace_profiler.cc"],
|
|
hdrs = ["atrace_profiler.h"],
|
|
copts = common_copts,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//tensorflow/lite/core/api",
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "atrace_profiler_test",
|
|
srcs = ["atrace_profiler_test.cc"],
|
|
deps = [
|
|
":atrace_profiler",
|
|
":test_main",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "platform_profiler",
|
|
srcs = ["platform_profiler.cc"],
|
|
hdrs = ["platform_profiler.h"],
|
|
compatible_with = get_compatible_with_portable(),
|
|
copts = common_copts,
|
|
deps = [
|
|
"//tensorflow/lite/core/api",
|
|
] + select({
|
|
"//tensorflow:android": [":atrace_profiler"],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|
|
|
|
cc_library(
|
|
name = "profile_buffer",
|
|
hdrs = ["profile_buffer.h"],
|
|
copts = common_copts,
|
|
deps = [
|
|
":memory_info",
|
|
":time",
|
|
"//tensorflow/lite/core/api",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "profile_buffer_test",
|
|
srcs = ["profile_buffer_test.cc"],
|
|
deps = [
|
|
":profile_buffer",
|
|
":test_main",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "time",
|
|
srcs = ["time.cc"],
|
|
hdrs = ["time.h"],
|
|
copts = common_copts,
|
|
)
|
|
|
|
cc_test(
|
|
name = "time_test",
|
|
srcs = ["time_test.cc"],
|
|
deps = [
|
|
":test_main",
|
|
":time",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "memory_info",
|
|
srcs = ["memory_info.cc"],
|
|
hdrs = ["memory_info.h"],
|
|
copts = common_copts,
|
|
)
|
|
|
|
cc_test(
|
|
name = "memory_info_test",
|
|
srcs = ["memory_info_test.cc"],
|
|
tags = [
|
|
# Some low-level checks, like heap size check, may break in asan, msan
|
|
# and tsan. So, disable such tests.
|
|
"noasan",
|
|
"nomsan",
|
|
"notsan",
|
|
# TODO(b/166227284): Fix the test for Android.
|
|
"tflite_not_portable_android",
|
|
],
|
|
deps = [
|
|
":memory_info",
|
|
":test_main",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "profile_summary_formatter",
|
|
srcs = ["profile_summary_formatter.cc"],
|
|
hdrs = ["profile_summary_formatter.h"],
|
|
copts = common_copts,
|
|
deps = [
|
|
"//tensorflow/core/util:stats_calculator_portable",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "profile_summary_formatter_test",
|
|
srcs = ["profile_summary_formatter_test.cc"],
|
|
deps = [
|
|
":profile_summary_formatter",
|
|
":test_main",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "profile_summarizer",
|
|
srcs = ["profile_summarizer.cc"],
|
|
hdrs = ["profile_summarizer.h"],
|
|
copts = common_copts,
|
|
deps = [
|
|
":memory_info",
|
|
":profile_buffer",
|
|
":profile_summary_formatter",
|
|
"//tensorflow/core/util:stats_calculator_portable",
|
|
"//tensorflow/lite:framework",
|
|
"//tensorflow/lite/schema:schema_fbs",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "profile_summarizer_test",
|
|
srcs = ["profile_summarizer_test.cc"],
|
|
deps = [
|
|
":profile_summarizer",
|
|
":profiler",
|
|
":test_main",
|
|
"//tensorflow/lite:framework",
|
|
"//tensorflow/lite:schema_fbs_version",
|
|
"//tensorflow/lite/kernels:kernel_util",
|
|
"//tensorflow/lite/kernels:subgraph_test_util",
|
|
"//tensorflow/lite/kernels:test_util",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "test_main",
|
|
testonly = 1,
|
|
srcs = ["test_main.cc"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//tensorflow/lite/testing:util",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|
|
|
|
tflite_portable_test_suite_combined(combine_conditions = {"deps": [":test_main"]})
|