STT-tensorflow/tensorflow/lite/tools/delegates/hexagon_delegate_provider.cc
Chao Mei 68beb052a5 Support the verbose mode in logging TFLite delegate-related parameter values.
PiperOrigin-RevId: 319892460
Change-Id: Ie1c393dc0a7fcccaccd4399115963de06ff50057
2020-07-06 18:05:38 -07:00

107 lines
3.7 KiB
C++

/* Copyright 2020 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 <string>
#include "tensorflow/lite/tools/delegates/delegate_provider.h"
#include "tensorflow/lite/tools/evaluation/utils.h"
#if (defined(ANDROID) || defined(__ANDROID__)) && \
(defined(__arm__) || defined(__aarch64__))
#define TFLITE_ENABLE_HEXAGON
#endif
#if defined(TFLITE_ENABLE_HEXAGON)
#include "tensorflow/lite/delegates/hexagon/hexagon_delegate.h"
#endif
namespace tflite {
namespace tools {
class HexagonDelegateProvider : public DelegateProvider {
public:
HexagonDelegateProvider() {
#if defined(TFLITE_ENABLE_HEXAGON)
default_params_.AddParam("use_hexagon", ToolParam::Create<bool>(false));
default_params_.AddParam("hexagon_lib_path",
ToolParam::Create<std::string>("/data/local/tmp"));
default_params_.AddParam("hexagon_profiling",
ToolParam::Create<bool>(false));
#endif
}
std::vector<Flag> CreateFlags(ToolParams* params) const final;
void LogParams(const ToolParams& params, bool verbose) const final;
TfLiteDelegatePtr CreateTfLiteDelegate(const ToolParams& params) const final;
std::string GetName() const final { return "Hexagon"; }
};
REGISTER_DELEGATE_PROVIDER(HexagonDelegateProvider);
std::vector<Flag> HexagonDelegateProvider::CreateFlags(
ToolParams* params) const {
#if defined(TFLITE_ENABLE_HEXAGON)
std::vector<Flag> flags = {
CreateFlag<bool>("use_hexagon", params, "Use Hexagon delegate"),
CreateFlag<std::string>(
"hexagon_lib_path", params,
"The library path for the underlying Hexagon libraries."),
CreateFlag<bool>("hexagon_profiling", params,
"Enables Hexagon profiling")};
return flags;
#else
return {};
#endif
}
void HexagonDelegateProvider::LogParams(const ToolParams& params,
bool verbose) const {
#if defined(TFLITE_ENABLE_HEXAGON)
LOG_TOOL_PARAM(params, bool, "use_hexagon", "Use Hexagon", verbose);
LOG_TOOL_PARAM(params, std::string, "hexagon_lib_path", "Hexagon lib path",
verbose);
LOG_TOOL_PARAM(params, bool, "hexagon_profiling", "Hexagon profiling",
verbose);
#endif
}
TfLiteDelegatePtr HexagonDelegateProvider::CreateTfLiteDelegate(
const ToolParams& params) const {
TfLiteDelegatePtr delegate(nullptr, [](TfLiteDelegate*) {});
#if defined(TFLITE_ENABLE_HEXAGON)
if (params.Get<bool>("use_hexagon")) {
TfLiteHexagonDelegateOptions options = {0};
options.print_graph_profile = params.Get<bool>("hexagon_profiling");
options.max_delegated_partitions =
params.Get<int>("max_delegated_partitions");
options.min_nodes_per_partition =
params.Get<int>("min_nodes_per_partition");
delegate = evaluation::CreateHexagonDelegate(
&options, params.Get<std::string>("hexagon_lib_path"));
if (!delegate.get()) {
TFLITE_LOG(WARN)
<< "Could not create Hexagon delegate: platform may not support "
"delegate or required libraries are missing";
}
}
#endif
return delegate;
}
} // namespace tools
} // namespace tflite