aboutsummaryrefslogtreecommitdiff
path: root/Utils.cpp
diff options
context:
space:
mode:
authorkevmay01 <kevin.may@arm.com>2018-08-30 12:34:39 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-09-18 12:40:38 +0100
commitbc5f784d34a5315748b56cecb4674f4e546da2cd (patch)
tree70f300c7932301802cc8937531b5cf189e3bd536 /Utils.cpp
parent69558df6f149647888267caabf72de6b05fb6d53 (diff)
downloadandroid-nn-driver-bc5f784d34a5315748b56cecb4674f4e546da2cd.tar.gz
IVGCVSW-1770: Refactor ModelToINetworkConverter to allow conversion of HAL1.1 operators
Change-Id: I9b10f0a9c88344df108b2325c0233f9660fa6b7c
Diffstat (limited to 'Utils.cpp')
-rw-r--r--Utils.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/Utils.cpp b/Utils.cpp
index 38a8cd31..726e130f 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -112,37 +112,6 @@ std::string GetOperandSummary(const Operand& operand)
toString(operand.type);
}
-std::string GetModelSummary(const neuralnetworks::V1_0::Model& model)
-{
- std::stringstream result;
-
- result << model.inputIndexes.size() << " input(s), " << model.operations.size() << " operation(s), " <<
- model.outputIndexes.size() << " output(s), " << model.operands.size() << " operand(s)" << std::endl;
-
- result << "Inputs: ";
- for (uint32_t i = 0; i < model.inputIndexes.size(); i++)
- {
- result << GetOperandSummary(model.operands[model.inputIndexes[i]]) << ", ";
- }
- result << std::endl;
-
- result << "Operations: ";
- for (uint32_t i = 0; i < model.operations.size(); i++)
- {
- result << toString(model.operations[i].type).c_str() << ", ";
- }
- result << std::endl;
-
- result << "Outputs: ";
- for (uint32_t i = 0; i < model.outputIndexes.size(); i++)
- {
- result << GetOperandSummary(model.operands[model.outputIndexes[i]]) << ", ";
- }
- result << std::endl;
-
- return result.str();
-}
-
using DumpElementFunction = void (*)(const armnn::ConstTensor& tensor,
unsigned int elementIndex,
std::ofstream& fileStream);