blob: 1b87a10de1b9c484c094c49e33c013c89699c1c5 [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"
James Wardc89829f2020-10-12 14:17:36 +010030#include <cxxopts/cxxopts.hpp>
31#include "CxxoptsUtils.hpp"
James Ward08f40162020-09-07 16:45:07 +010032#include <fmt/format.h>
James Ward6d9f5c52020-09-28 11:56:35 +010033#include <mapbox/variant.hpp>
telsoa014fcda012018-03-09 14:13:49 +000034
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +000035#include <algorithm>
36#include <iterator>
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +010037#include <fstream>
telsoa014fcda012018-03-09 14:13:49 +000038#include <map>
39#include <string>
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +000040#include <vector>
telsoa01c577f2c2018-08-31 09:22:23 +010041#include <type_traits>
42
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +010043namespace
44{
45
46inline bool CheckRequestedBackendsAreValid(const std::vector<armnn::BackendId>& backendIds,
47 armnn::Optional<std::string&> invalidBackendIds = armnn::EmptyOptional())
48{
49 if (backendIds.empty())
50 {
51 return false;
52 }
53
54 armnn::BackendIdSet validBackendIds = armnn::BackendRegistryInstance().GetBackendIds();
55
56 bool allValid = true;
57 for (const auto& backendId : backendIds)
58 {
59 if (std::find(validBackendIds.begin(), validBackendIds.end(), backendId) == validBackendIds.end())
60 {
61 allValid = false;
62 if (invalidBackendIds)
63 {
64 if (!invalidBackendIds.value().empty())
65 {
66 invalidBackendIds.value() += ", ";
67 }
68 invalidBackendIds.value() += backendId;
69 }
70 }
71 }
72 return allValid;
73}
74
75} // anonymous namespace
76
telsoa01c577f2c2018-08-31 09:22:23 +010077namespace InferenceModelInternal
78{
Jim Flynnb4d7eae2019-05-01 14:44:27 +010079using BindingPointInfo = armnn::BindingPointInfo;
telsoa01c577f2c2018-08-31 09:22:23 +010080
81using QuantizationParams = std::pair<float,int32_t>;
82
83struct Params
84{
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +000085 std::string m_ModelPath;
86 std::vector<std::string> m_InputBindings;
87 std::vector<armnn::TensorShape> m_InputShapes;
88 std::vector<std::string> m_OutputBindings;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +000089 std::vector<armnn::BackendId> m_ComputeDevices;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +010090 std::string m_DynamicBackendsPath;
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +000091 size_t m_SubgraphId;
92 bool m_IsModelBinary;
93 bool m_VisualizePostOptimizationModel;
94 bool m_EnableFp16TurboMode;
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +000095 bool m_EnableBf16TurboMode;
Matthew Jackson54658b92019-08-27 15:35:59 +010096 bool m_PrintIntermediateLayers;
Derek Lamberti132563c2019-12-02 16:06:40 +000097 bool m_ParseUnsupported;
Sadik Armagana9c2ce12020-07-14 10:02:22 +010098 bool m_InferOutputShape;
Sadik Armagana25886e2020-09-15 17:17:08 +010099 bool m_EnableFastMath;
telsoa01c577f2c2018-08-31 09:22:23 +0100100
101 Params()
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100102 : m_ComputeDevices{}
telsoa01c577f2c2018-08-31 09:22:23 +0100103 , m_SubgraphId(0)
104 , m_IsModelBinary(true)
105 , m_VisualizePostOptimizationModel(false)
106 , m_EnableFp16TurboMode(false)
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +0000107 , m_EnableBf16TurboMode(false)
Matthew Jackson54658b92019-08-27 15:35:59 +0100108 , m_PrintIntermediateLayers(false)
Derek Lamberti132563c2019-12-02 16:06:40 +0000109 , m_ParseUnsupported(false)
Sadik Armagana9c2ce12020-07-14 10:02:22 +0100110 , m_InferOutputShape(false)
Sadik Armagana25886e2020-09-15 17:17:08 +0100111 , m_EnableFastMath(false)
telsoa01c577f2c2018-08-31 09:22:23 +0100112 {}
113};
114
115} // namespace InferenceModelInternal
116
117template <typename IParser>
118struct CreateNetworkImpl
119{
120public:
121 using Params = InferenceModelInternal::Params;
telsoa01c577f2c2018-08-31 09:22:23 +0100122
123 static armnn::INetworkPtr Create(const Params& params,
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100124 std::vector<armnn::BindingPointInfo>& inputBindings,
125 std::vector<armnn::BindingPointInfo>& outputBindings)
telsoa01c577f2c2018-08-31 09:22:23 +0100126 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000127 const std::string& modelPath = params.m_ModelPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100128
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000129 // Create a network from a file on disk
130 auto parser(IParser::Create());
telsoa01c577f2c2018-08-31 09:22:23 +0100131
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000132 std::map<std::string, armnn::TensorShape> inputShapes;
133 if (!params.m_InputShapes.empty())
134 {
135 const size_t numInputShapes = params.m_InputShapes.size();
136 const size_t numInputBindings = params.m_InputBindings.size();
137 if (numInputShapes < numInputBindings)
138 {
James Ward08f40162020-09-07 16:45:07 +0100139 throw armnn::Exception(fmt::format(
140 "Not every input has its tensor shape specified: expected={0}, got={1}",
141 numInputBindings, numInputShapes));
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000142 }
telsoa01c577f2c2018-08-31 09:22:23 +0100143
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000144 for (size_t i = 0; i < numInputShapes; i++)
145 {
146 inputShapes[params.m_InputBindings[i]] = params.m_InputShapes[i];
147 }
148 }
telsoa01c577f2c2018-08-31 09:22:23 +0100149
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000150 std::vector<std::string> requestedOutputs = params.m_OutputBindings;
151 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
152
153 {
154 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
155 // Handle text and binary input differently by calling the corresponding parser function
156 network = (params.m_IsModelBinary ?
157 parser->CreateNetworkFromBinaryFile(modelPath.c_str(), inputShapes, requestedOutputs) :
158 parser->CreateNetworkFromTextFile(modelPath.c_str(), inputShapes, requestedOutputs));
159 }
160
161 for (const std::string& inputLayerName : params.m_InputBindings)
162 {
163 inputBindings.push_back(parser->GetNetworkInputBindingInfo(inputLayerName));
164 }
165
166 for (const std::string& outputLayerName : params.m_OutputBindings)
167 {
168 outputBindings.push_back(parser->GetNetworkOutputBindingInfo(outputLayerName));
169 }
170
171 return network;
telsoa01c577f2c2018-08-31 09:22:23 +0100172 }
173};
174
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000175#if defined(ARMNN_SERIALIZER)
176template <>
Derek Lamberti0028d1b2019-02-20 13:57:42 +0000177struct CreateNetworkImpl<armnnDeserializer::IDeserializer>
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000178{
179public:
Derek Lamberti0028d1b2019-02-20 13:57:42 +0000180 using IParser = armnnDeserializer::IDeserializer;
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000181 using Params = InferenceModelInternal::Params;
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000182
183 static armnn::INetworkPtr Create(const Params& params,
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100184 std::vector<armnn::BindingPointInfo>& inputBindings,
185 std::vector<armnn::BindingPointInfo>& outputBindings)
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000186 {
187 auto parser(IParser::Create());
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100188 ARMNN_ASSERT(parser);
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000189
190 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
191
192 {
193 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
Derek Lamberti2b183fb2019-02-18 16:36:57 +0000194
Francis Murtagh532a29d2020-06-29 11:50:01 +0100195 std::error_code errorCode;
196 fs::path pathToFile(params.m_ModelPath);
197 if (!fs::exists(pathToFile, errorCode))
Derek Lamberti2b183fb2019-02-18 16:36:57 +0000198 {
James Ward08f40162020-09-07 16:45:07 +0100199 throw armnn::FileNotFoundException(fmt::format("Cannot find the file ({0}) errorCode: {1} {2}",
200 params.m_ModelPath,
201 errorCode.message(),
Derek Lamberti2b183fb2019-02-18 16:36:57 +0000202 CHECK_LOCATION().AsString()));
203 }
204 std::ifstream file(params.m_ModelPath, std::ios::binary);
205
206 network = parser->CreateNetworkFromBinary(file);
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000207 }
208
Matthew Sloyan80c6b142020-09-08 12:00:32 +0100209 unsigned int subgraphId = armnn::numeric_cast<unsigned int>(params.m_SubgraphId);
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000210
211 for (const std::string& inputLayerName : params.m_InputBindings)
212 {
Derek Lamberti8ddae332019-02-21 16:29:43 +0000213 armnnDeserializer::BindingPointInfo inputBinding =
Derek Lambertiff05cc52019-04-26 13:05:17 +0100214 parser->GetNetworkInputBindingInfo(subgraphId, inputLayerName);
Derek Lamberti8ddae332019-02-21 16:29:43 +0000215 inputBindings.push_back(std::make_pair(inputBinding.m_BindingId, inputBinding.m_TensorInfo));
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000216 }
217
218 for (const std::string& outputLayerName : params.m_OutputBindings)
219 {
Derek Lamberti8ddae332019-02-21 16:29:43 +0000220 armnnDeserializer::BindingPointInfo outputBinding =
Derek Lambertiff05cc52019-04-26 13:05:17 +0100221 parser->GetNetworkOutputBindingInfo(subgraphId, outputLayerName);
Derek Lamberti8ddae332019-02-21 16:29:43 +0000222 outputBindings.push_back(std::make_pair(outputBinding.m_BindingId, outputBinding.m_TensorInfo));
Aron Virginas-Tar64e4ccb2019-02-12 11:27:53 +0000223 }
224
225 return network;
226 }
227};
228#endif
229
telsoa01c577f2c2018-08-31 09:22:23 +0100230#if defined(ARMNN_TF_LITE_PARSER)
231template <>
232struct CreateNetworkImpl<armnnTfLiteParser::ITfLiteParser>
233{
234public:
235 using IParser = armnnTfLiteParser::ITfLiteParser;
236 using Params = InferenceModelInternal::Params;
telsoa01c577f2c2018-08-31 09:22:23 +0100237
238 static armnn::INetworkPtr Create(const Params& params,
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100239 std::vector<armnn::BindingPointInfo>& inputBindings,
240 std::vector<armnn::BindingPointInfo>& outputBindings)
telsoa01c577f2c2018-08-31 09:22:23 +0100241 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000242 const std::string& modelPath = params.m_ModelPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100243
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000244 // Create a network from a file on disk
Derek Lamberti132563c2019-12-02 16:06:40 +0000245 IParser::TfLiteParserOptions options;
246 options.m_StandInLayerForUnsupported = params.m_ParseUnsupported;
Sadik Armagana9c2ce12020-07-14 10:02:22 +0100247 options.m_InferAndValidate = params.m_InferOutputShape;
Derek Lamberti132563c2019-12-02 16:06:40 +0000248 auto parser(IParser::Create(options));
telsoa01c577f2c2018-08-31 09:22:23 +0100249
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000250 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
telsoa01c577f2c2018-08-31 09:22:23 +0100251
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000252 {
253 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
254 network = parser->CreateNetworkFromBinaryFile(modelPath.c_str());
255 }
telsoa01c577f2c2018-08-31 09:22:23 +0100256
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000257 for (const std::string& inputLayerName : params.m_InputBindings)
258 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100259 armnn::BindingPointInfo inputBinding =
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000260 parser->GetNetworkInputBindingInfo(params.m_SubgraphId, inputLayerName);
261 inputBindings.push_back(inputBinding);
262 }
263
264 for (const std::string& outputLayerName : params.m_OutputBindings)
265 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100266 armnn::BindingPointInfo outputBinding =
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000267 parser->GetNetworkOutputBindingInfo(params.m_SubgraphId, outputLayerName);
268 outputBindings.push_back(outputBinding);
269 }
270
271 return network;
telsoa01c577f2c2018-08-31 09:22:23 +0100272 }
273};
274#endif
275
276#if defined(ARMNN_ONNX_PARSER)
277template <>
278struct CreateNetworkImpl<armnnOnnxParser::IOnnxParser>
279{
280public:
281 using IParser = armnnOnnxParser::IOnnxParser;
282 using Params = InferenceModelInternal::Params;
283 using BindingPointInfo = InferenceModelInternal::BindingPointInfo;
284
285 static armnn::INetworkPtr Create(const Params& params,
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000286 std::vector<BindingPointInfo>& inputBindings,
287 std::vector<BindingPointInfo>& outputBindings)
telsoa01c577f2c2018-08-31 09:22:23 +0100288 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000289 const std::string& modelPath = params.m_ModelPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100290
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000291 // Create a network from a file on disk
292 auto parser(IParser::Create());
telsoa01c577f2c2018-08-31 09:22:23 +0100293
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000294 armnn::INetworkPtr network{nullptr, [](armnn::INetwork *){}};
telsoa01c577f2c2018-08-31 09:22:23 +0100295
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000296 {
297 ARMNN_SCOPED_HEAP_PROFILING("Parsing");
298 network = (params.m_IsModelBinary ?
299 parser->CreateNetworkFromBinaryFile(modelPath.c_str()) :
300 parser->CreateNetworkFromTextFile(modelPath.c_str()));
301 }
telsoa01c577f2c2018-08-31 09:22:23 +0100302
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000303 for (const std::string& inputLayerName : params.m_InputBindings)
304 {
305 BindingPointInfo inputBinding = parser->GetNetworkInputBindingInfo(inputLayerName);
306 inputBindings.push_back(inputBinding);
307 }
308
309 for (const std::string& outputLayerName : params.m_OutputBindings)
310 {
311 BindingPointInfo outputBinding = parser->GetNetworkOutputBindingInfo(outputLayerName);
312 outputBindings.push_back(outputBinding);
313 }
314
315 return network;
telsoa01c577f2c2018-08-31 09:22:23 +0100316 }
317};
318#endif
telsoa014fcda012018-03-09 14:13:49 +0000319
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000320
telsoa014fcda012018-03-09 14:13:49 +0000321
322template <typename IParser, typename TDataType>
323class InferenceModel
324{
325public:
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000326 using DataType = TDataType;
327 using Params = InferenceModelInternal::Params;
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000328 using QuantizationParams = InferenceModelInternal::QuantizationParams;
James Ward6d9f5c52020-09-28 11:56:35 +0100329 using TContainer = mapbox::util::variant<std::vector<float>, std::vector<int>, std::vector<unsigned char>>;
telsoa014fcda012018-03-09 14:13:49 +0000330
331 struct CommandLineOptions
332 {
333 std::string m_ModelDir;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000334 std::vector<std::string> m_ComputeDevices;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100335 std::string m_DynamicBackendsPath;
surmeh013537c2c2018-05-18 16:31:43 +0100336 bool m_VisualizePostOptimizationModel;
telsoa01c577f2c2018-08-31 09:22:23 +0100337 bool m_EnableFp16TurboMode;
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +0000338 bool m_EnableBf16TurboMode;
Pablo Tello507f39d2019-04-15 15:44:39 +0100339 std::string m_Labels;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000340
341 std::vector<armnn::BackendId> GetComputeDevicesAsBackendIds()
342 {
343 std::vector<armnn::BackendId> backendIds;
344 std::copy(m_ComputeDevices.begin(), m_ComputeDevices.end(), std::back_inserter(backendIds));
345 return backendIds;
346 }
telsoa014fcda012018-03-09 14:13:49 +0000347 };
348
James Wardc89829f2020-10-12 14:17:36 +0100349 static void AddCommandLineOptions(cxxopts::Options& options,
350 CommandLineOptions& cLineOptions, std::vector<std::string>& required)
telsoa014fcda012018-03-09 14:13:49 +0000351 {
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000352 const std::vector<std::string> defaultComputes = { "CpuAcc", "CpuRef" };
David Beckf0b48452018-10-19 15:20:56 +0100353
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +0100354 const std::string backendsMessage = "Which device to run layers on by default. Possible choices: "
355 + armnn::BackendRegistryInstance().GetBackendIdsAsString();
356
James Wardc89829f2020-10-12 14:17:36 +0100357 options
358 .allow_unrecognised_options()
359 .add_options()
360 ("m,model-dir", "Path to directory containing model files (.caffemodel/.prototxt/.tflite)",
361 cxxopts::value<std::string>(cLineOptions.m_ModelDir))
362 ("c,compute", backendsMessage.c_str(),
363 cxxopts::value<std::vector<std::string>>(cLineOptions.m_ComputeDevices)->default_value("CpuRef"))
364 ("b,dynamic-backends-path",
365 "Path where to load any available dynamic backend from. "
366 "If left empty (the default), dynamic backends will not be used.",
367 cxxopts::value(cLineOptions.m_DynamicBackendsPath))
368 ("l,labels",
369 "Text file containing one image filename - correct label pair per line, "
370 "used to test the accuracy of the network.", cxxopts::value<std::string>(cLineOptions.m_Labels))
371 ("v,visualize-optimized-model",
372 "Produce a dot file useful for visualizing the graph post optimization."
373 "The file will have the same name as the model with the .dot extention.",
374 cxxopts::value<bool>(cLineOptions.m_VisualizePostOptimizationModel)->default_value("false"))
375 ("fp16-turbo-mode",
376 "If this option is enabled FP32 layers, weights and biases will be converted "
377 "to FP16 where the backend supports it.",
378 cxxopts::value<bool>(cLineOptions.m_EnableFp16TurboMode)->default_value("false"))
379 ("bf16-turbo-mode",
380 "If this option is enabled FP32 layers, weights and biases will be converted "
381 "to BF16 where the backend supports it.",
382 cxxopts::value<bool>(cLineOptions.m_EnableBf16TurboMode)->default_value("false"));
383
384 required.emplace_back("model-dir");
telsoa014fcda012018-03-09 14:13:49 +0000385 }
386
Matthew Bentham3e68b972019-04-09 13:10:46 +0100387 InferenceModel(const Params& params,
388 bool enableProfiling,
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100389 const std::string& dynamicBackendsPath,
Matthew Bentham3e68b972019-04-09 13:10:46 +0100390 const std::shared_ptr<armnn::IRuntime>& runtime = nullptr)
391 : m_EnableProfiling(enableProfiling)
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100392 , m_DynamicBackendsPath(dynamicBackendsPath)
telsoa014fcda012018-03-09 14:13:49 +0000393 {
telsoa01c577f2c2018-08-31 09:22:23 +0100394 if (runtime)
telsoa014fcda012018-03-09 14:13:49 +0000395 {
telsoa01c577f2c2018-08-31 09:22:23 +0100396 m_Runtime = runtime;
telsoa014fcda012018-03-09 14:13:49 +0000397 }
telsoa01c577f2c2018-08-31 09:22:23 +0100398 else
telsoa014fcda012018-03-09 14:13:49 +0000399 {
telsoa01c577f2c2018-08-31 09:22:23 +0100400 armnn::IRuntime::CreationOptions options;
Nina Drozd549ae372018-09-10 14:26:44 +0100401 options.m_EnableGpuProfiling = m_EnableProfiling;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100402 options.m_DynamicBackendsPath = m_DynamicBackendsPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100403 m_Runtime = std::move(armnn::IRuntime::Create(options));
surmeh013537c2c2018-05-18 16:31:43 +0100404 }
telsoa014fcda012018-03-09 14:13:49 +0000405
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +0100406 std::string invalidBackends;
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000407 if (!CheckRequestedBackendsAreValid(params.m_ComputeDevices, armnn::Optional<std::string&>(invalidBackends)))
Aron Virginas-Tar5cc8e562018-10-23 15:14:46 +0100408 {
409 throw armnn::Exception("Some backend IDs are invalid: " + invalidBackends);
410 }
411
alered01a7227ac2020-05-07 14:58:29 +0100412 const auto parsing_start_time = armnn::GetTimeNow();
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100413 armnn::INetworkPtr network = CreateNetworkImpl<IParser>::Create(params, m_InputBindings, m_OutputBindings);
telsoa014fcda012018-03-09 14:13:49 +0000414
alered01a7227ac2020-05-07 14:58:29 +0100415 ARMNN_LOG(info) << "Network parsing time: " << std::setprecision(2)
416 << std::fixed << armnn::GetTimeDuration(parsing_start_time).count() << " ms\n";
417
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100418 armnn::IOptimizedNetworkPtr optNet{nullptr, [](armnn::IOptimizedNetwork*){}};
surmeh013537c2c2018-05-18 16:31:43 +0100419 {
420 ARMNN_SCOPED_HEAP_PROFILING("Optimizing");
telsoa01c577f2c2018-08-31 09:22:23 +0100421
422 armnn::OptimizerOptions options;
423 options.m_ReduceFp32ToFp16 = params.m_EnableFp16TurboMode;
Narumol Prangnawaratd8cc8112020-03-24 13:54:05 +0000424 options.m_ReduceFp32ToBf16 = params.m_EnableBf16TurboMode;
Matthew Jackson54658b92019-08-27 15:35:59 +0100425 options.m_Debug = params.m_PrintIntermediateLayers;
telsoa01c577f2c2018-08-31 09:22:23 +0100426
Sadik Armagana25886e2020-09-15 17:17:08 +0100427 armnn::BackendOptions gpuAcc("GpuAcc",
428 {
429 { "FastMathEnabled", params.m_EnableFastMath }
430 });
431 armnn::BackendOptions cpuAcc("CpuAcc",
432 {
433 { "FastMathEnabled", params.m_EnableFastMath }
434 });
435 options.m_ModelOptions.push_back(gpuAcc);
436 options.m_ModelOptions.push_back(cpuAcc);
437
alered01a7227ac2020-05-07 14:58:29 +0100438 const auto optimization_start_time = armnn::GetTimeNow();
Aron Virginas-Tar339bcae2019-01-31 16:44:26 +0000439 optNet = armnn::Optimize(*network, params.m_ComputeDevices, m_Runtime->GetDeviceSpec(), options);
alered01a7227ac2020-05-07 14:58:29 +0100440
441 ARMNN_LOG(info) << "Optimization time: " << std::setprecision(2)
442 << std::fixed << armnn::GetTimeDuration(optimization_start_time).count() << " ms\n";
443
telsoa01c577f2c2018-08-31 09:22:23 +0100444 if (!optNet)
445 {
446 throw armnn::Exception("Optimize returned nullptr");
447 }
surmeh013537c2c2018-05-18 16:31:43 +0100448 }
telsoa014fcda012018-03-09 14:13:49 +0000449
surmeh013537c2c2018-05-18 16:31:43 +0100450 if (params.m_VisualizePostOptimizationModel)
451 {
Francis Murtagh532a29d2020-06-29 11:50:01 +0100452 fs::path filename = params.m_ModelPath;
surmeh013537c2c2018-05-18 16:31:43 +0100453 filename.replace_extension("dot");
Rob Hughes9e10c2b2019-07-23 15:37:19 +0100454 std::fstream file(filename.c_str(), std::ios_base::out);
surmeh013537c2c2018-05-18 16:31:43 +0100455 optNet->SerializeToDot(file);
456 }
457
458 armnn::Status ret;
459 {
460 ARMNN_SCOPED_HEAP_PROFILING("LoadNetwork");
461 ret = m_Runtime->LoadNetwork(m_NetworkIdentifier, std::move(optNet));
462 }
463
telsoa014fcda012018-03-09 14:13:49 +0000464 if (ret == armnn::Status::Failure)
465 {
466 throw armnn::Exception("IRuntime::LoadNetwork failed");
467 }
468 }
469
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000470 void CheckInputIndexIsValid(unsigned int inputIndex) const
telsoa014fcda012018-03-09 14:13:49 +0000471 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000472 if (m_InputBindings.size() < inputIndex + 1)
473 {
James Ward08f40162020-09-07 16:45:07 +0100474 throw armnn::Exception(fmt::format("Input index out of range: {}", inputIndex));
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000475 }
telsoa014fcda012018-03-09 14:13:49 +0000476 }
477
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000478 void CheckOutputIndexIsValid(unsigned int outputIndex) const
telsoa014fcda012018-03-09 14:13:49 +0000479 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000480 if (m_OutputBindings.size() < outputIndex + 1)
481 {
James Ward08f40162020-09-07 16:45:07 +0100482 throw armnn::Exception(fmt::format("Output index out of range: {}", outputIndex));
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000483 }
484 }
485
Aron Virginas-Tarc82c8732019-10-24 17:07:43 +0100486 unsigned int GetInputSize(unsigned int inputIndex = 0u) const
487 {
488 CheckInputIndexIsValid(inputIndex);
489 return m_InputBindings[inputIndex].second.GetNumElements();
490 }
491
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000492 unsigned int GetOutputSize(unsigned int outputIndex = 0u) const
493 {
494 CheckOutputIndexIsValid(outputIndex);
495 return m_OutputBindings[outputIndex].second.GetNumElements();
496 }
497
James Conroy7b4886f2019-04-11 10:23:58 +0100498 std::chrono::duration<double, std::milli> Run(
499 const std::vector<TContainer>& inputContainers,
500 std::vector<TContainer>& outputContainers)
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000501 {
Ferran Balaguerc602f292019-02-08 17:09:55 +0000502 for (unsigned int i = 0; i < outputContainers.size(); ++i)
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000503 {
504 const unsigned int expectedOutputDataSize = GetOutputSize(i);
Ferran Balaguerc602f292019-02-08 17:09:55 +0000505
James Ward6d9f5c52020-09-28 11:56:35 +0100506 mapbox::util::apply_visitor([expectedOutputDataSize, i](auto&& value)
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000507 {
Matthew Sloyan80c6b142020-09-08 12:00:32 +0100508 const unsigned int actualOutputDataSize = armnn::numeric_cast<unsigned int>(value.size());
Ferran Balaguerc602f292019-02-08 17:09:55 +0000509 if (actualOutputDataSize < expectedOutputDataSize)
510 {
Matthew Sloyan80c6b142020-09-08 12:00:32 +0100511 unsigned int outputIndex = i;
Ferran Balaguerc602f292019-02-08 17:09:55 +0000512 throw armnn::Exception(
James Ward08f40162020-09-07 16:45:07 +0100513 fmt::format("Not enough data for output #{0}: expected "
514 "{1} elements, got {2}", outputIndex, expectedOutputDataSize, actualOutputDataSize));
Ferran Balaguerc602f292019-02-08 17:09:55 +0000515 }
516 },
517 outputContainers[i]);
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000518 }
telsoa01c577f2c2018-08-31 09:22:23 +0100519
520 std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkIdentifier);
521 if (profiler)
522 {
523 profiler->EnableProfiling(m_EnableProfiling);
524 }
525
James Conroy7b4886f2019-04-11 10:23:58 +0100526 // Start timer to record inference time in EnqueueWorkload (in milliseconds)
alered01a7227ac2020-05-07 14:58:29 +0100527 const auto start_time = armnn::GetTimeNow();
James Conroy7b4886f2019-04-11 10:23:58 +0100528
telsoa014fcda012018-03-09 14:13:49 +0000529 armnn::Status ret = m_Runtime->EnqueueWorkload(m_NetworkIdentifier,
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000530 MakeInputTensors(inputContainers),
531 MakeOutputTensors(outputContainers));
Sadik Armagan2b7a1582018-09-05 16:33:58 +0100532
alered01a7227ac2020-05-07 14:58:29 +0100533 const auto duration = armnn::GetTimeDuration(start_time);
James Conroy7b4886f2019-04-11 10:23:58 +0100534
Sadik Armagan2b7a1582018-09-05 16:33:58 +0100535 // if profiling is enabled print out the results
536 if (profiler && profiler->IsProfilingEnabled())
537 {
538 profiler->Print(std::cout);
539 }
540
telsoa014fcda012018-03-09 14:13:49 +0000541 if (ret == armnn::Status::Failure)
542 {
543 throw armnn::Exception("IRuntime::EnqueueWorkload failed");
544 }
James Conroy7b4886f2019-04-11 10:23:58 +0100545 else
546 {
alered01a7227ac2020-05-07 14:58:29 +0100547 return duration;
James Conroy7b4886f2019-04-11 10:23:58 +0100548 }
telsoa014fcda012018-03-09 14:13:49 +0000549 }
550
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100551 const armnn::BindingPointInfo& GetInputBindingInfo(unsigned int inputIndex = 0u) const
telsoa01c577f2c2018-08-31 09:22:23 +0100552 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000553 CheckInputIndexIsValid(inputIndex);
554 return m_InputBindings[inputIndex];
telsoa01c577f2c2018-08-31 09:22:23 +0100555 }
556
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100557 const std::vector<armnn::BindingPointInfo>& GetInputBindingInfos() const
telsoa01c577f2c2018-08-31 09:22:23 +0100558 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000559 return m_InputBindings;
telsoa01c577f2c2018-08-31 09:22:23 +0100560 }
561
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100562 const armnn::BindingPointInfo& GetOutputBindingInfo(unsigned int outputIndex = 0u) const
telsoa01c577f2c2018-08-31 09:22:23 +0100563 {
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000564 CheckOutputIndexIsValid(outputIndex);
565 return m_OutputBindings[outputIndex];
566 }
567
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100568 const std::vector<armnn::BindingPointInfo>& GetOutputBindingInfos() const
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000569 {
570 return m_OutputBindings;
571 }
572
573 QuantizationParams GetQuantizationParams(unsigned int outputIndex = 0u) const
574 {
575 CheckOutputIndexIsValid(outputIndex);
576 return std::make_pair(m_OutputBindings[outputIndex].second.GetQuantizationScale(),
577 m_OutputBindings[outputIndex].second.GetQuantizationOffset());
578 }
579
Narumol Prangnawarat4628d052019-02-25 17:26:05 +0000580 QuantizationParams GetInputQuantizationParams(unsigned int inputIndex = 0u) const
581 {
582 CheckInputIndexIsValid(inputIndex);
583 return std::make_pair(m_InputBindings[inputIndex].second.GetQuantizationScale(),
584 m_InputBindings[inputIndex].second.GetQuantizationOffset());
585 }
586
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000587 std::vector<QuantizationParams> GetAllQuantizationParams() const
588 {
589 std::vector<QuantizationParams> quantizationParams;
590 for (unsigned int i = 0u; i < m_OutputBindings.size(); i++)
591 {
592 quantizationParams.push_back(GetQuantizationParams(i));
593 }
594 return quantizationParams;
telsoa01c577f2c2018-08-31 09:22:23 +0100595 }
596
telsoa014fcda012018-03-09 14:13:49 +0000597private:
telsoa01c577f2c2018-08-31 09:22:23 +0100598 armnn::NetworkId m_NetworkIdentifier;
599 std::shared_ptr<armnn::IRuntime> m_Runtime;
600
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100601 std::vector<armnn::BindingPointInfo> m_InputBindings;
602 std::vector<armnn::BindingPointInfo> m_OutputBindings;
telsoa01c577f2c2018-08-31 09:22:23 +0100603 bool m_EnableProfiling;
Matteo Martincigh00dda4a2019-08-14 11:42:30 +0100604 std::string m_DynamicBackendsPath;
telsoa01c577f2c2018-08-31 09:22:23 +0100605
telsoa014fcda012018-03-09 14:13:49 +0000606 template<typename TContainer>
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000607 armnn::InputTensors MakeInputTensors(const std::vector<TContainer>& inputDataContainers)
telsoa014fcda012018-03-09 14:13:49 +0000608 {
Jim Flynn2fd61002019-05-03 12:54:26 +0100609 return armnnUtils::MakeInputTensors(m_InputBindings, inputDataContainers);
telsoa014fcda012018-03-09 14:13:49 +0000610 }
611
612 template<typename TContainer>
Aron Virginas-Tar7cf0eaa2019-01-24 17:05:36 +0000613 armnn::OutputTensors MakeOutputTensors(std::vector<TContainer>& outputDataContainers)
telsoa014fcda012018-03-09 14:13:49 +0000614 {
Jim Flynn2fd61002019-05-03 12:54:26 +0100615 return armnnUtils::MakeOutputTensors(m_OutputBindings, outputDataContainers);
telsoa014fcda012018-03-09 14:13:49 +0000616 }
Ferran Balaguerc602f292019-02-08 17:09:55 +0000617};