* testing library visible to all of micro but nothing else. * moved benchmark.h to micro/benchmarks so that it can have private visibility. PiperOrigin-RevId: 315729400 Change-Id: I695b9bb749de8748e9ac929ff612d6a9e7d33b3d
73 lines
2.8 KiB
C++
73 lines
2.8 KiB
C++
/* 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.
|
|
==============================================================================*/
|
|
|
|
#include "tensorflow/lite/c/common.h"
|
|
#include "tensorflow/lite/micro/benchmarks/micro_benchmark.h"
|
|
#include "tensorflow/lite/micro/examples/person_detection/model_settings.h"
|
|
#include "tensorflow/lite/micro/examples/person_detection/no_person_image_data.h"
|
|
#include "tensorflow/lite/micro/examples/person_detection/person_detect_model_data.h"
|
|
#include "tensorflow/lite/micro/examples/person_detection/person_image_data.h"
|
|
#include "tensorflow/lite/micro/kernels/micro_ops.h"
|
|
#include "tensorflow/lite/micro/micro_error_reporter.h"
|
|
#include "tensorflow/lite/micro/micro_interpreter.h"
|
|
#include "tensorflow/lite/micro/micro_mutable_op_resolver.h"
|
|
#include "tensorflow/lite/micro/micro_utils.h"
|
|
#include "tensorflow/lite/schema/schema_generated.h"
|
|
#include "tensorflow/lite/version.h"
|
|
|
|
// Create an area of memory to use for input, output, and intermediate arrays.
|
|
constexpr int tensor_arena_size = 73 * 1024;
|
|
uint8_t tensor_arena[tensor_arena_size];
|
|
|
|
/*
|
|
* Person Detection benchmark. Evaluates runtime performance of the visual
|
|
* wakewords person detection model. This is the same model found in
|
|
* exmaples/person_detection.
|
|
*/
|
|
|
|
namespace {
|
|
|
|
// Create an area of memory to use for input, output, and intermediate arrays.
|
|
constexpr int tensor_arena_size = 95 * 1024;
|
|
uint8_t tensor_arena[tensor_arena_size];
|
|
|
|
// NOLINTNEXTLINE
|
|
MicroBenchmarkRunner<uint8_t> runner(g_person_detect_model_data, tensor_arena,
|
|
tensor_arena_size, 0);
|
|
|
|
void PersonDetectionTenIerationsWithPerson() {
|
|
// TODO(b/152644476): Add a way to run more than a single deterministic input.
|
|
for (int i = 0; i < 10; i++) {
|
|
runner.RunSingleIterationCustomInput(g_person_data);
|
|
}
|
|
}
|
|
|
|
void PersonDetectionTenIerationsWithoutPerson() {
|
|
// TODO(b/152644476): Add a way to run more than a single deterministic input.
|
|
for (int i = 0; i < 10; i++) {
|
|
runner.RunSingleIterationCustomInput(g_no_person_data);
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
TF_LITE_MICRO_BENCHMARKS_BEGIN
|
|
|
|
TF_LITE_MICRO_BENCHMARK(runner.RunSingleIterationCustomInput(g_person_data));
|
|
TF_LITE_MICRO_BENCHMARK(PersonDetectionTenIerationsWithPerson());
|
|
TF_LITE_MICRO_BENCHMARK(PersonDetectionTenIerationsWithoutPerson());
|
|
|
|
TF_LITE_MICRO_BENCHMARKS_END
|