blob: b2fc1a6389da8ccaddc8a4c23121341ad2cafe93 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
Matteo Martincigh49124022019-01-11 13:25:59 +00005
telsoa014fcda012018-03-09 14:13:49 +00006#include "Network.hpp"
7#include "Graph.hpp"
8#include "Layer.hpp"
telsoa01c577f2c2018-08-31 09:22:23 +01009#include "DeviceSpec.hpp"
telsoa014fcda012018-03-09 14:13:49 +000010#include "Optimizer.hpp"
Derek Lambertiff05cc52019-04-26 13:05:17 +010011#include "SubgraphViewSelector.hpp"
Matteo Martincigh49124022019-01-11 13:25:59 +000012#include "BackendSettings.hpp"
David Beckac42efd2018-09-26 17:41:13 +010013#include "optimizations/All.hpp"
telsoa014fcda012018-03-09 14:13:49 +000014
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +000015#include <backendsCommon/CpuTensorHandle.hpp>
16#include <backendsCommon/WorkloadFactory.hpp>
David Beck263e3492018-11-09 14:46:40 +000017#include <backendsCommon/BackendRegistry.hpp>
18#include <backendsCommon/IBackendInternal.hpp>
Derek Lamberti84da38b2019-06-13 11:40:08 +010019#include <backendsCommon/TensorHandleFactoryRegistry.hpp>
David Beckac42efd2018-09-26 17:41:13 +010020
21#include <armnn/Exceptions.hpp>
telsoa014fcda012018-03-09 14:13:49 +000022#include <armnn/Utils.hpp>
telsoa01c577f2c2018-08-31 09:22:23 +010023#include <armnn/TypesUtils.hpp>
telsoa014fcda012018-03-09 14:13:49 +000024
25#include <fcntl.h>
26#include <algorithm>
27#include <fstream>
28#include <memory>
telsoa01c577f2c2018-08-31 09:22:23 +010029#include <vector>
30#include <algorithm>
telsoa014fcda012018-03-09 14:13:49 +000031
32#include <boost/assert.hpp>
33#include <boost/format.hpp>
34#include <boost/log/trivial.hpp>
35#include <boost/numeric/conversion/converter_policies.hpp>
36#include <boost/cast.hpp>
37
38namespace armnn
39{
40
41armnn::INetwork* INetwork::CreateRaw()
42{
43 return new Network();
44}
45
46armnn::INetworkPtr INetwork::Create()
47{
48 return INetworkPtr(CreateRaw(), &INetwork::Destroy);
49}
50
51void INetwork::Destroy(INetwork* network)
52{
53 delete boost::polymorphic_downcast<Network*>(network);
54}
55
56Status Network::PrintGraph()
57{
58 m_Graph->Print();
59 return Status::Success;
60}
61
62void IOptimizedNetwork::Destroy(IOptimizedNetwork* network)
63{
64 delete boost::polymorphic_downcast<OptimizedNetwork*>(network);
65}
66
67Status OptimizedNetwork::PrintGraph()
68{
69 m_Graph->Print();
70 return Status::Success;
71}
72
surmeh01bceff2f2018-03-29 16:29:27 +010073Status OptimizedNetwork::SerializeToDot(std::ostream& stream) const
74{
75 return m_Graph->SerializeToDot(stream);
76}
77
Matteo Martincigh49124022019-01-11 13:25:59 +000078
Matteo Martincigh49124022019-01-11 13:25:59 +000079
80void ReportError(const std::string& errorMessage,
81 Optional<std::vector<std::string>&> errorMessages)
82{
83 std::stringstream fullErrorMessage;
84 fullErrorMessage << "ERROR: " << errorMessage;
85 BOOST_LOG_TRIVIAL(warning) << fullErrorMessage.str();
86 if (errorMessages)
87 {
88 errorMessages.value().push_back(fullErrorMessage.str());
89 }
90}
91
92void ReportWarning(const std::string& warningMessage,
93 Optional<std::vector<std::string>&> warningMessages)
94{
95 std::stringstream fullWarningMessage;
96 fullWarningMessage << "WARNING: " << warningMessage;
97 BOOST_LOG_TRIVIAL(warning) << fullWarningMessage.str();
98 if (warningMessages)
99 {
100 warningMessages.value().push_back(fullWarningMessage.str());
101 }
102}
103
jimfly016b0b53d2018-10-08 14:43:01 +0100104bool CheckScaleSetOnQuantizedType(Layer* layer, Optional<std::vector<std::string>&> errMessages)
105{
106 bool noErrors = true;
107 unsigned int numOutputs = layer->GetNumOutputSlots();
108 for (unsigned int i = 0; i < numOutputs; i++) {
David Monahanb8554702019-04-25 16:03:38 +0100109 OutputSlot& outputSlot = layer->GetOutputSlot(i);
110 TensorInfo info = outputSlot.GetTensorInfo();
jimfly016b0b53d2018-10-08 14:43:01 +0100111 if (DataType::QuantisedAsymm8 == info.GetDataType()) {
112 if (0.f == info.GetQuantizationScale()) {
113 noErrors = false;
114 std::stringstream ss;
Matteo Martincigh49124022019-01-11 13:25:59 +0000115 ss << "output " << i << " of layer " << GetLayerTypeAsCString(layer->GetType())
jimfly016b0b53d2018-10-08 14:43:01 +0100116 << " (" << layer->GetNameStr() << ") is of type"
117 << " Quantized 8 bit but its scale parameter has not been set";
Matteo Martincigh49124022019-01-11 13:25:59 +0000118 ReportError(ss.str(), errMessages);
jimfly016b0b53d2018-10-08 14:43:01 +0100119 }
David Monahanb8554702019-04-25 16:03:38 +0100120 // Softmax under QuantisedAsymm8 must always be scale (1.0f/256.0f) and offset 0
121 if ((info.GetQuantizationScale() != (1.0f / 256.0f) ||
122 info.GetQuantizationOffset() != 0) &&
123 layer->GetType() == armnn::LayerType::Softmax)
124 {
125 std::stringstream ss;
126 ss << "Quantization parameters for Softmax layer (Scale: " <<
127 info.GetQuantizationScale() << " and Offset: " << info.GetQuantizationOffset() <<
128 ") are incorrect and have been updated to Scale: 0.00390625 and Offset: 0";
129 BOOST_LOG_TRIVIAL(warning) << ss.str();
130 info.SetQuantizationScale((1.0f /256.0f));
131 info.SetQuantizationOffset(0);
132 outputSlot.SetTensorInfo(info);
133 }
jimfly016b0b53d2018-10-08 14:43:01 +0100134 }
135 }
136 return noErrors;
137}
138
Matteo Martincigh49124022019-01-11 13:25:59 +0000139OptimizationResult AssignBackends(OptimizedNetwork* optNetObjPtr,
140 BackendSettings& backendSettings,
141 Graph::Iterator& firstLayer,
142 Graph::Iterator& lastLayer,
143 Optional<std::vector<std::string>&> errMessages)
telsoa014fcda012018-03-09 14:13:49 +0000144{
Matteo Martincigh49124022019-01-11 13:25:59 +0000145 OptimizationResult result;
telsoa014fcda012018-03-09 14:13:49 +0000146
Matteo Martincigh49124022019-01-11 13:25:59 +0000147 // Helper lambda to compose meaningful error message before returning with error
148 auto ReturnWithError = [&](const Layer* layer)
telsoa01c577f2c2018-08-31 09:22:23 +0100149 {
jimfly016b0b53d2018-10-08 14:43:01 +0100150 std::stringstream failureMsg;
Matteo Martincigh49124022019-01-11 13:25:59 +0000151 failureMsg << "Layer of type " << GetLayerTypeAsCString(layer->GetType())
152 << " is not supported on any preferred backend " << backendSettings.m_PreferredBackends;
153 ReportError(failureMsg.str(), errMessages);
154
155 result.m_Error = true;
156 return result;
telsoa01c577f2c2018-08-31 09:22:23 +0100157 };
158
Matteo Martincigh49124022019-01-11 13:25:59 +0000159 auto availablePreferredBackends = backendSettings.GetAvailablePreferredBackends();
160 if (availablePreferredBackends.empty())
telsoa01c577f2c2018-08-31 09:22:23 +0100161 {
Matteo Martincigh49124022019-01-11 13:25:59 +0000162 std::stringstream failureMsg;
163 failureMsg << "No preferred backends are available";
164 ReportError(failureMsg.str(), errMessages);
165
166 result.m_Error = true;
167 return result;
168 }
169
170 for (auto it = firstLayer; it != lastLayer; ++it)
171 {
172 auto layer = *it;
telsoa01c577f2c2018-08-31 09:22:23 +0100173 DataType dataType = layer->GetDataType();
174 std::string reasonIfUnsupported;
175 bool found = false;
jimfly016b0b53d2018-10-08 14:43:01 +0100176 if (!CheckScaleSetOnQuantizedType(layer, errMessages))
177 {
178 // don't bomb immediately, find all the quantized outputs
179 // which haven't had a scale set and report them all back.
Matteo Martincigh49124022019-01-11 13:25:59 +0000180 result.m_Error = true;
jimfly016b0b53d2018-10-08 14:43:01 +0100181 }
Matteo Martincigh49124022019-01-11 13:25:59 +0000182
David Beckf0b48452018-10-19 15:20:56 +0100183 for (const auto& backend : availablePreferredBackends)
telsoa01c577f2c2018-08-31 09:22:23 +0100184 {
185 // need to set the compute device on the layer
186 // before we can check if it is supported
David Beck33f0ae02018-10-18 15:13:56 +0100187 layer->SetBackendId(backend);
telsoa01c577f2c2018-08-31 09:22:23 +0100188 if (!IWorkloadFactory::IsLayerSupported(*layer, dataType, reasonIfUnsupported))
189 {
190 if (dataType == DataType::Float16)
191 {
192 if (IWorkloadFactory::IsLayerSupported(*layer, DataType::Float32, reasonIfUnsupported)
193 && layer->GetType() != LayerType::ConvertFp32ToFp16
194 && layer->GetType() != LayerType::ConvertFp16ToFp32)
195 {
196 // Insert FP16 -> FP32 conversion layer before current layer
197 std::vector<ConvertFp16ToFp32Layer*> convertFp16ToFp32Layers =
198 InsertConvertFp16ToFp32LayersBefore(optNetObjPtr->GetGraph(), *layer);
199
200 // Insert FP32 -> FP16 conversion layer after current layer
201 std::vector<ConvertFp32ToFp16Layer*> convertFp32ToFp16Layers =
202 InsertConvertFp32ToFp16LayersAfter(optNetObjPtr->GetGraph(), *layer);
203
204 // Assign a supported backend to the newly introduced conversion layers
David Beckf0b48452018-10-19 15:20:56 +0100205 auto AssignFirstSupportedBackend = [&](Layer* layer, BackendId preferredBackend)
telsoa01c577f2c2018-08-31 09:22:23 +0100206 {
207 bool supportedBackendFound = false;
208 std::string reasonIfUnsupported;
209
210 // Try preferred backend first
David Beck33f0ae02018-10-18 15:13:56 +0100211 layer->SetBackendId(preferredBackend);
David Beck29c75de2018-10-23 13:35:58 +0100212 if (IWorkloadFactory::IsLayerSupported(*layer,
213 EmptyOptional(),
214 reasonIfUnsupported))
telsoa01c577f2c2018-08-31 09:22:23 +0100215 {
216 supportedBackendFound = true;
217 }
218 else
219 {
David Beckf0b48452018-10-19 15:20:56 +0100220 for (const auto& backend : availablePreferredBackends)
telsoa01c577f2c2018-08-31 09:22:23 +0100221 {
222 // Skip preferred backend (we already determined that it is not supported)
223 if (backend == preferredBackend)
224 {
225 continue;
226 }
227
David Beck33f0ae02018-10-18 15:13:56 +0100228 layer->SetBackendId(backend);
David Beck29c75de2018-10-23 13:35:58 +0100229 if (IWorkloadFactory::IsLayerSupported(*layer,
230 EmptyOptional(),
231 reasonIfUnsupported))
telsoa01c577f2c2018-08-31 09:22:23 +0100232 {
233 supportedBackendFound = true;
234 break;
235 }
236 }
237 }
238
239 return supportedBackendFound;
240 };
241
242 for (ConvertFp16ToFp32Layer* convertLayer : convertFp16ToFp32Layers)
243 {
244 if (!AssignFirstSupportedBackend(convertLayer, backend))
245 {
246 return ReturnWithError(convertLayer);
247 }
248 }
249
250 for (ConvertFp32ToFp16Layer* convertLayer : convertFp32ToFp16Layers)
251 {
252 if (!AssignFirstSupportedBackend(convertLayer, backend))
253 {
254 return ReturnWithError(convertLayer);
255 }
256 }
257
258 found = true;
259 break;
260 }
261 }
jimfly016b0b53d2018-10-08 14:43:01 +0100262 std::stringstream warningMsg;
Matteo Martincigh49124022019-01-11 13:25:59 +0000263 warningMsg << "Layer of type " << GetLayerTypeAsCString(layer->GetType())
David Beck33f0ae02018-10-18 15:13:56 +0100264 << " is not supported on requested backend " << layer->GetBackendId().Get()
jimfly016b0b53d2018-10-08 14:43:01 +0100265 << " for data type " << GetDataTypeName(dataType)
266 << " (reason: " << reasonIfUnsupported
267 << "), falling back to the next backend.";
Matteo Martincigh49124022019-01-11 13:25:59 +0000268 ReportWarning(warningMsg.str(), errMessages);
telsoa01c577f2c2018-08-31 09:22:23 +0100269 }
270 else
271 {
272 found = true;
Matteo Martincigh49124022019-01-11 13:25:59 +0000273 backendSettings.m_SelectedBackends.insert(backend);
telsoa01c577f2c2018-08-31 09:22:23 +0100274 break;
275 }
276 }
277
278 // If the layer is unsupported by any devices, log and return a null network.
Matteo Martincigh49124022019-01-11 13:25:59 +0000279 if (!found)
280 {
telsoa01c577f2c2018-08-31 09:22:23 +0100281 // NOTE: if the layer is not an operation queue type AND we have not got CpuRef as a
282 // fallback we should set the compute device on the layer to CpuRef (these are not
283 // available as accelerated operations, or are only available under certain
284 // conditions, currently they comprise MemCopy, Constant, Permute)
285 armnn::LayerType layerType = layer->GetType();
Matteo Martincigh49124022019-01-11 13:25:59 +0000286 if (!backendSettings.IsCpuRefUsed() && (layerType == armnn::LayerType::MemCopy ||
287 layerType == armnn::LayerType::Constant ||
288 layerType == armnn::LayerType::Permute))
telsoa01c577f2c2018-08-31 09:22:23 +0100289 {
Matteo Martincigh49124022019-01-11 13:25:59 +0000290 BackendId cpuBackendId(armnn::Compute::CpuRef);
291 layer->SetBackendId(cpuBackendId);
292 backendSettings.m_SelectedBackends.insert(cpuBackendId);
telsoa01c577f2c2018-08-31 09:22:23 +0100293 }
294 else
295 {
296 return ReturnWithError(layer);
297 }
298 }
299 }
Matteo Martincigh49124022019-01-11 13:25:59 +0000300
301 return result;
302}
303
Matteo Martincighadddddb2019-01-24 14:06:23 +0000304OptimizationResult AssignBackends(OptimizedNetwork* optNetObjPtr,
305 BackendSettings& backendSettings,
Derek Lambertiff05cc52019-04-26 13:05:17 +0100306 SubgraphView& subgraph,
Matteo Martincighadddddb2019-01-24 14:06:23 +0000307 Optional<std::vector<std::string>&> errMessages)
Matteo Martincigh49124022019-01-11 13:25:59 +0000308{
Derek Lambertiff05cc52019-04-26 13:05:17 +0100309 Graph::Iterator firstLayer = subgraph.begin();
310 Graph::Iterator lastLayer = subgraph.end();
Matteo Martincighadddddb2019-01-24 14:06:23 +0000311 return AssignBackends(optNetObjPtr,
312 backendSettings,
313 firstLayer,
314 lastLayer,
315 errMessages);
316}
317
Derek Lamberti84da38b2019-06-13 11:40:08 +0100318BackendsMap CreateSupportedBackends(TensorHandleFactoryRegistry& handleFactoryRegistry,
319 BackendSettings& backendSettings)
320{
321 BackendsMap backends;
322 auto const& backendRegistry = BackendRegistryInstance();
323 for (auto&& selectedBackend : backendSettings.m_SupportedBackends)
324 {
325 auto backendFactory = backendRegistry.GetFactory(selectedBackend);
326 auto backendObjPtr = backendFactory();
327 BOOST_ASSERT(backendObjPtr);
328
329 backendObjPtr->RegisterTensorHandleFactories(handleFactoryRegistry);
330
331 backends[backendObjPtr->GetId()] = std::move(backendObjPtr);
332 }
333
334 return backends;
335}
336
Matteo Martincighadddddb2019-01-24 14:06:23 +0000337OptimizationResult ApplyBackendOptimizations(OptimizedNetwork* optNetObjPtr,
338 BackendSettings& backendSettings,
Derek Lamberti84da38b2019-06-13 11:40:08 +0100339 BackendsMap& backends,
Matteo Martincighadddddb2019-01-24 14:06:23 +0000340 Optional<std::vector<std::string>&> errMessages)
341{
342 BOOST_ASSERT(optNetObjPtr);
Matteo Martincigh49124022019-01-11 13:25:59 +0000343
344 OptimizationResult result;
345
Matteo Martincighadddddb2019-01-24 14:06:23 +0000346 // Get the optimized graph
347 Graph& optGraph = optNetObjPtr->GetGraph();
Matteo Martincigh49124022019-01-11 13:25:59 +0000348
Matteo Martincighadddddb2019-01-24 14:06:23 +0000349 // Run backend specific optimizations
Matteo Martincighadddddb2019-01-24 14:06:23 +0000350 for (auto&& selectedBackend : backendSettings.m_SelectedBackends)
Matteo Martincigh49124022019-01-11 13:25:59 +0000351 {
Derek Lamberti84da38b2019-06-13 11:40:08 +0100352 auto backendObjPtr = backends.find(selectedBackend)->second.get();
Matteo Martincighadddddb2019-01-24 14:06:23 +0000353 BOOST_ASSERT(backendObjPtr);
354
355 // Select sub-graphs based on backend
Derek Lambertiff05cc52019-04-26 13:05:17 +0100356 SubgraphViewSelector::Subgraphs subgraphs =
Rob Hughes65c32262019-07-23 15:33:39 +0100357 SubgraphViewSelector::SelectSubgraphs(optGraph,
Matteo Martincigh602af092019-05-01 10:31:27 +0100358 // Select layers assigned to the requested backend
359 [&backendObjPtr](const Layer& layer)
360 {
361 return layer.GetType() != LayerType::Input &&
362 layer.GetType() != LayerType::Output &&
363 layer.GetBackendId() == backendObjPtr->GetId();
364 });
Derek Lambertiff05cc52019-04-26 13:05:17 +0100365 if (subgraphs.empty())
Matteo Martincigh49124022019-01-11 13:25:59 +0000366 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000367 // No sub-graphs found, try with next selected backend
368 continue;
Matteo Martincigh49124022019-01-11 13:25:59 +0000369 }
Matteo Martincighadddddb2019-01-24 14:06:23 +0000370
371 // Try to optimize each sub-graph
Derek Lambertiff05cc52019-04-26 13:05:17 +0100372 for (auto& subgraph : subgraphs)
Matteo Martincigh49124022019-01-11 13:25:59 +0000373 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000374 // Try to optimize the current sub-graph
Matteo Martincigh84924332019-05-09 12:46:16 +0100375 OptimizationViews optimizationViews = backendObjPtr->OptimizeSubgraphView(*subgraph);
376 BOOST_ASSERT(optimizationViews.Validate(*subgraph));
Matteo Martincighadddddb2019-01-24 14:06:23 +0000377
378 // Optimization attempted, check the resulting optimized sub-graph
Matteo Martincigh84924332019-05-09 12:46:16 +0100379 for (auto& substitution : optimizationViews.GetSubstitutions())
Matteo Martincighadddddb2019-01-24 14:06:23 +0000380 {
381 // Sub-graph optimized, substitute the sub-graph with the new optimized one in the main optimized graph
Matteo Martincigh84924332019-05-09 12:46:16 +0100382 SubgraphView& replacementSubgraph = substitution.m_ReplacementSubgraph;
383 SubgraphView& substitutableSubgraph = substitution.m_SubstitutableSubgraph;
384 optGraph.SubstituteSubgraph(substitutableSubgraph, replacementSubgraph);
Matteo Martincighadddddb2019-01-24 14:06:23 +0000385
386 // Assign the current backend to the optimized sub-graph
Matteo Martincigh84924332019-05-09 12:46:16 +0100387 std::for_each(replacementSubgraph.begin(), replacementSubgraph.end(), [&selectedBackend](Layer* l)
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100388 {
389 BOOST_ASSERT(l);
390 l->SetBackendId(selectedBackend);
391 });
Matteo Martincighadddddb2019-01-24 14:06:23 +0000392 }
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100393
Matteo Martincigh84924332019-05-09 12:46:16 +0100394 if (!optimizationViews.GetFailedSubgraphs().empty())
Matteo Martincighadddddb2019-01-24 14:06:23 +0000395 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000396 std::stringstream warningMsg;
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100397 warningMsg << "Some sub-graph(s) failed to optimized on " << backendObjPtr->GetId() << " backend.";
Matteo Martincighadddddb2019-01-24 14:06:23 +0000398 ReportWarning(warningMsg.str(), errMessages);
399
400 // Failed to optimize the given sub-graph, re-assign the sub-graph layers to other available backends
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100401 BackendSettings settingsCopy(backendSettings);
Matteo Martincighadddddb2019-01-24 14:06:23 +0000402 if (!backendObjPtr->GetId().IsCpuRef())
403 {
404 // Add the current backend to the list of backends to ignore
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100405 settingsCopy.m_IgnoredBackends.insert(backendObjPtr->GetId());
Matteo Martincighadddddb2019-01-24 14:06:23 +0000406 }
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100407
408 int count=0;
Matteo Martincigh84924332019-05-09 12:46:16 +0100409 for (auto& failedSubgraph : optimizationViews.GetFailedSubgraphs())
Matteo Martincighadddddb2019-01-24 14:06:23 +0000410 {
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100411 // An error occurred: the optimization was attempted but not performed, try different backends
412 std::stringstream subgraphMsg;
413 subgraphMsg << "Re-assigning backends to " << failedSubgraph.GetLayers().size()
414 << " layers inside sub-graph " << count++;
Matteo Martincigh328d92b2019-07-04 17:52:55 +0100415 ReportWarning(subgraphMsg.str(), errMessages);
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100416
417 OptimizationResult reassignmentResult = AssignBackends(optNetObjPtr,
418 settingsCopy,
419 *subgraph,
420 errMessages);
421 if (reassignmentResult.m_Error)
422 {
423 // Failed to re-assign one of the remaining backends to each layer of the sub-graph
424 result.m_Error = true;
425 return result;
426 }
Matteo Martincighadddddb2019-01-24 14:06:23 +0000427 }
Matteo Martincigh49124022019-01-11 13:25:59 +0000428 }
429 }
430 }
431
432 return result;
433}
434
Derek Lamberti84da38b2019-06-13 11:40:08 +0100435bool RequiresCopy(ITensorHandleFactory::FactoryId src,
436 ITensorHandleFactory::FactoryId dst,
437 TensorHandleFactoryRegistry& registry)
438{
439 if (src != dst)
440 {
441 ITensorHandleFactory* srcFactory = registry.GetFactory(src);
442 ITensorHandleFactory* dstFactory = registry.GetFactory(dst);
443
Matteo Martincigha6539ed2019-08-27 13:43:32 +0100444 if (srcFactory && dstFactory &&
445 (srcFactory->GetExportFlags() & dstFactory->GetImportFlags()) != 0)
Derek Lamberti84da38b2019-06-13 11:40:08 +0100446 {
447 return false;
448 }
449 return true;
450 }
451 return false;
452}
453
454// Find the handle factory for the input layer which results in fewest required copies.
455ITensorHandleFactory::FactoryId CalculateSlotOptionForInput(BackendsMap& backends,
456 OutputSlot& slot,
457 TensorHandleFactoryRegistry& registry)
458{
459 Layer& layer = slot.GetOwningLayer();
460 BOOST_ASSERT(layer.GetType() == LayerType::Input);
461
462 // Explicitly select the tensorhandle factory for InputLayer because the rules for it are slightly different. It
463 // doesn't matter which backend it is assigned to because they all use the same implementation, which
464 // requires Map/Unmap support. This means that, so long as the handle type supports map/unmap semantics, we can
465 // select a factory with maximum compatibility with the layers connected to the InputLayer.
466
467 // First ensure the from backends can support the TensorHandeAPI
468 auto frmBackend = backends.find(layer.GetBackendId());
469 if (frmBackend == backends.end() ||
470 !frmBackend->second->SupportsTensorAllocatorAPI())
471 {
472 return ITensorHandleFactory::LegacyFactoryId;
473 }
474
475 // Go through all connections to the output slot and determine the TensorHandleFactory which results in the
476 // fewest copies.
477 std::map<ITensorHandleFactory::FactoryId, int> factoryScores;
478 int topScore = 0;
479 ITensorHandleFactory::FactoryId topChoice = ITensorHandleFactory::LegacyFactoryId;
480
481 for (auto&& connection : slot.GetConnections())
482 {
483 const Layer& connectedLayer = connection->GetOwningLayer();
484
485 auto toBackend = backends.find(connectedLayer.GetBackendId());
486 BOOST_ASSERT_MSG(toBackend != backends.end(), "Backend id not found for the connected layer");
487
488 if (!toBackend->second.get()->SupportsTensorAllocatorAPI())
489 {
490 // The destination backend does not support the tensor allocator API, move to the next one
491 continue;
492 }
493
494 auto dstPrefs = toBackend->second.get()->GetHandleFactoryPreferences();
495 for (auto&& dst : dstPrefs)
496 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100497 // Input layers use the mem copy workload or import, so the selected factory must
498 // support either the map/unmap API or Import API
Derek Lamberti84da38b2019-06-13 11:40:08 +0100499 ITensorHandleFactory* factory = registry.GetFactory(dst);
Derek Lambertif674aa02019-08-01 15:56:25 +0100500 if (!factory->SupportsMapUnmap() &&
501 !CheckFlag(factory->GetImportFlags(), MemorySource::Malloc)) // Just support cpu mem imports for now
Derek Lamberti84da38b2019-06-13 11:40:08 +0100502 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100503 // The current tensor handle factory does not support the map/unmap or import
504 // strategy, move to the next one
Derek Lamberti84da38b2019-06-13 11:40:08 +0100505 continue;
506 }
507
508 auto it = factoryScores.find(dst);
509 if (it == factoryScores.end())
510 {
511 // Add new score to the table
512 factoryScores[dst] = 0;
513 if (topChoice == ITensorHandleFactory::LegacyFactoryId)
514 {
515 topChoice = dst;
516 }
517 }
518 else
519 {
520 // Increase the score
521 factoryScores[dst]++;
522
523 // Track the best option
524 if (factoryScores[dst] > topScore)
525 {
526 topScore = factoryScores[dst];
527 topChoice = dst;
528 }
529 }
530 }
531 }
532
533 return topChoice;
534}
535
536// Find the handle factory for the output layer which results in fewest required copies.
537ITensorHandleFactory::FactoryId CalculateSlotOptionForOutput(BackendsMap& backends,
538 OutputSlot& slot,
539 TensorHandleFactoryRegistry& registry)
540{
541 return ITensorHandleFactory::DeferredFactoryId;
542}
543
544// For all handle factories supported on the source backend, we wish to find the one which requires the fewest copies
545// when considering all connections.
546ITensorHandleFactory::FactoryId CalculateSlotOption(BackendsMap& backends,
547 OutputSlot& outputSlot,
548 TensorHandleFactoryRegistry& registry)
549{
550 // First ensure the from backends can support the TensorHandeAPI
551 Layer& layer = outputSlot.GetOwningLayer();
552 auto frmBackend = backends.find(layer.GetBackendId());
553 if (frmBackend == backends.end() ||
554 !frmBackend->second->SupportsTensorAllocatorAPI())
555 {
556 return ITensorHandleFactory::LegacyFactoryId;
557 }
558
559 // Connections to Output Layers requires support for map/unmap on the TensorHandle.
560 bool requiresMapUnmap = false;
561 for (auto&& connection : outputSlot.GetConnections())
562 {
563 const Layer& connectedLayer = connection->GetOwningLayer();
564 if (connectedLayer.GetType() == LayerType::Output)
565 {
566 requiresMapUnmap = true;
567 }
568 }
569
570 IBackendInternal* srcBackend = frmBackend->second.get();
571 auto srcPrefs = srcBackend->GetHandleFactoryPreferences();
572
573 // Initialize the scores
574 std::map<ITensorHandleFactory::FactoryId, int> factoryScores;
575 for (auto&& pref : srcPrefs)
576 {
577 if (requiresMapUnmap) // Only consider factories that support map/unmap if required
578 {
579 ITensorHandleFactory* factory = registry.GetFactory(pref);
580 if (!factory->SupportsMapUnmap())
581 {
582 // The current tensor handle factory does not support the map/unmap strategy, move to the next one
583 continue;
584 }
585 }
586
587 auto it = factoryScores.find(pref);
588 if (it == factoryScores.end())
589 {
590 // Add new score to the table
591 factoryScores[pref] = 0;
592 }
593 }
594
595 // Score each handle factory based on how many times it requires copies on the slot connections
596 for (auto&& connection : outputSlot.GetConnections())
597 {
598 const Layer& connectedLayer = connection->GetOwningLayer();
599
600 auto toBackend = backends.find(connectedLayer.GetBackendId());
601 BOOST_ASSERT_MSG(toBackend != backends.end(), "Backend id not found for the connected layer");
602
603 auto dstPrefs = toBackend->second.get()->GetHandleFactoryPreferences();
604 for (auto&& src : srcPrefs)
605 {
606 if (factoryScores.find(src) == factoryScores.end()) // Don't consider excluded factories
607 {
608 continue;
609 }
610
611 for (auto&& dst : dstPrefs)
612 {
613 if (RequiresCopy(src, dst, registry))
614 {
615 // Copy avoided, increase the score
616 factoryScores[src]++;
617 break;
618 }
619 }
620 }
621 }
622
623 // Find the lowest score
624 int minScore = std::numeric_limits<int>::max();
625 for (auto it : factoryScores)
626 {
627 minScore = std::min(minScore, it.second);
628 }
629
630 // Collect factories matching the best(lowest) score
631 std::vector<ITensorHandleFactory::FactoryId> optimalFactories;
632 for (auto it : factoryScores)
633 {
634 if (it.second == minScore)
635 {
636 optimalFactories.push_back(it.first);
637 }
638 }
639
640 // For all compatible Factories matching the best score, find the preferred one for the current layer.
641 for (auto&& srcPref : srcPrefs)
642 {
643 for (auto&& comp : optimalFactories)
644 {
645 if (comp == srcPref)
646 {
647 return comp;
648 }
649 }
650 }
651
652 return ITensorHandleFactory::LegacyFactoryId;
653}
654
Derek Lambertif674aa02019-08-01 15:56:25 +0100655EdgeStrategy CalculateEdgeStrategy(BackendsMap& backends,
656 ITensorHandleFactory::FactoryId srcFactoryId,
657 const Layer& layer,
658 const Layer& connectedLayer,
659 TensorHandleFactoryRegistry& registry)
Derek Lamberti84da38b2019-06-13 11:40:08 +0100660{
661 auto toBackend = backends.find(connectedLayer.GetBackendId());
662 BOOST_ASSERT_MSG(toBackend != backends.end(), "Backend id not found for the connected layer");
663
664 auto dstPrefs = toBackend->second.get()->GetHandleFactoryPreferences();
665
666 // Legacy API check for backward compatibility
667 if (srcFactoryId == ITensorHandleFactory::LegacyFactoryId || dstPrefs.empty())
668 {
669 if (layer.GetBackendId() != connectedLayer.GetBackendId())
670 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100671 return EdgeStrategy::CopyToTarget;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100672 }
673 else
674 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100675 return EdgeStrategy::DirectCompatibility;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100676 }
677 }
678
679 // TensorHandleFactory API present, so perform more sophisticated strategies.
Derek Lambertif674aa02019-08-01 15:56:25 +0100680 // Dst Output layers don't require copy because they use import or map/unmap
Derek Lamberti84da38b2019-06-13 11:40:08 +0100681 if (connectedLayer.GetType() == LayerType::Output)
682 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100683 return EdgeStrategy::DirectCompatibility;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100684 }
685
686 // Search for direct match in prefs
687 for (auto&& pref : dstPrefs)
688 {
689 if (pref == srcFactoryId)
690 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100691 return EdgeStrategy::DirectCompatibility;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100692 }
693 }
694
695 // Search for export/import options
696 ITensorHandleFactory* srcFactory = registry.GetFactory(srcFactoryId);
Derek Lambertif674aa02019-08-01 15:56:25 +0100697 if (srcFactory->GetExportFlags() != 0)
Derek Lamberti84da38b2019-06-13 11:40:08 +0100698 {
699 for (auto&& pref : dstPrefs)
700 {
701 ITensorHandleFactory* dstFactory = registry.GetFactory(pref);
Derek Lambertif674aa02019-08-01 15:56:25 +0100702 if ((dstFactory->GetImportFlags() & srcFactory->GetExportFlags()) != 0)
Derek Lamberti84da38b2019-06-13 11:40:08 +0100703 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100704 return EdgeStrategy::ExportToTarget;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100705 }
706 }
707 }
708
709 // Search for copy options via map/unmap
710 if (srcFactory->SupportsMapUnmap())
711 {
712 for (auto&& pref : dstPrefs)
713 {
714 ITensorHandleFactory* dstFactory = registry.GetFactory(pref);
715 if (dstFactory->SupportsMapUnmap())
716 {
Derek Lambertif674aa02019-08-01 15:56:25 +0100717 return EdgeStrategy::CopyToTarget;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100718 }
719 }
720 }
721
Derek Lambertif674aa02019-08-01 15:56:25 +0100722 return EdgeStrategy::Undefined;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100723}
724
725// Select the TensorHandleFactories and the corresponding memory strategy
726OptimizationResult SelectTensorHandleStrategy(Graph& optGraph,
727 BackendsMap& backends,
728 TensorHandleFactoryRegistry& registry,
729 Optional<std::vector<std::string>&> errMessages)
730{
731 OptimizationResult result;
732
733 optGraph.ForEachLayer([&backends, &registry, &result, &errMessages](Layer* layer)
734 {
735 BOOST_ASSERT(layer);
736
737 // Lets make sure the backend is in our list of supported backends. Something went wrong during backend
738 // assignment if this check fails
739 BOOST_ASSERT(backends.find(layer->GetBackendId()) != backends.end());
740
741 // Check each output separately
742 for (unsigned int slotIdx = 0; slotIdx < layer->GetNumOutputSlots(); slotIdx++)
743 {
744 OutputSlot& outputSlot = layer->GetOutputSlot(slotIdx);
745
746 ITensorHandleFactory::FactoryId slotOption = ITensorHandleFactory::LegacyFactoryId;
747
748 // Calculate the factory to use which results in the fewest copies being made.
749 switch(layer->GetType())
750 {
751 case LayerType::Input:
752 slotOption = CalculateSlotOptionForInput(backends, outputSlot, registry);
753 break;
754 case LayerType::Output:
755 slotOption = CalculateSlotOptionForOutput(backends, outputSlot, registry);
756 break;
757 default:
758 slotOption = CalculateSlotOption(backends, outputSlot, registry);
759 break;
760 }
761 outputSlot.SetTensorHandleFactory(slotOption);
762
Derek Lambertif674aa02019-08-01 15:56:25 +0100763 // Now determine the "best" edge strategy for each connection given the slotOption.
Derek Lamberti84da38b2019-06-13 11:40:08 +0100764 unsigned int connectionIdx = 0;
765 for (auto&& connection : outputSlot.GetConnections())
766 {
767 const Layer& connectedLayer = connection->GetOwningLayer();
768
Derek Lambertif674aa02019-08-01 15:56:25 +0100769 EdgeStrategy strategy = CalculateEdgeStrategy(backends, slotOption, *layer, connectedLayer, registry);
Derek Lamberti84da38b2019-06-13 11:40:08 +0100770
Derek Lambertif674aa02019-08-01 15:56:25 +0100771 if (strategy == EdgeStrategy::Undefined)
Derek Lamberti84da38b2019-06-13 11:40:08 +0100772 {
773 result.m_Error = true;
774 if (errMessages)
775 {
776 errMessages.value().emplace_back("Could not find valid strategy required for compatibility"
777 " between backends.");
778 }
779 return;
780 }
781
Derek Lambertif674aa02019-08-01 15:56:25 +0100782 outputSlot.SetEdgeStrategy(connectionIdx, strategy);
Derek Lamberti84da38b2019-06-13 11:40:08 +0100783
784 connectionIdx++;
785 }
786 }
787 });
788
789 return result;
790}
791
Matteo Martincigh49124022019-01-11 13:25:59 +0000792IOptimizedNetworkPtr Optimize(const INetwork& inNetwork,
793 const std::vector<BackendId>& backendPreferences,
794 const IDeviceSpec& deviceSpec,
795 const OptimizerOptions& options,
796 Optional<std::vector<std::string>&> errMessages)
797{
798 if (backendPreferences.empty())
799 {
800 throw armnn::InvalidArgumentException("Invoked Optimize with no backends specified");
801 }
802
803 const Network& network = *boost::polymorphic_downcast<const Network*>(&inNetwork);
804 std::unique_ptr<Graph> graph = std::make_unique<Graph>(network.GetGraph());
805
806 auto optNet = IOptimizedNetworkPtr(new OptimizedNetwork(std::move(graph)), &IOptimizedNetwork::Destroy);
807
808 OptimizedNetwork* optNetObjPtr = boost::polymorphic_downcast<OptimizedNetwork*>(optNet.get());
809
Matteo Martincighadddddb2019-01-24 14:06:23 +0000810 // Get the optimized graph
811 Graph& optGraph = optNetObjPtr->GetGraph();
812
Matteo Martincigh49124022019-01-11 13:25:59 +0000813 // Perform optimisation passes
814 using namespace optimizations;
Matteo Martincighadddddb2019-01-24 14:06:23 +0000815 Optimizer::Pass(optGraph, MakeOptimizations(SquashEqualPermuteSiblings(),
816 SquashEqualReshapeSiblings(),
817 OptimizeInversePermutes(),
818 MovePermuteUp(),
819 PermuteAsReshape(),
Nina Drozd861985f2019-04-18 14:48:51 +0100820 OptimizeConsecutiveReshapes(),
Rob Hughes3a7d3a72019-09-24 16:59:56 +0100821 FoldPadIntoConvolution2d(),
822 PermuteAndBatchToSpaceAsDepthToSpace()));
Matteo Martincigh49124022019-01-11 13:25:59 +0000823
Matteo Martincighadddddb2019-01-24 14:06:23 +0000824 // Infer the tensor infos for all output slots. Throws an exception on failure
825 optGraph.InferTensorInfos();
Matteo Martincigh49124022019-01-11 13:25:59 +0000826
827 // If Fp32 to Fp16 optimization is set convert Fp32 network to Fp16
828 if (options.m_ReduceFp32ToFp16)
829 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000830 Optimizer::Pass(optGraph, MakeOptimizations(Fp32NetworkToFp16Converter()));
Matteo Martincigh49124022019-01-11 13:25:59 +0000831 }
832
833 // Initialize backend settings
834 BackendSettings backendSettings(backendPreferences, deviceSpec);
835 if (backendSettings.GetAvailablePreferredBackends().empty())
836 {
837 std::stringstream failureMsg;
838 failureMsg << "None of the preferred backends " << backendPreferences
839 << " are supported. Current platform provides " << backendSettings.m_SupportedBackends;
840 ReportError(failureMsg.str(), errMessages);
841 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
842 }
843
Derek Lamberti84da38b2019-06-13 11:40:08 +0100844 // Create a map to temporarily hold initialized backend objects
845 TensorHandleFactoryRegistry tensorHandleFactoryRegistry;
846 BackendsMap backends = CreateSupportedBackends(tensorHandleFactoryRegistry, backendSettings);
847
Matteo Martincigh49124022019-01-11 13:25:59 +0000848 // Assign an available backend to each layer
Matteo Martincighadddddb2019-01-24 14:06:23 +0000849 Graph::Iterator firstLayer = optGraph.begin();
850 Graph::Iterator lastLayer = optGraph.end();
Derek Lamberti84da38b2019-06-13 11:40:08 +0100851 OptimizationResult assignBackendsResult = AssignBackends(optNetObjPtr,
852 backendSettings,
853 firstLayer,
854 lastLayer,
855 errMessages);
856 if (assignBackendsResult.m_Error)
Matteo Martincigh49124022019-01-11 13:25:59 +0000857 {
858 // Failed to assign a backend to each layer
jimfly016b0b53d2018-10-08 14:43:01 +0100859 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
860 }
telsoa01c577f2c2018-08-31 09:22:23 +0100861
Matteo Martincighadddddb2019-01-24 14:06:23 +0000862 Optimizer::Pass(optGraph, MakeOptimizations(OptimizeInverseConversionsFp16(),
863 OptimizeInverseConversionsFp32()));
telsoa01c577f2c2018-08-31 09:22:23 +0100864
Matteo Martincighadddddb2019-01-24 14:06:23 +0000865 // Apply the backend-specific optimizations
866 OptimizationResult backendOptimizationResult = ApplyBackendOptimizations(optNetObjPtr,
867 backendSettings,
Derek Lamberti84da38b2019-06-13 11:40:08 +0100868 backends,
Matteo Martincighadddddb2019-01-24 14:06:23 +0000869 errMessages);
870 if (backendOptimizationResult.m_Error)
Matteo Martincigh49124022019-01-11 13:25:59 +0000871 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000872 // Failed to apply the backend-specific optimizations
873 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
Matteo Martincigh49124022019-01-11 13:25:59 +0000874 }
875
Matteo Martincighadddddb2019-01-24 14:06:23 +0000876 // If the debug flag is set, then insert a DebugLayer after each layer
877 // Doing this after applying the backend optimizations as they might have changed some layers
878 if (options.m_Debug)
879 {
880 Optimizer::Pass(optGraph, MakeOptimizations(InsertDebugLayer()));
881 }
882
Derek Lamberti84da38b2019-06-13 11:40:08 +0100883 // Calculate the compatibility strategies for tensor handles
884 OptimizationResult strategyResult = SelectTensorHandleStrategy(optGraph,
885 backends,
886 tensorHandleFactoryRegistry,
887 errMessages);
888 if (strategyResult.m_Error)
889 {
890 // Failed to apply the backend-specific optimizations
891 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
892 }
893
894 // Based on the tensor handle strategy determined above, insert copy layers where required.
Derek Lambertif674aa02019-08-01 15:56:25 +0100895 optGraph.AddCompatibilityLayers(backends, tensorHandleFactoryRegistry);
telsoa01c577f2c2018-08-31 09:22:23 +0100896
897 // Convert constants
Matteo Martincighadddddb2019-01-24 14:06:23 +0000898 Optimizer::Pass(optGraph, MakeOptimizations(ConvertConstantsFloatToHalf()));
899 Optimizer::Pass(optGraph, MakeOptimizations(ConvertConstantsHalfToFloat()));
telsoa01c577f2c2018-08-31 09:22:23 +0100900
Derek Lamberti84da38b2019-06-13 11:40:08 +0100901 // Run backend specific optimizations (deprecated)
Matteo Martincigh49124022019-01-11 13:25:59 +0000902 for (auto&& chosenBackend : backendSettings.m_SelectedBackends)
David Beck263e3492018-11-09 14:46:40 +0000903 {
904 auto factoryFun = BackendRegistryInstance().GetFactory(chosenBackend);
905 auto backendPtr = factoryFun();
906 BOOST_ASSERT(backendPtr.get() != nullptr);
907
Matteo Martincighed735042019-05-22 09:42:43 +0100908 ARMNN_NO_DEPRECATE_WARN_BEGIN
David Beck263e3492018-11-09 14:46:40 +0000909 auto backendSpecificOptimizations = backendPtr->GetOptimizations();
Matteo Martincighed735042019-05-22 09:42:43 +0100910 ARMNN_NO_DEPRECATE_WARN_END
911
David Beck263e3492018-11-09 14:46:40 +0000912 if (!backendSpecificOptimizations.empty())
913 {
914 Optimizer::Pass(optNetObjPtr->GetGraph(), backendSpecificOptimizations);
915 }
916 }
917
telsoa01c577f2c2018-08-31 09:22:23 +0100918 return optNet;
telsoa014fcda012018-03-09 14:13:49 +0000919}
920
921Network::Network()
922: m_Graph(std::make_unique<Graph>())
923{
924}
925
926Network::~Network()
927{
928}
929
930IConnectableLayer* Network::AddInputLayer(LayerBindingId id, const char* name)
931{
932 return m_Graph->AddLayer<InputLayer>(id, name);
933}
934
Éanna Ó Catháin4e1e1362018-11-12 11:36:34 +0000935IConnectableLayer* Network::AddBatchToSpaceNdLayer(const BatchToSpaceNdDescriptor& batchToSpaceNdDescriptor,
936 const char* name)
937{
938 return m_Graph->AddLayer<BatchToSpaceNdLayer>(batchToSpaceNdDescriptor, name);
939}
940
telsoa014fcda012018-03-09 14:13:49 +0000941IConnectableLayer* Network::AddFullyConnectedLayerImpl(const FullyConnectedDescriptor& fullyConnectedDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100942 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000943 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +0100944 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000945{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000946 if (fullyConnectedDescriptor.m_BiasEnabled && !biases.has_value())
telsoa014fcda012018-03-09 14:13:49 +0000947 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000948 throw InvalidArgumentException("AddFullyConnectedLayer: biases cannot be empty");
telsoa014fcda012018-03-09 14:13:49 +0000949 }
950
951 const auto layer = m_Graph->AddLayer<FullyConnectedLayer>(fullyConnectedDescriptor, name);
952
953 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
954
955 if (fullyConnectedDescriptor.m_BiasEnabled)
956 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000957 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
telsoa014fcda012018-03-09 14:13:49 +0000958 }
959
960 return layer;
961}
962
963IConnectableLayer* Network::AddFullyConnectedLayer(const FullyConnectedDescriptor& fullyConnectedDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100964 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000965 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +0100966 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000967{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000968 return AddFullyConnectedLayerImpl(fullyConnectedDescriptor, weights, biases, name);
telsoa014fcda012018-03-09 14:13:49 +0000969}
970
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000971IConnectableLayer* Network::AddFullyConnectedLayer(const FullyConnectedDescriptor& fullyConnectedDescriptor,
972 const ConstTensor& weights,
973 const char* name)
974{
Matteo Martincighfc598e12019-05-14 10:36:13 +0100975 Optional<ConstTensor> biases;
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000976 return AddFullyConnectedLayerImpl(fullyConnectedDescriptor, weights, biases, name);
977}
978
telsoa014fcda012018-03-09 14:13:49 +0000979IConnectableLayer* Network::AddFullyConnectedLayer(const FullyConnectedDescriptor& fullyConnectedDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100980 const ConstTensor& weights,
981 const ConstTensor& biases,
982 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000983{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000984 Optional<ConstTensor> optionalBiases(biases);
985 return AddFullyConnectedLayerImpl(fullyConnectedDescriptor, weights, optionalBiases, name);
telsoa014fcda012018-03-09 14:13:49 +0000986}
987
Jim Flynne242f2d2019-05-22 14:24:13 +0100988IConnectableLayer* Network::AddConcatLayer(const ConcatDescriptor& concatDescriptor,
Jim Flynn906f9462019-05-10 13:55:21 +0100989 const char* name)
990{
Jim Flynne242f2d2019-05-22 14:24:13 +0100991 return m_Graph->AddLayer<ConcatLayer>(concatDescriptor, name);
Jim Flynn906f9462019-05-10 13:55:21 +0100992}
993
telsoa014fcda012018-03-09 14:13:49 +0000994IConnectableLayer* Network::AddConvolution2dLayerImpl(const Convolution2dDescriptor& convolution2dDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100995 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000996 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +0100997 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000998{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000999 if (convolution2dDescriptor.m_BiasEnabled && !biases.has_value())
telsoa014fcda012018-03-09 14:13:49 +00001000 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001001 throw InvalidArgumentException("AddConvolution2dLayer: biases cannot be empty");
telsoa014fcda012018-03-09 14:13:49 +00001002 }
1003
1004 const auto layer = m_Graph->AddLayer<Convolution2dLayer>(convolution2dDescriptor, name);
1005
1006 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
1007
1008 if (convolution2dDescriptor.m_BiasEnabled)
1009 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001010 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
telsoa014fcda012018-03-09 14:13:49 +00001011 }
1012
1013 return layer;
1014}
1015
1016IConnectableLayer* Network::AddConvolution2dLayer(const Convolution2dDescriptor& convolution2dDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +01001017 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001018 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +01001019 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001020{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001021 return AddConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
telsoa014fcda012018-03-09 14:13:49 +00001022}
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001023
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001024IConnectableLayer* Network::AddConvolution2dLayer(const Convolution2dDescriptor& convolution2dDescriptor,
1025 const ConstTensor& weights,
1026 const char* name)
1027{
Matteo Martincighfc598e12019-05-14 10:36:13 +01001028 Optional<ConstTensor> biases;
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001029 return AddConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
1030}
1031
telsoa014fcda012018-03-09 14:13:49 +00001032IConnectableLayer* Network::AddConvolution2dLayer(const Convolution2dDescriptor& convolution2dDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +01001033 const ConstTensor& weights,
1034 const ConstTensor& biases,
1035 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001036{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001037 Optional<ConstTensor> optionalBiases(biases);
1038 return AddConvolution2dLayerImpl(convolution2dDescriptor, weights, optionalBiases, name);
telsoa014fcda012018-03-09 14:13:49 +00001039}
1040
1041IConnectableLayer* Network::AddDepthwiseConvolution2dLayerImpl(
1042 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1043 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001044 const Optional<ConstTensor>& biases,
telsoa014fcda012018-03-09 14:13:49 +00001045 const char* name)
1046{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001047 if (convolution2dDescriptor.m_BiasEnabled && !biases.has_value())
telsoa014fcda012018-03-09 14:13:49 +00001048 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001049 throw InvalidArgumentException("AddDepthwiseConvolution2dLayer: biases cannot be empty");
telsoa014fcda012018-03-09 14:13:49 +00001050 }
1051
Matteo Martincigh3d6898c2019-01-15 16:11:44 +00001052 const auto layer = m_Graph->AddLayer<DepthwiseConvolution2dLayer>(convolution2dDescriptor, name);
telsoa014fcda012018-03-09 14:13:49 +00001053
1054 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
1055
1056 if (convolution2dDescriptor.m_BiasEnabled)
1057 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001058 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
telsoa014fcda012018-03-09 14:13:49 +00001059 }
1060
1061 return layer;
1062}
1063
Aron Virginas-Tardd6247f2019-09-19 14:31:17 +01001064IConnectableLayer* Network::AddDepthToSpaceLayer(const DepthToSpaceDescriptor& depthToSpaceDescriptor,
1065 const char* name)
1066{
1067 return m_Graph->AddLayer<DepthToSpaceLayer>(depthToSpaceDescriptor, name);
1068}
1069
telsoa014fcda012018-03-09 14:13:49 +00001070IConnectableLayer* Network::AddDepthwiseConvolution2dLayer(
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001071 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1072 const ConstTensor& weights,
1073 const Optional<ConstTensor>& biases,
1074 const char* name)
1075{
1076 return AddDepthwiseConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
1077}
1078
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001079IConnectableLayer* Network::AddDepthwiseConvolution2dLayer(
telsoa014fcda012018-03-09 14:13:49 +00001080 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1081 const ConstTensor& weights,
1082 const char* name)
1083{
Matteo Martincighfc598e12019-05-14 10:36:13 +01001084 Optional<ConstTensor> biases;
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001085 return AddDepthwiseConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
telsoa014fcda012018-03-09 14:13:49 +00001086}
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001087
telsoa014fcda012018-03-09 14:13:49 +00001088IConnectableLayer* Network::AddDepthwiseConvolution2dLayer(
1089 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1090 const ConstTensor& weights,
1091 const ConstTensor& biases,
1092 const char* name)
1093{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001094 Optional<ConstTensor> optionalBiases(biases);
1095 return AddDepthwiseConvolution2dLayerImpl(convolution2dDescriptor, weights, optionalBiases, name);
telsoa014fcda012018-03-09 14:13:49 +00001096}
1097
Narumol Prangnawarat94dd5d82019-01-23 18:06:26 +00001098IConnectableLayer* Network::AddDetectionPostProcessLayer(const armnn::DetectionPostProcessDescriptor& descriptor,
Narumol Prangnawarat6d302bf2019-02-04 11:46:26 +00001099 const ConstTensor& anchors, const char* name)
Narumol Prangnawarat94dd5d82019-01-23 18:06:26 +00001100{
Narumol Prangnawarat6d302bf2019-02-04 11:46:26 +00001101 const auto layer = m_Graph->AddLayer<DetectionPostProcessLayer>(descriptor, name);
1102
1103 layer->m_Anchors = std::make_unique<ScopedCpuTensorHandle>(anchors);
1104
1105 return layer;
Narumol Prangnawarat94dd5d82019-01-23 18:06:26 +00001106}
1107
telsoa014fcda012018-03-09 14:13:49 +00001108IConnectableLayer* Network::AddPermuteLayer(const PermuteDescriptor& permuteDescriptor,
1109 const char* name)
1110{
1111 return m_Graph->AddLayer<PermuteLayer>(permuteDescriptor, name);
1112}
1113
1114IConnectableLayer* Network::AddPooling2dLayer(const Pooling2dDescriptor& pooling2dDescriptor,
1115 const char* name)
1116{
1117 return m_Graph->AddLayer<Pooling2dLayer>(pooling2dDescriptor, name);
1118}
1119
1120IConnectableLayer* Network::AddActivationLayer(const ActivationDescriptor& activationDescriptor,
1121 const char* name)
1122{
1123 return m_Graph->AddLayer<ActivationLayer>(activationDescriptor, name);
1124}
1125
Nikhil Rajee391d52019-09-05 17:50:44 +01001126IConnectableLayer* Network::AddArgMinMaxLayer(const ArgMinMaxDescriptor& argMinMaxDescriptor,
1127 const char* name)
1128{
1129 return m_Graph->AddLayer<ArgMinMaxLayer>(argMinMaxDescriptor, name);
1130}
1131
telsoa01c577f2c2018-08-31 09:22:23 +01001132IConnectableLayer* Network::AddNormalizationLayer(const NormalizationDescriptor&
1133normalizationDescriptor,
telsoa014fcda012018-03-09 14:13:49 +00001134 const char* name)
1135{
1136 return m_Graph->AddLayer<NormalizationLayer>(normalizationDescriptor, name);
1137}
1138
Aron Virginas-Tar636ab402019-09-16 14:27:45 +01001139IConnectableLayer* Network::AddSliceLayer(const SliceDescriptor& sliceDescriptor, const char* name)
1140{
1141 return m_Graph->AddLayer<SliceLayer>(sliceDescriptor, name);
1142}
1143
telsoa014fcda012018-03-09 14:13:49 +00001144IConnectableLayer* Network::AddSoftmaxLayer(const SoftmaxDescriptor& softmaxDescriptor,
1145 const char* name)
1146{
1147 return m_Graph->AddLayer<SoftmaxLayer>(softmaxDescriptor, name);
1148}
1149
1150IConnectableLayer* Network::AddSplitterLayer(const ViewsDescriptor& splitterDescriptor,
1151 const char* name)
1152{
1153 return m_Graph->AddLayer<SplitterLayer>(splitterDescriptor, name);
1154}
1155
Nattapat Chaimanowong5a4304a2018-11-28 10:44:37 +00001156IConnectableLayer* Network::AddMaximumLayer(const char* name)
1157{
1158 return m_Graph->AddLayer<MaximumLayer>(name);
1159}
1160
Éanna Ó Catháin20e58802018-12-04 10:29:06 +00001161IConnectableLayer* Network::AddMinimumLayer(const char* name)
1162{
1163 return m_Graph->AddLayer<MinimumLayer>(name);
1164}
1165
Jim Flynne242f2d2019-05-22 14:24:13 +01001166IConnectableLayer* Network::AddMergerLayer(const MergerDescriptor& mergerDescriptor,
Jim Flynn906f9462019-05-10 13:55:21 +01001167 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001168{
Jim Flynne242f2d2019-05-22 14:24:13 +01001169 return AddConcatLayer(mergerDescriptor, name);
telsoa014fcda012018-03-09 14:13:49 +00001170}
1171
Kevin May868eb142019-09-04 17:29:31 +01001172IConnectableLayer* Network::AddAbsLayer(const char * name)
1173{
1174 return m_Graph->AddLayer<AbsLayer>(name);
1175}
1176
telsoa014fcda012018-03-09 14:13:49 +00001177IConnectableLayer* Network::AddAdditionLayer(const char* name)
1178{
1179 return m_Graph->AddLayer<AdditionLayer>(name);
1180}
1181
1182IConnectableLayer* Network::AddMultiplicationLayer(const char* name)
1183{
1184 return m_Graph->AddLayer<MultiplicationLayer>(name);
1185}
1186
1187IConnectableLayer* Network::AddOutputLayer(LayerBindingId id, const char* name)
1188{
1189 return m_Graph->AddLayer<OutputLayer>(id, name);
1190}
1191
1192IConnectableLayer* Network::AddBatchNormalizationLayer(const BatchNormalizationDescriptor& desc,
1193 const ConstTensor& mean,
1194 const ConstTensor& variance,
1195 const ConstTensor& beta,
1196 const ConstTensor& gamma,
1197 const char* name)
1198{
1199 const auto layer = m_Graph->AddLayer<BatchNormalizationLayer>(desc, name);
1200
1201 layer->m_Mean = std::make_unique<ScopedCpuTensorHandle>(mean);
1202 layer->m_Variance = std::make_unique<ScopedCpuTensorHandle>(variance);
1203 layer->m_Beta = std::make_unique<ScopedCpuTensorHandle>(beta);
1204 layer->m_Gamma = std::make_unique<ScopedCpuTensorHandle>(gamma);
1205
1206 return layer;
1207}
1208
Aron Virginas-Tar169d2f12019-07-01 19:01:44 +01001209IConnectableLayer* Network::AddResizeBilinearLayer(const ResizeBilinearDescriptor& descriptor,
1210 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001211{
Aron Virginas-Tar169d2f12019-07-01 19:01:44 +01001212 ResizeDescriptor resizeDescriptor;
1213 resizeDescriptor.m_Method = ResizeMethod::Bilinear;
1214 resizeDescriptor.m_DataLayout = descriptor.m_DataLayout;
1215 resizeDescriptor.m_TargetWidth = descriptor.m_TargetWidth;
1216 resizeDescriptor.m_TargetHeight = descriptor.m_TargetHeight;
1217
1218 return m_Graph->AddLayer<ResizeLayer>(resizeDescriptor, name);
telsoa014fcda012018-03-09 14:13:49 +00001219}
1220
Teresa Charlina9075df2019-06-27 15:41:57 +01001221IConnectableLayer* Network::AddResizeLayer(const ResizeDescriptor&
1222resizeDescriptor, const char* name)
1223{
Aron Virginas-Tar169d2f12019-07-01 19:01:44 +01001224 return m_Graph->AddLayer<ResizeLayer>(resizeDescriptor, name);
Teresa Charlina9075df2019-06-27 15:41:57 +01001225}
1226
Kevin Mayce5045a2019-10-02 14:07:47 +01001227IConnectableLayer* Network::AddInstanceNormalizationLayer(const InstanceNormalizationDescriptor& desc,
1228 const char* name)
1229{
1230 return m_Graph->AddLayer<InstanceNormalizationLayer>(desc, name);
1231}
1232
Matteo Martincighbcd3c852018-09-28 14:14:12 +01001233IConnectableLayer* Network::AddL2NormalizationLayer(const L2NormalizationDescriptor& desc,
1234 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001235{
Matteo Martincighbcd3c852018-09-28 14:14:12 +01001236 return m_Graph->AddLayer<L2NormalizationLayer>(desc, name);
telsoa014fcda012018-03-09 14:13:49 +00001237}
1238
Aron Virginas-Tarf982dea2019-10-11 14:07:53 +01001239IConnectableLayer* Network::AddLogSoftmaxLayer(const LogSoftmaxDescriptor& desc,
1240 const char* name)
1241{
1242 return m_Graph->AddLayer<LogSoftmaxLayer>(desc, name);
1243}
1244
telsoa014fcda012018-03-09 14:13:49 +00001245IConnectableLayer* Network::AddConstantLayer(const ConstTensor& input, const char* name)
1246{
telsoa01c577f2c2018-08-31 09:22:23 +01001247 auto layer = m_Graph->AddLayer<ConstantLayer>(name);
1248
1249 layer->m_LayerOutput = std::make_unique<ScopedCpuTensorHandle>(input);
1250
1251 return layer;
telsoa014fcda012018-03-09 14:13:49 +00001252}
1253
telsoa01c577f2c2018-08-31 09:22:23 +01001254IConnectableLayer* Network::AddReshapeLayer(const ReshapeDescriptor& reshapeDescriptor,
1255 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001256{
1257 return m_Graph->AddLayer<ReshapeLayer>(reshapeDescriptor, name);
1258}
1259
Nattapat Chaimanowong207ef9a2018-11-02 10:57:25 +00001260IConnectableLayer* Network::AddSpaceToBatchNdLayer(const SpaceToBatchNdDescriptor& spaceToBatchNdDescriptor,
1261 const char* name)
1262{
1263 return m_Graph->AddLayer<SpaceToBatchNdLayer>(spaceToBatchNdDescriptor, name);
1264}
1265
Aron Virginas-Tar972af152019-06-11 14:14:03 +01001266IConnectableLayer* Network::AddSpaceToDepthLayer(const SpaceToDepthDescriptor& spaceToDepthDescriptor,
1267 const char* name)
1268{
1269 return m_Graph->AddLayer<SpaceToDepthLayer>(spaceToDepthDescriptor, name);
1270}
1271
telsoa014fcda012018-03-09 14:13:49 +00001272IConnectableLayer* Network::AddFloorLayer(const char* name)
1273{
1274 return m_Graph->AddLayer<FloorLayer>(name);
1275}
1276
telsoa01c577f2c2018-08-31 09:22:23 +01001277IConnectableLayer* Network::AddLstmLayer(const LstmDescriptor& descriptor,
1278 const LstmInputParams& params,
1279 const char* name)
1280{
1281 const auto layer = m_Graph->AddLayer<LstmLayer>(descriptor, name);
1282
1283 //Lstm Basic Parameters
1284 layer->m_BasicParameters.m_InputToForgetWeights =
1285 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToForgetWeights));
1286 layer->m_BasicParameters.m_InputToCellWeights =
1287 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToCellWeights));
1288 layer->m_BasicParameters.m_InputToOutputWeights =
1289 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToOutputWeights));
1290 layer->m_BasicParameters.m_RecurrentToForgetWeights =
1291 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToForgetWeights));
1292 layer->m_BasicParameters.m_RecurrentToCellWeights =
1293 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToCellWeights));
1294 layer->m_BasicParameters.m_RecurrentToOutputWeights =
1295 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToOutputWeights));
1296 layer->m_BasicParameters.m_ForgetGateBias =
1297 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ForgetGateBias));
1298 layer->m_BasicParameters.m_CellBias =
1299 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellBias));
1300 layer->m_BasicParameters.m_OutputGateBias =
1301 std::make_unique<ScopedCpuTensorHandle>(*(params.m_OutputGateBias));
1302
1303 //Lstm Cifg parameters
1304 if(!descriptor.m_CifgEnabled)
1305 {
1306 if(params.m_InputToInputWeights == nullptr)
1307 {
1308 throw InvalidArgumentException("AddLstmLayer: Input To Input Weights cannot be NULL");
1309 }
1310 if(params.m_RecurrentToInputWeights == nullptr)
1311 {
1312 throw InvalidArgumentException(
1313 "AddLstmLayer: Recurrent To Input Weights cannot be NULL");
1314 }
1315 if(params.m_InputGateBias == nullptr)
1316 {
1317 throw InvalidArgumentException("AddLstmLayer: Input Gate Bias cannot be NULL");
1318 }
1319 layer->m_CifgParameters.m_InputToInputWeights =
1320 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToInputWeights));
1321 layer->m_CifgParameters.m_RecurrentToInputWeights =
1322 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToInputWeights));
1323 // In the VTS tests, cell-to-input weights may be null, even if the other CIFG params are not.
1324 if(params.m_CellToInputWeights != nullptr)
1325 {
1326 layer->m_CifgParameters.m_CellToInputWeights =
1327 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellToInputWeights));
1328 }
1329 layer->m_CifgParameters.m_InputGateBias =
1330 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputGateBias));
1331 }
1332
1333 //Lstm projection parameters
1334 if(descriptor.m_ProjectionEnabled)
1335 {
1336 if(params.m_ProjectionWeights == nullptr)
1337 {
1338 throw InvalidArgumentException("AddLstmLayer: Projection Weights cannot be NULL");
1339 }
1340 layer->m_ProjectionParameters.m_ProjectionWeights =
1341 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ProjectionWeights));
1342 if(params.m_ProjectionBias != nullptr)
1343 {
1344 layer->m_ProjectionParameters.m_ProjectionBias =
1345 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ProjectionBias));
1346 }
1347 }
1348
1349 //Lstm Peephole params
1350 if(descriptor.m_PeepholeEnabled)
1351 {
1352 if(params.m_CellToForgetWeights == nullptr)
1353 {
1354 throw InvalidArgumentException("AddLstmLayer: Cell To Forget Weights cannot be NULL");
1355 }
1356 if(params.m_CellToOutputWeights == nullptr)
1357 {
1358 throw InvalidArgumentException("AddLstmLayer: Cell To Output Weights cannot be NULL");
1359 }
1360 layer->m_PeepholeParameters.m_CellToForgetWeights =
1361 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellToForgetWeights));
1362 layer->m_PeepholeParameters.m_CellToOutputWeights =
1363 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellToOutputWeights));
1364 }
Jan Eilersf8c62972019-07-17 11:07:49 +01001365
1366 //Lstm Layer Normalization params
1367 if(descriptor.m_LayerNormEnabled)
1368 {
1369 if(!descriptor.m_CifgEnabled)
1370 {
1371 if(params.m_InputLayerNormWeights == nullptr)
1372 {
1373 throw InvalidArgumentException("AddLstmLayer: Input layer normalization weights cannot be NULL");
1374 }
1375 layer->m_LayerNormParameters.m_InputLayerNormWeights =
1376 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputLayerNormWeights));
1377 }
1378
1379 if(params.m_ForgetLayerNormWeights == nullptr)
1380 {
1381 throw InvalidArgumentException("AddLstmLayer: Forget layer normalization weights cannot be NULL");
1382 }
1383 if(params.m_CellLayerNormWeights == nullptr)
1384 {
1385 throw InvalidArgumentException("AddLstmLayer: Cell layer normalization weights cannot be NULL");
1386 }
1387 if(params.m_OutputLayerNormWeights == nullptr)
1388 {
1389 throw InvalidArgumentException("AddLstmLayer: Output layer normalization weights cannot be NULL");
1390 }
1391 layer->m_LayerNormParameters.m_ForgetLayerNormWeights =
1392 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ForgetLayerNormWeights));
1393 layer->m_LayerNormParameters.m_CellLayerNormWeights =
1394 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellLayerNormWeights));
1395 layer->m_LayerNormParameters.m_OutputLayerNormWeights =
1396 std::make_unique<ScopedCpuTensorHandle>(*(params.m_OutputLayerNormWeights));
1397 }
telsoa01c577f2c2018-08-31 09:22:23 +01001398 return layer;
1399}
1400
Francis Murtaghe7a86a42018-08-29 12:42:10 +01001401IConnectableLayer* Network::AddDivisionLayer(const char* name)
1402{
1403 return m_Graph->AddLayer<DivisionLayer>(name);
1404}
1405
David Beck19526222018-09-12 16:00:08 +01001406IConnectableLayer* Network::AddSubtractionLayer(const char* name)
1407{
1408 return m_Graph->AddLayer<SubtractionLayer>(name);
1409}
1410
narpra0132b90462018-09-13 11:07:48 +01001411IConnectableLayer* Network::AddMeanLayer(const MeanDescriptor& meanDescriptor, const char* name)
1412{
1413 return m_Graph->AddLayer<MeanLayer>(meanDescriptor,name);
1414}
1415
Mohamed Nour Abouelseoud5662c202018-09-24 13:30:09 +01001416IConnectableLayer* Network::AddPadLayer(const PadDescriptor& padDescriptor, const char* name)
1417{
1418 return m_Graph->AddLayer<PadLayer>(padDescriptor,name);
1419}
1420
Derek Lambertia9cca6a2019-03-25 15:41:58 +00001421IConnectableLayer *Network::AddQuantizeLayer(const char *name)
1422{
1423 return m_Graph->AddLayer<QuantizeLayer>(name);
1424}
1425
Nattapat Chaimanowonge4294fd2019-03-28 09:56:53 +00001426IConnectableLayer* Network::AddDequantizeLayer(const char* name)
1427{
1428 return m_Graph->AddLayer<DequantizeLayer>(name);
1429}
1430
Conor Kennedy430b5d82018-11-14 15:28:28 +00001431IConnectableLayer* Network::AddStridedSliceLayer(const StridedSliceDescriptor& stridedSliceDescriptor,
1432 const char* name)
1433{
1434 return m_Graph->AddLayer<StridedSliceLayer>(stridedSliceDescriptor, name);
1435}
1436
Matteo Martincigh59a950c2018-12-13 12:48:25 +00001437IConnectableLayer* Network::AddGreaterLayer(const char* name)
1438{
1439 return m_Graph->AddLayer<GreaterLayer>(name);
1440}
1441
FrancisMurtagh20995952018-12-17 12:11:36 +00001442IConnectableLayer* Network::AddEqualLayer(const char* name)
1443{
jimfly0184c70e62018-12-19 13:14:46 +00001444 return m_Graph->AddLayer<EqualLayer>(name);
FrancisMurtagh20995952018-12-17 12:11:36 +00001445}
1446
Mohamed Nour Abouelseouda1d3c6a2018-12-27 12:39:16 +00001447IConnectableLayer* Network::AddRsqrtLayer(const char * name)
1448{
1449 return m_Graph->AddLayer<RsqrtLayer>(name);
1450}
1451
narpra01b89b05f2019-01-16 09:53:09 +00001452IConnectableLayer* Network::AddGatherLayer(const char* name)
1453{
1454 return m_Graph->AddLayer<GatherLayer>(name);
1455}
1456
Nattapat Chaimanowong1f886302019-04-05 13:37:19 +01001457IConnectableLayer* Network::AddMergeLayer(const char* name)
1458{
1459 return m_Graph->AddLayer<MergeLayer>(name);
1460}
1461
Sadik Armaganeff363d2019-04-05 15:25:46 +01001462IConnectableLayer* Network::AddSwitchLayer(const char* name)
1463{
1464 return m_Graph->AddLayer<SwitchLayer>(name);
1465}
1466
Matteo Martincigh0e406ee2019-06-12 15:42:18 +01001467IConnectableLayer* Network::AddPreluLayer(const char* name)
1468{
1469 return m_Graph->AddLayer<PreluLayer>(name);
1470}
1471
Aron Virginas-Tar639fb042019-06-20 14:28:19 +01001472IConnectableLayer* Network::AddTransposeConvolution2dLayer(const TransposeConvolution2dDescriptor& descriptor,
1473 const ConstTensor& weights,
1474 const Optional<ConstTensor>& biases,
1475 const char* name)
1476{
1477 if (descriptor.m_BiasEnabled && !biases.has_value())
1478 {
1479 throw InvalidArgumentException("AddTransposeConvolution2dLayer: Biases cannot be empty");
1480 }
1481
1482 const auto layer = m_Graph->AddLayer<TransposeConvolution2dLayer>(descriptor, name);
1483
1484 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
1485
1486 if (descriptor.m_BiasEnabled)
1487 {
1488 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
1489 }
1490
1491 return layer;
1492}
1493
Matthew Jackson2b8c1da2019-07-04 14:59:16 +01001494IConnectableLayer* Network::AddStackLayer(const StackDescriptor& stackDescriptor,
1495 const char* name)
1496{
1497 return m_Graph->AddLayer<StackLayer>(stackDescriptor, name);
1498}
1499
James Conroyee18dc82019-07-17 11:27:46 +01001500IConnectableLayer* Network::AddQuantizedLstmLayer(const QuantizedLstmInputParams& params,
1501 const char* name)
1502{
1503 const auto layer = m_Graph->AddLayer<QuantizedLstmLayer>(name);
1504
1505 // InputToX weights
1506 layer->m_QuantizedLstmParameters.m_InputToInputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001507 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToInputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001508 layer->m_QuantizedLstmParameters.m_InputToForgetWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001509 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToForgetWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001510 layer->m_QuantizedLstmParameters.m_InputToCellWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001511 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToCellWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001512 layer->m_QuantizedLstmParameters.m_InputToOutputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001513 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToOutputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001514
1515 // RecurrentToX weights
1516 layer->m_QuantizedLstmParameters.m_RecurrentToInputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001517 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToInputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001518 layer->m_QuantizedLstmParameters.m_RecurrentToForgetWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001519 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToForgetWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001520 layer->m_QuantizedLstmParameters.m_RecurrentToCellWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001521 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToCellWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001522 layer->m_QuantizedLstmParameters.m_RecurrentToOutputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001523 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToOutputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001524
1525 // Bias
1526 layer->m_QuantizedLstmParameters.m_InputGateBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001527 std::make_unique<ScopedCpuTensorHandle>(params.GetInputGateBias());
James Conroyee18dc82019-07-17 11:27:46 +01001528 layer->m_QuantizedLstmParameters.m_ForgetGateBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001529 std::make_unique<ScopedCpuTensorHandle>(params.GetForgetGateBias());
James Conroyee18dc82019-07-17 11:27:46 +01001530 layer->m_QuantizedLstmParameters.m_CellBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001531 std::make_unique<ScopedCpuTensorHandle>(params.GetCellBias());
James Conroyee18dc82019-07-17 11:27:46 +01001532 layer->m_QuantizedLstmParameters.m_OutputGateBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001533 std::make_unique<ScopedCpuTensorHandle>(params.GetOutputGateBias());
James Conroyee18dc82019-07-17 11:27:46 +01001534
1535 return layer;
1536}
1537
Mike Kelly8c1701a2019-02-11 17:01:27 +00001538void Network::Accept(ILayerVisitor& visitor) const
1539{
1540 for (auto layer : GetGraph())
1541 {
1542 layer->Accept(visitor);
1543 };
1544}
1545
telsoa014fcda012018-03-09 14:13:49 +00001546OptimizedNetwork::OptimizedNetwork(std::unique_ptr<Graph> graph)
1547 : m_Graph(std::move(graph))
1548{
1549}
1550
1551OptimizedNetwork::~OptimizedNetwork()
1552{
1553}
1554
1555} // namespace armnn