109 lines
3.2 KiB
Python
109 lines
3.2 KiB
Python
# Copyright 2019 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
|
|
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_linkopts")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
exports_files(glob([
|
|
"testdata/**",
|
|
]))
|
|
|
|
cc_library(
|
|
name = "evaluation_stage",
|
|
hdrs = ["evaluation_stage.h"],
|
|
copts = tflite_copts(),
|
|
deps = [
|
|
"//tensorflow/lite/c:common",
|
|
"//tensorflow/lite/tools/evaluation/proto:evaluation_config_cc_proto",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "utils",
|
|
srcs = ["utils.cc"],
|
|
hdrs = ["utils.h"],
|
|
copts = tflite_copts(),
|
|
deps = [
|
|
"//tensorflow/lite/c:common",
|
|
] + select({
|
|
"//tensorflow:android": [
|
|
"//tensorflow/lite/delegates/gpu:delegate",
|
|
"//tensorflow/lite/delegates/nnapi:nnapi_delegate",
|
|
],
|
|
"//conditions:default": [],
|
|
}) + select({
|
|
"//tensorflow:android_arm": [
|
|
"//tensorflow/lite/delegates/hexagon:hexagon_delegate",
|
|
],
|
|
"//tensorflow:android_arm64": [
|
|
"//tensorflow/lite/delegates/hexagon:hexagon_delegate",
|
|
],
|
|
"//conditions:default": [],
|
|
}) + select({
|
|
"//tensorflow:fuchsia": [],
|
|
"//conditions:default": [
|
|
"//tensorflow/lite/delegates/xnnpack:xnnpack_delegate",
|
|
],
|
|
}),
|
|
)
|
|
|
|
cc_library(
|
|
name = "evaluation_delegate_provider",
|
|
srcs = ["evaluation_delegate_provider.cc"],
|
|
hdrs = ["evaluation_delegate_provider.h"],
|
|
copts = tflite_copts(),
|
|
deps = [
|
|
":utils",
|
|
"//tensorflow/lite/tools:command_line_flags",
|
|
"//tensorflow/lite/tools:logging",
|
|
"//tensorflow/lite/tools:tool_params",
|
|
"//tensorflow/lite/tools/delegates:delegate_provider_hdr",
|
|
"//tensorflow/lite/tools/delegates:tflite_execution_providers",
|
|
"//tensorflow/lite/tools/evaluation/proto:evaluation_stages_cc_proto",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "utils_test",
|
|
srcs = ["utils_test.cc"],
|
|
data = [
|
|
"testdata/empty.txt",
|
|
"testdata/labels.txt",
|
|
],
|
|
linkopts = tflite_linkopts(),
|
|
linkstatic = 1,
|
|
deps = [
|
|
":utils",
|
|
"//tensorflow/lite:context",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "evaluation_delegate_provider_test",
|
|
srcs = ["evaluation_delegate_provider_test.cc"],
|
|
linkopts = tflite_linkopts(),
|
|
deps = [
|
|
":evaluation_delegate_provider",
|
|
"//tensorflow/lite/tools:tool_params",
|
|
"//tensorflow/lite/tools/evaluation/proto:evaluation_stages_cc_proto",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|