blob: a3a7f6a753f6a0b02f09f1ae3738bbe49034551b [file] [log] [blame]
Jan Eilers45274902020-10-15 18:34:43 +01001//
2// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "ExecuteNetworkParams.hpp"
7
8#include "NetworkExecutionUtils/NetworkExecutionUtils.hpp"
9#include <InferenceModel.hpp>
10#include <armnn/Logging.hpp>
11
12#include <fmt/format.h>
13
14bool IsModelBinary(const std::string& modelFormat)
15{
16 // Parse model binary flag from the model-format string we got from the command-line
17 if (modelFormat.find("binary") != std::string::npos)
18 {
19 return true;
20 }
21 else if (modelFormat.find("txt") != std::string::npos || modelFormat.find("text") != std::string::npos)
22 {
23 return false;
24 }
25 else
26 {
27 throw armnn::InvalidArgumentException(fmt::format("Unknown model format: '{}'. "
28 "Please include 'binary' or 'text'",
29 modelFormat));
30 }
31}
32
33void CheckModelFormat(const std::string& modelFormat)
34{
35 // Forward to implementation based on the parser type
36 if (modelFormat.find("armnn") != std::string::npos)
37 {
38#if defined(ARMNN_SERIALIZER)
39#else
Keith Daviscb8e3502020-11-12 10:27:19 +000040 throw armnn::InvalidArgumentException("Can't run model in armnn format without a "
41 "built with serialization support.");
Jan Eilers45274902020-10-15 18:34:43 +010042#endif
43 }
44 else if (modelFormat.find("caffe") != std::string::npos)
45 {
46#if defined(ARMNN_CAFFE_PARSER)
47#else
48 throw armnn::InvalidArgumentException("Can't run model in caffe format without a "
49 "built with Caffe parser support.");
50#endif
51 }
52 else if (modelFormat.find("onnx") != std::string::npos)
53 {
54#if defined(ARMNN_ONNX_PARSER)
55#else
56 throw armnn::InvalidArgumentException("Can't run model in onnx format without a "
57 "built with Onnx parser support.");
58#endif
59 }
60 else if (modelFormat.find("tensorflow") != std::string::npos)
61 {
62#if defined(ARMNN_TF_PARSER)
63#else
64 throw armnn::InvalidArgumentException("Can't run model in onnx format without a "
65 "built with Tensorflow parser support.");
66#endif
67 }
Keith Daviscb8e3502020-11-12 10:27:19 +000068 else if (modelFormat.find("tflite") != std::string::npos)
Jan Eilers45274902020-10-15 18:34:43 +010069 {
70#if defined(ARMNN_TF_LITE_PARSER)
71 if (!IsModelBinary(modelFormat))
72 {
Keith Daviscb8e3502020-11-12 10:27:19 +000073 throw armnn::InvalidArgumentException(fmt::format("Unknown model format: '{}'. Only 'binary' "
74 "format supported for tflite files",
Jan Eilers45274902020-10-15 18:34:43 +010075 modelFormat));
76 }
77#else
78 throw armnn::InvalidArgumentException("Can't run model in tflite format without a "
79 "built with Tensorflow Lite parser support.");
80#endif
81 }
82 else
83 {
84 throw armnn::InvalidArgumentException(fmt::format("Unknown model format: '{}'. "
85 "Please include 'caffe', 'tensorflow', 'tflite' or 'onnx'",
86 modelFormat));
87 }
88}
89
90void CheckClTuningParameter(const int& tuningLevel,
91 const std::string& tuningPath,
92 const std::vector<armnn::BackendId> computeDevices)
93{
94 if (!tuningPath.empty())
95 {
Keith Daviscb8e3502020-11-12 10:27:19 +000096 if (tuningLevel == 0)
Jan Eilers45274902020-10-15 18:34:43 +010097 {
98 ARMNN_LOG(info) << "Using cl tuning file: " << tuningPath << "\n";
Keith Daviscb8e3502020-11-12 10:27:19 +000099 if (!ValidatePath(tuningPath, true))
Jan Eilers45274902020-10-15 18:34:43 +0100100 {
101 throw armnn::InvalidArgumentException("The tuning path is not valid");
102 }
103 }
104 else if ((1 <= tuningLevel) && (tuningLevel <= 3))
105 {
106 ARMNN_LOG(info) << "Starting execution to generate a cl tuning file: " << tuningPath << "\n"
107 << "Tuning level in use: " << tuningLevel << "\n";
108 }
109 else if ((0 < tuningLevel) || (tuningLevel > 3))
110 {
Keith Daviscb8e3502020-11-12 10:27:19 +0000111 throw armnn::InvalidArgumentException(fmt::format("The tuning level {} is not valid.",
112 tuningLevel));
Jan Eilers45274902020-10-15 18:34:43 +0100113 }
114
115 // Ensure that a GpuAcc is enabled. Otherwise no tuning data are used or genereted
116 // Only warn if it's not enabled
117 auto it = std::find(computeDevices.begin(), computeDevices.end(), "GpuAcc");
118 if (it == computeDevices.end())
119 {
120 ARMNN_LOG(warning) << "To use Cl Tuning the compute device GpuAcc needs to be active.";
121 }
122 }
123
Jan Eilers45274902020-10-15 18:34:43 +0100124}
125
126void ExecuteNetworkParams::ValidateParams()
127{
Keith Daviscb8e3502020-11-12 10:27:19 +0000128 // Set to true if it is preferred to throw an exception rather than use ARMNN_LOG
129 bool throwExc = false;
130
131 try
Jan Eilers45274902020-10-15 18:34:43 +0100132 {
Keith Daviscb8e3502020-11-12 10:27:19 +0000133 if (m_DynamicBackendsPath == "")
Francis Murtaghbf18a262020-10-27 15:20:40 +0000134 {
Keith Daviscb8e3502020-11-12 10:27:19 +0000135 // Check compute devices are valid unless they are dynamically loaded at runtime
136 std::string invalidBackends;
137 if (!CheckRequestedBackendsAreValid(m_ComputeDevices, armnn::Optional<std::string&>(invalidBackends)))
138 {
139 ARMNN_LOG(fatal) << "The list of preferred devices contains invalid backend IDs: "
140 << invalidBackends;
141 }
142 }
143
144 CheckClTuningParameter(m_TuningLevel, m_TuningPath, m_ComputeDevices);
145
146 if (m_EnableBf16TurboMode && m_EnableFp16TurboMode)
147 {
148 ARMNN_LOG(fatal) << "BFloat16 and Float16 turbo mode cannot be enabled at the same time.";
149 }
150
151 m_IsModelBinary = IsModelBinary(m_ModelFormat);
152
153 CheckModelFormat(m_ModelFormat);
154
155 // Check input tensor shapes
156 if ((m_InputTensorShapes.size() != 0) &&
157 (m_InputTensorShapes.size() != m_InputNames.size()))
158 {
159 ARMNN_LOG(fatal) << "input-name and input-tensor-shape must have the same amount of elements. ";
160 }
161
162 if (m_InputTensorDataFilePaths.size() != 0)
163 {
164 if (!ValidatePaths(m_InputTensorDataFilePaths, true))
165 {
166 ARMNN_LOG(fatal) << "One or more input data file paths are not valid. ";
167 }
168
169 if (m_InputTensorDataFilePaths.size() != m_InputNames.size())
170 {
171 ARMNN_LOG(fatal) << "input-name and input-tensor-data must have the same amount of elements. ";
172 }
173 }
174
175 if ((m_OutputTensorFiles.size() != 0) &&
176 (m_OutputTensorFiles.size() != m_OutputNames.size()))
177 {
178 ARMNN_LOG(fatal) << "output-name and write-outputs-to-file must have the same amount of elements. ";
179 }
180
181 if (m_InputTypes.size() == 0)
182 {
183 //Defaults the value of all inputs to "float"
184 m_InputTypes.assign(m_InputNames.size(), "float");
185 }
186 else if ((m_InputTypes.size() != 0) &&
187 (m_InputTypes.size() != m_InputNames.size()))
188 {
189 ARMNN_LOG(fatal) << "input-name and input-type must have the same amount of elements.";
190 }
191
192 if (m_OutputTypes.size() == 0)
193 {
194 //Defaults the value of all outputs to "float"
195 m_OutputTypes.assign(m_OutputNames.size(), "float");
196 }
197 else if ((m_OutputTypes.size() != 0) &&
198 (m_OutputTypes.size() != m_OutputNames.size()))
199 {
200 ARMNN_LOG(fatal) << "output-name and output-type must have the same amount of elements.";
201 }
202
203 // Check that threshold time is not less than zero
204 if (m_ThresholdTime < 0)
205 {
206 ARMNN_LOG(fatal) << "Threshold time supplied as a command line argument is less than zero.";
Francis Murtaghbf18a262020-10-27 15:20:40 +0000207 }
Jan Eilers45274902020-10-15 18:34:43 +0100208 }
Keith Daviscb8e3502020-11-12 10:27:19 +0000209 catch (std::string& exc)
210 {
211 if (throwExc)
212 {
213 throw armnn::InvalidArgumentException(exc);
214 }
215 else
216 {
217 std::cout << exc;
218 exit(EXIT_FAILURE);
219 }
220 }
Jan Eilers45274902020-10-15 18:34:43 +0100221 // Check turbo modes
Jan Eilers45274902020-10-15 18:34:43 +0100222
223 // Warn if ExecuteNetwork will generate dummy input data
224 if (m_GenerateTensorData)
225 {
226 ARMNN_LOG(warning) << "No input files provided, input tensors will be filled with 0s.";
227 }
228}