blob: 595df0a954f730aeb12adb83a040c34085a31fb6 [file] [log] [blame]
Kevin May42477c12020-03-26 13:34:14 +00001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "ArmnnDriverImpl.hpp"
7#include "../ArmnnPreparedModel_1_3.hpp"
8#include "../ModelToINetworkConverter.hpp"
9#include "../SystemPropertiesUtils.hpp"
10
11#include <log/log.h>
12
13namespace
14{
Kevin May42477c12020-03-26 13:34:14 +000015const char *g_RelaxedFloat32toFloat16PerformanceExecTime = "ArmNN.relaxedFloat32toFloat16Performance.execTime";
16const char *g_RelaxedFloat32toFloat16PerformancePowerUsage = "ArmNN.relaxedFloat32toFloat16Performance.powerUsage";
17
Kevin May2eaa1192020-04-15 16:50:57 +010018const char *g_ifPerformanceExecTime = "ArmNN.ifPerformance.execTime";
19const char *g_ifPerformancePowerUsage = "ArmNN.ifPerformance.powerUsage";
20
21const char *g_whilePerformanceExecTime = "ArmNN.whilePerformance.execTime";
22const char *g_whilePerformancePowerUsage = "ArmNN.whilePerformance.powerUsage";
23
Kevin May42477c12020-03-26 13:34:14 +000024const char *g_OperandTypeTensorFloat32PerformanceExecTime = "Armnn.operandTypeTensorFloat32Performance.execTime";
25const char *g_OperandTypeTensorFloat32PerformancePowerUsage = "Armnn.operandTypeTensorFloat32Performance.powerUsage";
26
27const char *g_OperandTypeFloat32PerformanceExecTime = "Armnn.operandTypeFloat32Performance.execTime";
28const char *g_OperandTypeFloat32PerformancePowerUsage = "Armnn.operandTypeFloat32Performance.powerUsage";
29
30const char *g_OperandTypeTensorFloat16PerformanceExecTime = "Armnn.operandTypeTensorFloat16Performance.execTime";
31const char *g_OperandTypeTensorFloat16PerformancePowerUsage = "Armnn.operandTypeTensorFloat16Performance.powerUsage";
32
33const char *g_OperandTypeFloat16PerformanceExecTime = "Armnn.operandTypeFloat16Performance.execTime";
34const char *g_OperandTypeFloat16PerformancePowerUsage = "Armnn.operandTypeFloat16Performance.powerUsage";
35
36const char *g_OperandTypeTensorQuant8AsymmPerformanceExecTime =
37 "Armnn.operandTypeTensorQuant8AsymmPerformance.execTime";
38const char *g_OperandTypeTensorQuant8AsymmPerformancePowerUsage =
39 "Armnn.operandTypeTensorQuant8AsymmPerformance.powerUsage";
40
41const char *g_OperandTypeTensorQuant8AsymmSignedPerformanceExecTime =
42 "Armnn.operandTypeTensorQuant8AsymmSignedPerformance.execTime";
43const char *g_OperandTypeTensorQuant8AsymmSignedPerformancePowerUsage =
44 "Armnn.operandTypeTensorQuant8AsymmSignedPerformance.powerUsage";
45
46const char *g_OperandTypeTensorQuant16SymmPerformanceExecTime =
47 "Armnn.operandTypeTensorQuant16SymmPerformance.execTime";
48const char *g_OperandTypeTensorQuant16SymmPerformancePowerUsage =
49 "Armnn.operandTypeTensorQuant16SymmPerformance.powerUsage";
50
51const char *g_OperandTypeTensorQuant8SymmPerformanceExecTime =
52 "Armnn.operandTypeTensorQuant8SymmPerformance.execTime";
53const char *g_OperandTypeTensorQuant8SymmPerformancePowerUsage =
54 "Armnn.operandTypeTensorQuant8SymmPerformance.powerUsage";
55
56const char *g_OperandTypeTensorQuant8SymmPerChannelPerformanceExecTime =
57 "Armnn.operandTypeTensorQuant8SymmPerChannelPerformance.execTime";
58const char *g_OperandTypeTensorQuant8SymmPerChannelPerformancePowerUsage =
59 "Armnn.operandTypeTensorQuant8SymmPerChannelPerformance.powerUsage";
60
61
62const char *g_OperandTypeTensorInt32PerformanceExecTime = "Armnn.operandTypeTensorInt32Performance.execTime";
63const char *g_OperandTypeTensorInt32PerformancePowerUsage = "Armnn.operandTypeTensorInt32Performance.powerUsage";
64
65const char *g_OperandTypeInt32PerformanceExecTime = "Armnn.operandTypeInt32Performance.execTime";
66const char *g_OperandTypeInt32PerformancePowerUsage = "Armnn.operandTypeInt32Performance.powerUsage";
67
68
69void NotifyCallbackAndCheck(const sp<V1_3::IPreparedModelCallback>& callback,
70 V1_3::ErrorStatus errorStatus,
71 const sp<V1_3::IPreparedModel>& preparedModelPtr)
72{
73 Return<void> returned = callback->notify_1_3(errorStatus, preparedModelPtr);
74 // This check is required, if the callback fails and it isn't checked it will bring down the service
75 if (!returned.isOk())
76 {
77 ALOGE("ArmnnDriverImpl::prepareModel: hidl callback failed to return properly: %s ",
78 returned.description().c_str());
79 }
80}
81
82Return<V1_3::ErrorStatus> FailPrepareModel(V1_3::ErrorStatus error,
83 const std::string& message,
84 const sp<V1_3::IPreparedModelCallback>& callback)
85{
86 ALOGW("ArmnnDriverImpl::prepareModel: %s", message.c_str());
87 NotifyCallbackAndCheck(callback, error, nullptr);
88 return error;
89}
90
91} // anonymous namespace
92
93namespace armnn_driver
94{
95namespace hal_1_3
96{
97
98Return<V1_3::ErrorStatus> ArmnnDriverImpl::prepareArmnnModel_1_3(
99 const armnn::IRuntimePtr& runtime,
100 const armnn::IGpuAccTunedParametersPtr& clTunedParameters,
101 const DriverOptions& options,
102 const V1_3::Model& model,
103 const sp<V1_3::IPreparedModelCallback>& cb,
Narumol Prangnawaratcad4e912020-06-02 12:07:43 +0100104 bool float32ToFloat16,
105 V1_3::Priority priority)
Kevin May42477c12020-03-26 13:34:14 +0000106{
107 ALOGV("ArmnnDriverImpl::prepareArmnnModel_1_3()");
108
109 if (cb.get() == nullptr)
110 {
111 ALOGW("ArmnnDriverImpl::prepareModel: Invalid callback passed to prepareModel");
112 return V1_3::ErrorStatus::INVALID_ARGUMENT;
113 }
114
115 if (!runtime)
116 {
117 return FailPrepareModel(V1_3::ErrorStatus::DEVICE_UNAVAILABLE, "Device unavailable", cb);
118 }
119
120 if (!android::nn::validateModel(model))
121 {
122 return FailPrepareModel(V1_3::ErrorStatus::INVALID_ARGUMENT, "Invalid model passed as input", cb);
123 }
124
125 // Deliberately ignore any unsupported operations requested by the options -
126 // at this point we're being asked to prepare a model that we've already declared support for
127 // and the operation indices may be different to those in getSupportedOperations anyway.
128 std::set<unsigned int> unsupportedOperations;
129 ModelToINetworkConverter<HalPolicy> modelConverter(options.GetBackends(),
130 model,
131 unsupportedOperations);
132
133 if (modelConverter.GetConversionResult() != ConversionResult::Success)
134 {
135 FailPrepareModel(V1_3::ErrorStatus::GENERAL_FAILURE, "ModelToINetworkConverter failed", cb);
136 return V1_3::ErrorStatus::NONE;
137 }
138
139 // Optimize the network
140 armnn::IOptimizedNetworkPtr optNet(nullptr, nullptr);
141 armnn::OptimizerOptions OptOptions;
142 OptOptions.m_ReduceFp32ToFp16 = float32ToFloat16;
143
Mike Kelly7ed56dd2020-09-30 20:22:56 +0100144 armnn::BackendOptions gpuAcc("GpuAcc",
145 {
Sadik Armaganf36e10b2021-01-11 16:34:01 +0000146 { "FastMathEnabled", options.IsFastMathEnabled() },
147 { "SaveCachedNetwork", options.SaveCachedNetwork() },
148 { "CachedNetworkFilePath", options.GetCachedNetworkFilePath() }
Mike Kelly7ed56dd2020-09-30 20:22:56 +0100149 });
150 armnn::BackendOptions cpuAcc("CpuAcc",
151 {
152 { "FastMathEnabled", options.IsFastMathEnabled() }
153 });
154 OptOptions.m_ModelOptions.push_back(gpuAcc);
155 OptOptions.m_ModelOptions.push_back(cpuAcc);
156
Kevin May42477c12020-03-26 13:34:14 +0000157 std::vector<std::string> errMessages;
158 try
159 {
160 optNet = armnn::Optimize(*modelConverter.GetINetwork(),
161 options.GetBackends(),
162 runtime->GetDeviceSpec(),
163 OptOptions,
164 errMessages);
165 }
166 catch (std::exception& e)
167 {
168 std::stringstream message;
169 message << "Exception (" << e.what() << ") caught from optimize.";
170 FailPrepareModel(V1_3::ErrorStatus::GENERAL_FAILURE, message.str(), cb);
171 return V1_3::ErrorStatus::NONE;
172 }
173
174 // Check that the optimized network is valid.
175 if (!optNet)
176 {
177 std::stringstream message;
178 message << "Invalid optimized network";
179 for (const std::string& msg : errMessages)
180 {
181 message << "\n" << msg;
182 }
183 FailPrepareModel(V1_3::ErrorStatus::GENERAL_FAILURE, message.str(), cb);
184 return V1_3::ErrorStatus::NONE;
185 }
186
187 // Export the optimized network graph to a dot file if an output dump directory
188 // has been specified in the drivers' arguments.
189 std::string dotGraphFileName = ExportNetworkGraphToDotFile(*optNet,
190 options.GetRequestInputsAndOutputsDumpDir());
191
192 // Load it into the runtime.
193 armnn::NetworkId netId = 0;
194 try
195 {
196 if (runtime->LoadNetwork(netId, move(optNet)) != armnn::Status::Success)
197 {
198 return FailPrepareModel(V1_3::ErrorStatus::GENERAL_FAILURE, "Network could not be loaded", cb);
199 }
200 }
201 catch (std::exception& e)
202 {
203 std::stringstream message;
204 message << "Exception (" << e.what()<< ") caught from LoadNetwork.";
205 FailPrepareModel(V1_3::ErrorStatus::GENERAL_FAILURE, message.str(), cb);
206 return V1_3::ErrorStatus::NONE;
207 }
208
209 // Now that we have a networkId for the graph rename the dump file to use it
210 // so that we can associate the graph file and the input/output tensor dump files
211 RenameGraphDotFile(dotGraphFileName,
212 options.GetRequestInputsAndOutputsDumpDir(),
213 netId);
214
215 std::unique_ptr<ArmnnPreparedModel_1_3<hal_1_3::HalPolicy>> preparedModel(
216 new ArmnnPreparedModel_1_3<hal_1_3::HalPolicy>(
217 netId,
218 runtime.get(),
219 model,
220 options.GetRequestInputsAndOutputsDumpDir(),
Narumol Prangnawaratcad4e912020-06-02 12:07:43 +0100221 options.IsGpuProfilingEnabled(),
222 priority));
Kevin May42477c12020-03-26 13:34:14 +0000223
224 // Run a single 'dummy' inference of the model. This means that CL kernels will get compiled (and tuned if
225 // this is enabled) before the first 'real' inference which removes the overhead of the first inference.
226 if (!preparedModel->ExecuteWithDummyInputs())
227 {
228 return FailPrepareModel(V1_3::ErrorStatus::GENERAL_FAILURE, "Network could not be executed", cb);
229 }
230
231 if (clTunedParameters &&
232 options.GetClTunedParametersMode() == armnn::IGpuAccTunedParameters::Mode::UpdateTunedParameters)
233 {
234 // Now that we've done one inference the CL kernel parameters will have been tuned, so save the updated file.
235 try
236 {
237 clTunedParameters->Save(options.GetClTunedParametersFile().c_str());
238 }
239 catch (std::exception& error)
240 {
241 ALOGE("ArmnnDriverImpl::prepareModel: Failed to save CL tuned parameters file '%s': %s",
242 options.GetClTunedParametersFile().c_str(), error.what());
243 }
244 }
245
246 NotifyCallbackAndCheck(cb, V1_3::ErrorStatus::NONE, preparedModel.release());
247
248 return V1_3::ErrorStatus::NONE;
249}
250
251Return<void> ArmnnDriverImpl::getCapabilities_1_3(const armnn::IRuntimePtr& runtime,
252 V1_3::IDevice::getCapabilities_1_3_cb cb)
253{
254 ALOGV("hal_1_3::ArmnnDriverImpl::getCapabilities()");
255
256 V1_3::Capabilities capabilities;
257
258 float defaultValue = .1f;
259
260 if (runtime)
261 {
262 capabilities.relaxedFloat32toFloat16PerformanceScalar.execTime =
263 ParseSystemProperty(g_RelaxedFloat32toFloat16PerformanceExecTime, defaultValue);
264
Kevin May2eaa1192020-04-15 16:50:57 +0100265 capabilities.relaxedFloat32toFloat16PerformanceScalar.powerUsage =
266 ParseSystemProperty(g_RelaxedFloat32toFloat16PerformancePowerUsage, defaultValue);
267
268 capabilities.relaxedFloat32toFloat16PerformanceTensor.execTime =
269 ParseSystemProperty(g_RelaxedFloat32toFloat16PerformanceExecTime, defaultValue);
270
Kevin May42477c12020-03-26 13:34:14 +0000271 capabilities.relaxedFloat32toFloat16PerformanceTensor.powerUsage =
272 ParseSystemProperty(g_RelaxedFloat32toFloat16PerformancePowerUsage, defaultValue);
273
Kevin May2eaa1192020-04-15 16:50:57 +0100274 capabilities.ifPerformance.execTime =
275 ParseSystemProperty(g_ifPerformanceExecTime, defaultValue);
276
277 capabilities.ifPerformance.powerUsage =
278 ParseSystemProperty(g_ifPerformancePowerUsage, defaultValue);
279
280 capabilities.whilePerformance.execTime =
281 ParseSystemProperty(g_whilePerformanceExecTime, defaultValue);
282
283 capabilities.whilePerformance.powerUsage =
284 ParseSystemProperty(g_whilePerformancePowerUsage, defaultValue);
285
Kevin May42477c12020-03-26 13:34:14 +0000286 // Set the base value for all operand types
287 capabilities.operandPerformance = nonExtensionOperandPerformance<HalVersion::V1_3>({FLT_MAX, FLT_MAX});
288
289 // Load supported operand types
290 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_FLOAT32,
291 {
292 .execTime = ParseSystemProperty(g_OperandTypeTensorFloat32PerformanceExecTime, defaultValue),
293 .powerUsage = ParseSystemProperty(g_OperandTypeTensorFloat32PerformancePowerUsage, defaultValue)
294 });
295
296 update(&capabilities.operandPerformance, V1_3::OperandType::FLOAT32,
297 {
298 .execTime = ParseSystemProperty(g_OperandTypeFloat32PerformanceExecTime, defaultValue),
299 .powerUsage = ParseSystemProperty(g_OperandTypeFloat32PerformancePowerUsage, defaultValue)
300 });
301
302 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_FLOAT16,
303 {
304 .execTime = ParseSystemProperty(g_OperandTypeTensorFloat16PerformanceExecTime, defaultValue),
305 .powerUsage = ParseSystemProperty(g_OperandTypeTensorFloat16PerformancePowerUsage, defaultValue)
306 });
307
308 update(&capabilities.operandPerformance, V1_3::OperandType::FLOAT16,
309 {
310 .execTime = ParseSystemProperty(g_OperandTypeFloat16PerformanceExecTime, defaultValue),
311 .powerUsage = ParseSystemProperty(g_OperandTypeFloat16PerformancePowerUsage, defaultValue)
312 });
313
314 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_QUANT8_ASYMM,
315 {
316 .execTime = ParseSystemProperty(g_OperandTypeTensorQuant8AsymmPerformanceExecTime, defaultValue),
317 .powerUsage = ParseSystemProperty(g_OperandTypeTensorQuant8AsymmPerformancePowerUsage, defaultValue)
318 });
319
320 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_QUANT8_SYMM,
321 {
322 .execTime = ParseSystemProperty(g_OperandTypeTensorQuant8SymmPerformanceExecTime, defaultValue),
323 .powerUsage = ParseSystemProperty(g_OperandTypeTensorQuant8SymmPerformancePowerUsage, defaultValue)
324 });
325 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_QUANT8_ASYMM_SIGNED,
326 {
327 .execTime = ParseSystemProperty(g_OperandTypeTensorQuant8AsymmSignedPerformanceExecTime,
328 defaultValue),
329 .powerUsage = ParseSystemProperty(g_OperandTypeTensorQuant8AsymmSignedPerformancePowerUsage,
330 defaultValue)
331 });
332
333 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_QUANT16_SYMM,
334 {
335 .execTime = ParseSystemProperty(g_OperandTypeTensorQuant16SymmPerformanceExecTime, defaultValue),
336 .powerUsage = ParseSystemProperty(g_OperandTypeTensorQuant16SymmPerformancePowerUsage, defaultValue)
337 });
338
339 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL,
340 {
341 .execTime =
342 ParseSystemProperty(g_OperandTypeTensorQuant8SymmPerChannelPerformanceExecTime, defaultValue),
343 .powerUsage =
344 ParseSystemProperty(g_OperandTypeTensorQuant8SymmPerChannelPerformancePowerUsage, defaultValue)
345 });
346
347 update(&capabilities.operandPerformance, V1_3::OperandType::TENSOR_INT32,
348 {
349 .execTime = ParseSystemProperty(g_OperandTypeTensorInt32PerformanceExecTime, defaultValue),
350 .powerUsage = ParseSystemProperty(g_OperandTypeTensorInt32PerformancePowerUsage, defaultValue)
351 });
352
353 update(&capabilities.operandPerformance, V1_3::OperandType::INT32,
354 {
355 .execTime = ParseSystemProperty(g_OperandTypeInt32PerformanceExecTime, defaultValue),
356 .powerUsage = ParseSystemProperty(g_OperandTypeInt32PerformancePowerUsage, defaultValue)
357 });
358
359 cb(V1_3::ErrorStatus::NONE, capabilities);
360 }
361 else
362 {
Kevin May2eaa1192020-04-15 16:50:57 +0100363 capabilities.relaxedFloat32toFloat16PerformanceScalar.execTime = 0;
364 capabilities.relaxedFloat32toFloat16PerformanceScalar.powerUsage = 0;
365 capabilities.relaxedFloat32toFloat16PerformanceTensor.execTime = 0;
366 capabilities.relaxedFloat32toFloat16PerformanceTensor.powerUsage = 0;
367 capabilities.ifPerformance.execTime = 0;
368 capabilities.ifPerformance.powerUsage = 0;
369 capabilities.whilePerformance.execTime = 0;
370 capabilities.whilePerformance.powerUsage = 0;
Kevin May42477c12020-03-26 13:34:14 +0000371
372 // Set the base value for all operand types
373 capabilities.operandPerformance = nonExtensionOperandPerformance<HalVersion::V1_3>({0.f, 0.0f});
374
375 cb(V1_3::ErrorStatus::DEVICE_UNAVAILABLE, capabilities);
376 }
377
378 return Void();
379}
380
381} // namespace hal_1_3
382} // namespace armnn_driver