blob: dbc0419191ed60d0157bb08b68b1ec5791dee5b6 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
Sadik Armagana9c2ce12020-07-14 10:02:22 +01002// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
Matteo Martincighc601aa62019-10-29 15:03:22 +00005
telsoa014fcda012018-03-09 14:13:49 +00006#pragma once
Matteo Martincighc601aa62019-10-29 15:03:22 +00007
David Beckf0b48452018-10-19 15:20:56 +01008#include <armnn/ArmNN.hpp>
alered01a7227ac2020-05-07 14:58:29 +01009#include <armnn/Logging.hpp>
10#include <armnn/utility/Timer.hpp>
Matteo Martincighc601aa62019-10-29 15:03:22 +000011#include <armnn/BackendRegistry.hpp>
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +010012#include <armnn/utility/Assert.hpp>
Matthew Sloyan80c6b142020-09-08 12:00:32 +010013#include <armnn/utility/NumericCast.hpp>
telsoa01c577f2c2018-08-31 09:22:23 +010014
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +000015#if defined(ARMNN_SERIALIZER)
Derek Lamberti0028d1b2019-02-20 13:57:42 +000016#include "armnnDeserializer/IDeserializer.hpp"
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +000017#endif
telsoa01c577f2c2018-08-31 09:22:23 +010018#if defined(ARMNN_TF_LITE_PARSER)
David Beckf0b48452018-10-19 15:20:56 +010019#include <armnnTfLiteParser/ITfLiteParser.hpp>
telsoa01c577f2c2018-08-31 09:22:23 +010020#endif
telsoa01c577f2c2018-08-31 09:22:23 +010021#if defined(ARMNN_ONNX_PARSER)
David Beckf0b48452018-10-19 15:20:56 +010022#include <armnnOnnxParser/IOnnxParser.hpp>
telsoa01c577f2c2018-08-31 09:22:23 +010023#endif
telsoa014fcda012018-03-09 14:13:49 +000024
Francis Murtagh532a29d2020-06-29 11:50:01 +010025#include <Filesystem.hpp>
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +000026#include <HeapProfiling.hpp>
Jim Flynn2fd61002019-05-03 12:54:26 +010027#include <TensorIOUtils.hpp>
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +000028
David Monahana8837bf2020-04-16 10:01:56 +010029#include "armnn/utility/StringUtils.hpp"
surmeh013537c2c2018-05-18 16:31:43 +010030#include <boost/exception/exception.hpp>
31#include <boost/exception/diagnostic_information.hpp>
James Wardc89829f2020-10-12 14:17:36 +010032#include <cxxopts/cxxopts.hpp>
33#include "CxxoptsUtils.hpp"
James Ward08f40162020-09-07 16:45:07 +010034#include <fmt/format.h>
James Ward6d9f5c52020-09-28 11:56:35 +010035#include <mapbox/variant.hpp>
telsoa014fcda012018-03-09 14:13:49 +000036
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +000037#include <algorithm>
38#include <iterator>
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +010039#include <fstream>
telsoa014fcda012018-03-09 14:13:49 +000040#include <map>
41#include <string>
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +000042#include <vector>
telsoa01c577f2c2018-08-31 09:22:23 +010043#include <type_traits>
44
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +010045namespace
46{
47
48inline bool CheckRequestedBackendsAreValid(const std::vector<armnn::BackendId>& backendIds,
49 armnn::Optional<std::string&> invalidBackendIds = armnn::EmptyOptional())
50{
51 if (backendIds.empty())
52 {
53 return false;
54 }
55
56 armnn::BackendIdSet validBackendIds = armnn::BackendRegistryInstance().GetBackendIds();
57
58 bool allValid = true;
59 for (const auto& backendId : backendIds)
60 {
61 if (std::find(validBackendIds.begin(), validBackendIds.end(), backendId) == validBackendIds.end())
62 {
63 allValid = false;
64 if (invalidBackendIds)
65 {
66 if (!invalidBackendIds.value().empty())
67 {
68 invalidBackendIds.value() += ", ";
69 }
70 invalidBackendIds.value() += backendId;
71 }
72 }
73 }
74 return allValid;
75}
76
77} // anonymous namespace
78
telsoa01c577f2c2018-08-31 09:22:23 +010079namespace InferenceModelInternal
80{
Jim Flynnb4d7eae2019-05-01 14:44:27 +010081using BindingPointInfo = armnn::BindingPointInfo;
telsoa01c577f2c2018-08-31 09:22:23 +010082
83using QuantizationParams = std::pair<float,int32_t>;
84
85struct Params
86{
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +000087 std::string m_ModelPath;
88 std::vector<std::string> m_InputBindings;
89 std::vector<armnn::TensorShape> m_InputShapes;
90 std::vector<std::string> m_OutputBindings;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +000091 std::vector<armnn::BackendId> m_ComputeDevices;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +010092 std::string m_DynamicBackendsPath;
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +000093 size_t m_SubgraphId;
94 bool m_IsModelBinary;
95 bool m_VisualizePostOptimizationModel;
96 bool m_EnableFp16TurboMode;
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +000097 bool m_EnableBf16TurboMode;
Matthew Jackson54658b92019-08-27 15:35:59 +010098 bool m_PrintIntermediateLayers;
Derek Lamberti132563c2019-12-02 16:06:40 +000099 bool m_ParseUnsupported;
Sadik Armagana9c2ce12020-07-14 10:02:22 +0100100 bool m_InferOutputShape;
Sadik Armagana25886e2020-09-15 17:17:08 +0100101 bool m_EnableFastMath;
telsoa01c577f2c2018-08-31 09:22:23 +0100102
103 Params()
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100104 : m_ComputeDevices{}
telsoa01c577f2c2018-08-31 09:22:23 +0100105 , m_SubgraphId(0)
106 , m_IsModelBinary(true)
107 , m_VisualizePostOptimizationModel(false)
108 , m_EnableFp16TurboMode(false)
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +0000109 , m_EnableBf16TurboMode(false)
Matthew Jackson54658b92019-08-27 15:35:59 +0100110 , m_PrintIntermediateLayers(false)
Derek Lamberti132563c2019-12-02 16:06:40 +0000111 , m_ParseUnsupported(false)
Sadik Armagana9c2ce12020-07-14 10:02:22 +0100112 , m_InferOutputShape(false)
Sadik Armagana25886e2020-09-15 17:17:08 +0100113 , m_EnableFastMath(false)
telsoa01c577f2c2018-08-31 09:22:23 +0100114 {}
115};
116
117} // namespace InferenceModelInternal
118
119template <typename IParser>
120struct CreateNetworkImpl
121{
122public:
123 using Params = InferenceModelInternal::Params;
telsoa01c577f2c2018-08-31 09:22:23 +0100124
125 static armnn::INetworkPtr Create(const Params& params,
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100126 std::vector<armnn::BindingPointInfo>& inputBindings,
127 std::vector<armnn::BindingPointInfo>& outputBindings)
telsoa01c577f2c2018-08-31 09:22:23 +0100128 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000129 const std::string& modelPath = params.m_ModelPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100130
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000131 // Create a network from a file on disk
132 auto parser(IParser::Create());
telsoa01c577f2c2018-08-31 09:22:23 +0100133
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000134 std::map<std::string, armnn::TensorShape> inputShapes;
135 if (!params.m_InputShapes.empty())
136 {
137 const size_t numInputShapes = params.m_InputShapes.size();
138 const size_t numInputBindings = params.m_InputBindings.size();
139 if (numInputShapes < numInputBindings)
140 {
James Ward08f40162020-09-07 16:45:07 +0100141 throw armnn::Exception(fmt::format(
142 "Not every input has its tensor shape specified: expected={0}, got={1}",
143 numInputBindings, numInputShapes));
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000144 }
telsoa01c577f2c2018-08-31 09:22:23 +0100145
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000146 for (size_t i = 0; i < numInputShapes; i++)
147 {
148 inputShapes[params.m_InputBindings[i]] = params.m_InputShapes[i];
149 }
150 }
telsoa01c577f2c2018-08-31 09:22:23 +0100151
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000152 std::vector<std::string> requestedOutputs = params.m_OutputBindings;
153 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
154
155 {
156 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
157 // Handle text and binary input differently by calling the corresponding parser function
158 network = (params.m_IsModelBinary ?
159 parser->CreateNetworkFromBinaryFile(modelPath.c_str(), inputShapes, requestedOutputs) :
160 parser->CreateNetworkFromTextFile(modelPath.c_str(), inputShapes, requestedOutputs));
161 }
162
163 for (const std::string& inputLayerName : params.m_InputBindings)
164 {
165 inputBindings.push_back(parser->GetNetworkInputBindingInfo(inputLayerName));
166 }
167
168 for (const std::string& outputLayerName : params.m_OutputBindings)
169 {
170 outputBindings.push_back(parser->GetNetworkOutputBindingInfo(outputLayerName));
171 }
172
173 return network;
telsoa01c577f2c2018-08-31 09:22:23 +0100174 }
175};
176
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000177#if defined(ARMNN_SERIALIZER)
178template <>
Derek Lamberti0028d1b2019-02-20 13:57:42 +0000179struct CreateNetworkImpl<armnnDeserializer::IDeserializer>
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000180{
181public:
Derek Lamberti0028d1b2019-02-20 13:57:42 +0000182 using IParser = armnnDeserializer::IDeserializer;
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000183 using Params = InferenceModelInternal::Params;
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000184
185 static armnn::INetworkPtr Create(const Params& params,
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100186 std::vector<armnn::BindingPointInfo>& inputBindings,
187 std::vector<armnn::BindingPointInfo>& outputBindings)
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000188 {
189 auto parser(IParser::Create());
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100190 ARMNN_ASSERT(parser);
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000191
192 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
193
194 {
195 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
Derek Lamberti2b183fb2019-02-18 16:36:57 +0000196
Francis Murtagh532a29d2020-06-29 11:50:01 +0100197 std::error_code errorCode;
198 fs::path pathToFile(params.m_ModelPath);
199 if (!fs::exists(pathToFile, errorCode))
Derek Lamberti2b183fb2019-02-18 16:36:57 +0000200 {
James Ward08f40162020-09-07 16:45:07 +0100201 throw armnn::FileNotFoundException(fmt::format("Cannot find the file ({0}) errorCode: {1} {2}",
202 params.m_ModelPath,
203 errorCode.message(),
Derek Lamberti2b183fb2019-02-18 16:36:57 +0000204 CHECK_LOCATION().AsString()));
205 }
206 std::ifstream file(params.m_ModelPath, std::ios::binary);
207
208 network = parser->CreateNetworkFromBinary(file);
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000209 }
210
Matthew Sloyan80c6b142020-09-08 12:00:32 +0100211 unsigned int subgraphId = armnn::numeric_cast<unsigned int>(params.m_SubgraphId);
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000212
213 for (const std::string& inputLayerName : params.m_InputBindings)
214 {
Derek Lamberti8ddae332019-02-21 16:29:43 +0000215 armnnDeserializer::BindingPointInfo inputBinding =
Derek Lambertiff05cc52019-04-26 13:05:17 +0100216 parser->GetNetworkInputBindingInfo(subgraphId, inputLayerName);
Derek Lamberti8ddae332019-02-21 16:29:43 +0000217 inputBindings.push_back(std::make_pair(inputBinding.m_BindingId, inputBinding.m_TensorInfo));
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000218 }
219
220 for (const std::string& outputLayerName : params.m_OutputBindings)
221 {
Derek Lamberti8ddae332019-02-21 16:29:43 +0000222 armnnDeserializer::BindingPointInfo outputBinding =
Derek Lambertiff05cc52019-04-26 13:05:17 +0100223 parser->GetNetworkOutputBindingInfo(subgraphId, outputLayerName);
Derek Lamberti8ddae332019-02-21 16:29:43 +0000224 outputBindings.push_back(std::make_pair(outputBinding.m_BindingId, outputBinding.m_TensorInfo));
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000225 }
226
227 return network;
228 }
229};
230#endif
231
telsoa01c577f2c2018-08-31 09:22:23 +0100232#if defined(ARMNN_TF_LITE_PARSER)
233template <>
234struct CreateNetworkImpl<armnnTfLiteParser::ITfLiteParser>
235{
236public:
237 using IParser = armnnTfLiteParser::ITfLiteParser;
238 using Params = InferenceModelInternal::Params;
telsoa01c577f2c2018-08-31 09:22:23 +0100239
240 static armnn::INetworkPtr Create(const Params& params,
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100241 std::vector<armnn::BindingPointInfo>& inputBindings,
242 std::vector<armnn::BindingPointInfo>& outputBindings)
telsoa01c577f2c2018-08-31 09:22:23 +0100243 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000244 const std::string& modelPath = params.m_ModelPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100245
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000246 // Create a network from a file on disk
Derek Lamberti132563c2019-12-02 16:06:40 +0000247 IParser::TfLiteParserOptions options;
248 options.m_StandInLayerForUnsupported = params.m_ParseUnsupported;
Sadik Armagana9c2ce12020-07-14 10:02:22 +0100249 options.m_InferAndValidate = params.m_InferOutputShape;
Derek Lamberti132563c2019-12-02 16:06:40 +0000250 auto parser(IParser::Create(options));
telsoa01c577f2c2018-08-31 09:22:23 +0100251
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000252 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
telsoa01c577f2c2018-08-31 09:22:23 +0100253
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000254 {
255 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
256 network = parser->CreateNetworkFromBinaryFile(modelPath.c_str());
257 }
telsoa01c577f2c2018-08-31 09:22:23 +0100258
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000259 for (const std::string& inputLayerName : params.m_InputBindings)
260 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100261 armnn::BindingPointInfo inputBinding =
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000262 parser->GetNetworkInputBindingInfo(params.m_SubgraphId, inputLayerName);
263 inputBindings.push_back(inputBinding);
264 }
265
266 for (const std::string& outputLayerName : params.m_OutputBindings)
267 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100268 armnn::BindingPointInfo outputBinding =
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000269 parser->GetNetworkOutputBindingInfo(params.m_SubgraphId, outputLayerName);
270 outputBindings.push_back(outputBinding);
271 }
272
273 return network;
telsoa01c577f2c2018-08-31 09:22:23 +0100274 }
275};
276#endif
277
278#if defined(ARMNN_ONNX_PARSER)
279template <>
280struct CreateNetworkImpl<armnnOnnxParser::IOnnxParser>
281{
282public:
283 using IParser = armnnOnnxParser::IOnnxParser;
284 using Params = InferenceModelInternal::Params;
285 using BindingPointInfo = InferenceModelInternal::BindingPointInfo;
286
287 static armnn::INetworkPtr Create(const Params& params,
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000288 std::vector<BindingPointInfo>& inputBindings,
289 std::vector<BindingPointInfo>& outputBindings)
telsoa01c577f2c2018-08-31 09:22:23 +0100290 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000291 const std::string& modelPath = params.m_ModelPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100292
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000293 // Create a network from a file on disk
294 auto parser(IParser::Create());
telsoa01c577f2c2018-08-31 09:22:23 +0100295
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000296 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
telsoa01c577f2c2018-08-31 09:22:23 +0100297
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000298 {
299 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
300 network = (params.m_IsModelBinary ?
301 parser->CreateNetworkFromBinaryFile(modelPath.c_str()) :
302 parser->CreateNetworkFromTextFile(modelPath.c_str()));
303 }
telsoa01c577f2c2018-08-31 09:22:23 +0100304
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000305 for (const std::string& inputLayerName : params.m_InputBindings)
306 {
307 BindingPointInfo inputBinding = parser->GetNetworkInputBindingInfo(inputLayerName);
308 inputBindings.push_back(inputBinding);
309 }
310
311 for (const std::string& outputLayerName : params.m_OutputBindings)
312 {
313 BindingPointInfo outputBinding = parser->GetNetworkOutputBindingInfo(outputLayerName);
314 outputBindings.push_back(outputBinding);
315 }
316
317 return network;
telsoa01c577f2c2018-08-31 09:22:23 +0100318 }
319};
320#endif
telsoa014fcda012018-03-09 14:13:49 +0000321
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000322
telsoa014fcda012018-03-09 14:13:49 +0000323
324template <typename IParser, typename TDataType>
325class InferenceModel
326{
327public:
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000328 using DataType = TDataType;
329 using Params = InferenceModelInternal::Params;
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000330 using QuantizationParams = InferenceModelInternal::QuantizationParams;
James Ward6d9f5c52020-09-28 11:56:35 +0100331 using TContainer = mapbox::util::variant<std::vector<float>, std::vector<int>, std::vector<unsigned char>>;
telsoa014fcda012018-03-09 14:13:49 +0000332
333 struct CommandLineOptions
334 {
335 std::string m_ModelDir;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000336 std::vector<std::string> m_ComputeDevices;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100337 std::string m_DynamicBackendsPath;
surmeh013537c2c2018-05-18 16:31:43 +0100338 bool m_VisualizePostOptimizationModel;
telsoa01c577f2c2018-08-31 09:22:23 +0100339 bool m_EnableFp16TurboMode;
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +0000340 bool m_EnableBf16TurboMode;
Pablo Tello507f39d2019-04-15 15:44:39 +0100341 std::string m_Labels;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000342
343 std::vector<armnn::BackendId> GetComputeDevicesAsBackendIds()
344 {
345 std::vector<armnn::BackendId> backendIds;
346 std::copy(m_ComputeDevices.begin(), m_ComputeDevices.end(), std::back_inserter(backendIds));
347 return backendIds;
348 }
telsoa014fcda012018-03-09 14:13:49 +0000349 };
350
James Wardc89829f2020-10-12 14:17:36 +0100351 static void AddCommandLineOptions(cxxopts::Options& options,
352 CommandLineOptions& cLineOptions, std::vector<std::string>& required)
telsoa014fcda012018-03-09 14:13:49 +0000353 {
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000354 const std::vector<std::string> defaultComputes = { "CpuAcc", "CpuRef" };
David Beckf0b48452018-10-19 15:20:56 +0100355
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +0100356 const std::string backendsMessage = "Which device to run layers on by default. Possible choices: "
357 + armnn::BackendRegistryInstance().GetBackendIdsAsString();
358
James Wardc89829f2020-10-12 14:17:36 +0100359 options
360 .allow_unrecognised_options()
361 .add_options()
362 ("m,model-dir", "Path to directory containing model files (.caffemodel/.prototxt/.tflite)",
363 cxxopts::value<std::string>(cLineOptions.m_ModelDir))
364 ("c,compute", backendsMessage.c_str(),
365 cxxopts::value<std::vector<std::string>>(cLineOptions.m_ComputeDevices)->default_value("CpuRef"))
366 ("b,dynamic-backends-path",
367 "Path where to load any available dynamic backend from. "
368 "If left empty (the default), dynamic backends will not be used.",
369 cxxopts::value(cLineOptions.m_DynamicBackendsPath))
370 ("l,labels",
371 "Text file containing one image filename - correct label pair per line, "
372 "used to test the accuracy of the network.", cxxopts::value<std::string>(cLineOptions.m_Labels))
373 ("v,visualize-optimized-model",
374 "Produce a dot file useful for visualizing the graph post optimization."
375 "The file will have the same name as the model with the .dot extention.",
376 cxxopts::value<bool>(cLineOptions.m_VisualizePostOptimizationModel)->default_value("false"))
377 ("fp16-turbo-mode",
378 "If this option is enabled FP32 layers, weights and biases will be converted "
379 "to FP16 where the backend supports it.",
380 cxxopts::value<bool>(cLineOptions.m_EnableFp16TurboMode)->default_value("false"))
381 ("bf16-turbo-mode",
382 "If this option is enabled FP32 layers, weights and biases will be converted "
383 "to BF16 where the backend supports it.",
384 cxxopts::value<bool>(cLineOptions.m_EnableBf16TurboMode)->default_value("false"));
385
386 required.emplace_back("model-dir");
telsoa014fcda012018-03-09 14:13:49 +0000387 }
388
Matthew Bentham3e68b972019-04-09 13:10:46 +0100389 InferenceModel(const Params& params,
390 bool enableProfiling,
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100391 const std::string& dynamicBackendsPath,
Matthew Bentham3e68b972019-04-09 13:10:46 +0100392 const std::shared_ptr<armnn::IRuntime>& runtime = nullptr)
393 : m_EnableProfiling(enableProfiling)
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100394 , m_DynamicBackendsPath(dynamicBackendsPath)
telsoa014fcda012018-03-09 14:13:49 +0000395 {
telsoa01c577f2c2018-08-31 09:22:23 +0100396 if (runtime)
telsoa014fcda012018-03-09 14:13:49 +0000397 {
telsoa01c577f2c2018-08-31 09:22:23 +0100398 m_Runtime = runtime;
telsoa014fcda012018-03-09 14:13:49 +0000399 }
telsoa01c577f2c2018-08-31 09:22:23 +0100400 else
telsoa014fcda012018-03-09 14:13:49 +0000401 {
telsoa01c577f2c2018-08-31 09:22:23 +0100402 armnn::IRuntime::CreationOptions options;
Nina Drozd549ae372018-09-10 14:26:44 +0100403 options.m_EnableGpuProfiling = m_EnableProfiling;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100404 options.m_DynamicBackendsPath = m_DynamicBackendsPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100405 m_Runtime = std::move(armnn::IRuntime::Create(options));
surmeh013537c2c2018-05-18 16:31:43 +0100406 }
telsoa014fcda012018-03-09 14:13:49 +0000407
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +0100408 std::string invalidBackends;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000409 if (!CheckRequestedBackendsAreValid(params.m_ComputeDevices, armnn::Optional<std::string&>(invalidBackends)))
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +0100410 {
411 throw armnn::Exception("Some backend IDs are invalid: " + invalidBackends);
412 }
413
alered01a7227ac2020-05-07 14:58:29 +0100414 const auto parsing_start_time = armnn::GetTimeNow();
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100415 armnn::INetworkPtr network = CreateNetworkImpl<IParser>::Create(params, m_InputBindings, m_OutputBindings);
telsoa014fcda012018-03-09 14:13:49 +0000416
alered01a7227ac2020-05-07 14:58:29 +0100417 ARMNN_LOG(info) << "Network parsing time: " << std::setprecision(2)
418 << std::fixed << armnn::GetTimeDuration(parsing_start_time).count() << " ms\n";
419
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100420 armnn::IOptimizedNetworkPtr optNet{nullptr, [](armnn::IOptimizedNetwork*){}};
surmeh013537c2c2018-05-18 16:31:43 +0100421 {
422 ARMNN_SCOPED_HEAP_PROFILING("Optimizing");
telsoa01c577f2c2018-08-31 09:22:23 +0100423
424 armnn::OptimizerOptions options;
425 options.m_ReduceFp32ToFp16 = params.m_EnableFp16TurboMode;
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +0000426 options.m_ReduceFp32ToBf16 = params.m_EnableBf16TurboMode;
Matthew Jackson54658b92019-08-27 15:35:59 +0100427 options.m_Debug = params.m_PrintIntermediateLayers;
telsoa01c577f2c2018-08-31 09:22:23 +0100428
Sadik Armagana25886e2020-09-15 17:17:08 +0100429 armnn::BackendOptions gpuAcc("GpuAcc",
430 {
431 { "FastMathEnabled", params.m_EnableFastMath }
432 });
433 armnn::BackendOptions cpuAcc("CpuAcc",
434 {
435 { "FastMathEnabled", params.m_EnableFastMath }
436 });
437 options.m_ModelOptions.push_back(gpuAcc);
438 options.m_ModelOptions.push_back(cpuAcc);
439
alered01a7227ac2020-05-07 14:58:29 +0100440 const auto optimization_start_time = armnn::GetTimeNow();
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000441 optNet = armnn::Optimize(*network, params.m_ComputeDevices, m_Runtime->GetDeviceSpec(), options);
alered01a7227ac2020-05-07 14:58:29 +0100442
443 ARMNN_LOG(info) << "Optimization time: " << std::setprecision(2)
444 << std::fixed << armnn::GetTimeDuration(optimization_start_time).count() << " ms\n";
445
telsoa01c577f2c2018-08-31 09:22:23 +0100446 if (!optNet)
447 {
448 throw armnn::Exception("Optimize returned nullptr");
449 }
surmeh013537c2c2018-05-18 16:31:43 +0100450 }
telsoa014fcda012018-03-09 14:13:49 +0000451
surmeh013537c2c2018-05-18 16:31:43 +0100452 if (params.m_VisualizePostOptimizationModel)
453 {
Francis Murtagh532a29d2020-06-29 11:50:01 +0100454 fs::path filename = params.m_ModelPath;
surmeh013537c2c2018-05-18 16:31:43 +0100455 filename.replace_extension("dot");
Rob Hughes9e10c2b2019-07-23 15:37:19 +0100456 std::fstream file(filename.c_str(), std::ios_base::out);
surmeh013537c2c2018-05-18 16:31:43 +0100457 optNet->SerializeToDot(file);
458 }
459
460 armnn::Status ret;
461 {
462 ARMNN_SCOPED_HEAP_PROFILING("LoadNetwork");
463 ret = m_Runtime->LoadNetwork(m_NetworkIdentifier, std::move(optNet));
464 }
465
telsoa014fcda012018-03-09 14:13:49 +0000466 if (ret == armnn::Status::Failure)
467 {
468 throw armnn::Exception("IRuntime::LoadNetwork failed");
469 }
470 }
471
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000472 void CheckInputIndexIsValid(unsigned int inputIndex) const
telsoa014fcda012018-03-09 14:13:49 +0000473 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000474 if (m_InputBindings.size() < inputIndex + 1)
475 {
James Ward08f40162020-09-07 16:45:07 +0100476 throw armnn::Exception(fmt::format("Input index out of range: {}", inputIndex));
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000477 }
telsoa014fcda012018-03-09 14:13:49 +0000478 }
479
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000480 void CheckOutputIndexIsValid(unsigned int outputIndex) const
telsoa014fcda012018-03-09 14:13:49 +0000481 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000482 if (m_OutputBindings.size() < outputIndex + 1)
483 {
James Ward08f40162020-09-07 16:45:07 +0100484 throw armnn::Exception(fmt::format("Output index out of range: {}", outputIndex));
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000485 }
486 }
487
Aron Virginas-Tarc82c8732019-10-24 17:07:43 +0100488 unsigned int GetInputSize(unsigned int inputIndex = 0u) const
489 {
490 CheckInputIndexIsValid(inputIndex);
491 return m_InputBindings[inputIndex].second.GetNumElements();
492 }
493
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000494 unsigned int GetOutputSize(unsigned int outputIndex = 0u) const
495 {
496 CheckOutputIndexIsValid(outputIndex);
497 return m_OutputBindings[outputIndex].second.GetNumElements();
498 }
499
James Conroy7b4886f2019-04-11 10:23:58 +0100500 std::chrono::duration<double, std::milli> Run(
501 const std::vector<TContainer>& inputContainers,
502 std::vector<TContainer>& outputContainers)
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000503 {
Ferran Balaguerc602f292019-02-08 17:09:55 +0000504 for (unsigned int i = 0; i < outputContainers.size(); ++i)
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000505 {
506 const unsigned int expectedOutputDataSize = GetOutputSize(i);
Ferran Balaguerc602f292019-02-08 17:09:55 +0000507
James Ward6d9f5c52020-09-28 11:56:35 +0100508 mapbox::util::apply_visitor([expectedOutputDataSize, i](auto&& value)
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000509 {
Matthew Sloyan80c6b142020-09-08 12:00:32 +0100510 const unsigned int actualOutputDataSize = armnn::numeric_cast<unsigned int>(value.size());
Ferran Balaguerc602f292019-02-08 17:09:55 +0000511 if (actualOutputDataSize < expectedOutputDataSize)
512 {
Matthew Sloyan80c6b142020-09-08 12:00:32 +0100513 unsigned int outputIndex = i;
Ferran Balaguerc602f292019-02-08 17:09:55 +0000514 throw armnn::Exception(
James Ward08f40162020-09-07 16:45:07 +0100515 fmt::format("Not enough data for output #{0}: expected "
516 "{1} elements, got {2}", outputIndex, expectedOutputDataSize, actualOutputDataSize));
Ferran Balaguerc602f292019-02-08 17:09:55 +0000517 }
518 },
519 outputContainers[i]);
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000520 }
telsoa01c577f2c2018-08-31 09:22:23 +0100521
522 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkIdentifier);
523 if (profiler)
524 {
525 profiler->EnableProfiling(m_EnableProfiling);
526 }
527
James Conroy7b4886f2019-04-11 10:23:58 +0100528 // Start timer to record inference time in EnqueueWorkload (in milliseconds)
alered01a7227ac2020-05-07 14:58:29 +0100529 const auto start_time = armnn::GetTimeNow();
James Conroy7b4886f2019-04-11 10:23:58 +0100530
telsoa014fcda012018-03-09 14:13:49 +0000531 armnn::Status ret = m_Runtime->EnqueueWorkload(m_NetworkIdentifier,
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000532 MakeInputTensors(inputContainers),
533 MakeOutputTensors(outputContainers));
Sadik Armagan2b7a1582018-09-05 16:33:58 +0100534
alered01a7227ac2020-05-07 14:58:29 +0100535 const auto duration = armnn::GetTimeDuration(start_time);
James Conroy7b4886f2019-04-11 10:23:58 +0100536
Sadik Armagan2b7a1582018-09-05 16:33:58 +0100537 // if profiling is enabled print out the results
538 if (profiler && profiler->IsProfilingEnabled())
539 {
540 profiler->Print(std::cout);
541 }
542
telsoa014fcda012018-03-09 14:13:49 +0000543 if (ret == armnn::Status::Failure)
544 {
545 throw armnn::Exception("IRuntime::EnqueueWorkload failed");
546 }
James Conroy7b4886f2019-04-11 10:23:58 +0100547 else
548 {
alered01a7227ac2020-05-07 14:58:29 +0100549 return duration;
James Conroy7b4886f2019-04-11 10:23:58 +0100550 }
telsoa014fcda012018-03-09 14:13:49 +0000551 }
552
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100553 const armnn::BindingPointInfo& GetInputBindingInfo(unsigned int inputIndex = 0u) const
telsoa01c577f2c2018-08-31 09:22:23 +0100554 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000555 CheckInputIndexIsValid(inputIndex);
556 return m_InputBindings[inputIndex];
telsoa01c577f2c2018-08-31 09:22:23 +0100557 }
558
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100559 const std::vector<armnn::BindingPointInfo>& GetInputBindingInfos() const
telsoa01c577f2c2018-08-31 09:22:23 +0100560 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000561 return m_InputBindings;
telsoa01c577f2c2018-08-31 09:22:23 +0100562 }
563
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100564 const armnn::BindingPointInfo& GetOutputBindingInfo(unsigned int outputIndex = 0u) const
telsoa01c577f2c2018-08-31 09:22:23 +0100565 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000566 CheckOutputIndexIsValid(outputIndex);
567 return m_OutputBindings[outputIndex];
568 }
569
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100570 const std::vector<armnn::BindingPointInfo>& GetOutputBindingInfos() const
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000571 {
572 return m_OutputBindings;
573 }
574
575 QuantizationParams GetQuantizationParams(unsigned int outputIndex = 0u) const
576 {
577 CheckOutputIndexIsValid(outputIndex);
578 return std::make_pair(m_OutputBindings[outputIndex].second.GetQuantizationScale(),
579 m_OutputBindings[outputIndex].second.GetQuantizationOffset());
580 }
581
Narumol Prangnawarat4628d052019-02-25 17:26:05 +0000582 QuantizationParams GetInputQuantizationParams(unsigned int inputIndex = 0u) const
583 {
584 CheckInputIndexIsValid(inputIndex);
585 return std::make_pair(m_InputBindings[inputIndex].second.GetQuantizationScale(),
586 m_InputBindings[inputIndex].second.GetQuantizationOffset());
587 }
588
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000589 std::vector<QuantizationParams> GetAllQuantizationParams() const
590 {
591 std::vector<QuantizationParams> quantizationParams;
592 for (unsigned int i = 0u; i < m_OutputBindings.size(); i++)
593 {
594 quantizationParams.push_back(GetQuantizationParams(i));
595 }
596 return quantizationParams;
telsoa01c577f2c2018-08-31 09:22:23 +0100597 }
598
telsoa014fcda012018-03-09 14:13:49 +0000599private:
telsoa01c577f2c2018-08-31 09:22:23 +0100600 armnn::NetworkId m_NetworkIdentifier;
601 std::shared_ptr<armnn::IRuntime> m_Runtime;
602
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100603 std::vector<armnn::BindingPointInfo> m_InputBindings;
604 std::vector<armnn::BindingPointInfo> m_OutputBindings;
telsoa01c577f2c2018-08-31 09:22:23 +0100605 bool m_EnableProfiling;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100606 std::string m_DynamicBackendsPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100607
telsoa014fcda012018-03-09 14:13:49 +0000608 template<typename TContainer>
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000609 armnn::InputTensors MakeInputTensors(const std::vector<TContainer>& inputDataContainers)
telsoa014fcda012018-03-09 14:13:49 +0000610 {
Jim Flynn2fd61002019-05-03 12:54:26 +0100611 return armnnUtils::MakeInputTensors(m_InputBindings, inputDataContainers);
telsoa014fcda012018-03-09 14:13:49 +0000612 }
613
614 template<typename TContainer>
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000615 armnn::OutputTensors MakeOutputTensors(std::vector<TContainer>& outputDataContainers)
telsoa014fcda012018-03-09 14:13:49 +0000616 {
Jim Flynn2fd61002019-05-03 12:54:26 +0100617 return armnnUtils::MakeOutputTensors(m_OutputBindings, outputDataContainers);
telsoa014fcda012018-03-09 14:13:49 +0000618 }
Ferran Balaguerc602f292019-02-08 17:09:55 +0000619};