blob: 6971cb89ba99fe549ba4868d0b03296161ff684f [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(),
821 FoldPadIntoConvolution2d()));
Matteo Martincigh49124022019-01-11 13:25:59 +0000822
Matteo Martincighadddddb2019-01-24 14:06:23 +0000823 // Infer the tensor infos for all output slots. Throws an exception on failure
824 optGraph.InferTensorInfos();
Matteo Martincigh49124022019-01-11 13:25:59 +0000825
826 // If Fp32 to Fp16 optimization is set convert Fp32 network to Fp16
827 if (options.m_ReduceFp32ToFp16)
828 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000829 Optimizer::Pass(optGraph, MakeOptimizations(Fp32NetworkToFp16Converter()));
Matteo Martincigh49124022019-01-11 13:25:59 +0000830 }
831
832 // Initialize backend settings
833 BackendSettings backendSettings(backendPreferences, deviceSpec);
834 if (backendSettings.GetAvailablePreferredBackends().empty())
835 {
836 std::stringstream failureMsg;
837 failureMsg << "None of the preferred backends " << backendPreferences
838 << " are supported. Current platform provides " << backendSettings.m_SupportedBackends;
839 ReportError(failureMsg.str(), errMessages);
840 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
841 }
842
Derek Lamberti84da38b2019-06-13 11:40:08 +0100843 // Create a map to temporarily hold initialized backend objects
844 TensorHandleFactoryRegistry tensorHandleFactoryRegistry;
845 BackendsMap backends = CreateSupportedBackends(tensorHandleFactoryRegistry, backendSettings);
846
Matteo Martincigh49124022019-01-11 13:25:59 +0000847 // Assign an available backend to each layer
Matteo Martincighadddddb2019-01-24 14:06:23 +0000848 Graph::Iterator firstLayer = optGraph.begin();
849 Graph::Iterator lastLayer = optGraph.end();
Derek Lamberti84da38b2019-06-13 11:40:08 +0100850 OptimizationResult assignBackendsResult = AssignBackends(optNetObjPtr,
851 backendSettings,
852 firstLayer,
853 lastLayer,
854 errMessages);
855 if (assignBackendsResult.m_Error)
Matteo Martincigh49124022019-01-11 13:25:59 +0000856 {
857 // Failed to assign a backend to each layer
jimfly016b0b53d2018-10-08 14:43:01 +0100858 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
859 }
telsoa01c577f2c2018-08-31 09:22:23 +0100860
Matteo Martincighadddddb2019-01-24 14:06:23 +0000861 Optimizer::Pass(optGraph, MakeOptimizations(OptimizeInverseConversionsFp16(),
862 OptimizeInverseConversionsFp32()));
telsoa01c577f2c2018-08-31 09:22:23 +0100863
Matteo Martincighadddddb2019-01-24 14:06:23 +0000864 // Apply the backend-specific optimizations
865 OptimizationResult backendOptimizationResult = ApplyBackendOptimizations(optNetObjPtr,
866 backendSettings,
Derek Lamberti84da38b2019-06-13 11:40:08 +0100867 backends,
Matteo Martincighadddddb2019-01-24 14:06:23 +0000868 errMessages);
869 if (backendOptimizationResult.m_Error)
Matteo Martincigh49124022019-01-11 13:25:59 +0000870 {
Matteo Martincighadddddb2019-01-24 14:06:23 +0000871 // Failed to apply the backend-specific optimizations
872 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
Matteo Martincigh49124022019-01-11 13:25:59 +0000873 }
874
Matteo Martincighadddddb2019-01-24 14:06:23 +0000875 // If the debug flag is set, then insert a DebugLayer after each layer
876 // Doing this after applying the backend optimizations as they might have changed some layers
877 if (options.m_Debug)
878 {
879 Optimizer::Pass(optGraph, MakeOptimizations(InsertDebugLayer()));
880 }
881
Derek Lamberti84da38b2019-06-13 11:40:08 +0100882 // Calculate the compatibility strategies for tensor handles
883 OptimizationResult strategyResult = SelectTensorHandleStrategy(optGraph,
884 backends,
885 tensorHandleFactoryRegistry,
886 errMessages);
887 if (strategyResult.m_Error)
888 {
889 // Failed to apply the backend-specific optimizations
890 return IOptimizedNetworkPtr(nullptr, &IOptimizedNetwork::Destroy);
891 }
892
893 // Based on the tensor handle strategy determined above, insert copy layers where required.
Derek Lambertif674aa02019-08-01 15:56:25 +0100894 optGraph.AddCompatibilityLayers(backends, tensorHandleFactoryRegistry);
telsoa01c577f2c2018-08-31 09:22:23 +0100895
896 // Convert constants
Matteo Martincighadddddb2019-01-24 14:06:23 +0000897 Optimizer::Pass(optGraph, MakeOptimizations(ConvertConstantsFloatToHalf()));
898 Optimizer::Pass(optGraph, MakeOptimizations(ConvertConstantsHalfToFloat()));
telsoa01c577f2c2018-08-31 09:22:23 +0100899
Derek Lamberti84da38b2019-06-13 11:40:08 +0100900 // Run backend specific optimizations (deprecated)
Matteo Martincigh49124022019-01-11 13:25:59 +0000901 for (auto&& chosenBackend : backendSettings.m_SelectedBackends)
David Beck263e3492018-11-09 14:46:40 +0000902 {
903 auto factoryFun = BackendRegistryInstance().GetFactory(chosenBackend);
904 auto backendPtr = factoryFun();
905 BOOST_ASSERT(backendPtr.get() != nullptr);
906
Matteo Martincighed735042019-05-22 09:42:43 +0100907 ARMNN_NO_DEPRECATE_WARN_BEGIN
David Beck263e3492018-11-09 14:46:40 +0000908 auto backendSpecificOptimizations = backendPtr->GetOptimizations();
Matteo Martincighed735042019-05-22 09:42:43 +0100909 ARMNN_NO_DEPRECATE_WARN_END
910
David Beck263e3492018-11-09 14:46:40 +0000911 if (!backendSpecificOptimizations.empty())
912 {
913 Optimizer::Pass(optNetObjPtr->GetGraph(), backendSpecificOptimizations);
914 }
915 }
916
telsoa01c577f2c2018-08-31 09:22:23 +0100917 return optNet;
telsoa014fcda012018-03-09 14:13:49 +0000918}
919
920Network::Network()
921: m_Graph(std::make_unique<Graph>())
922{
923}
924
925Network::~Network()
926{
927}
928
929IConnectableLayer* Network::AddInputLayer(LayerBindingId id, const char* name)
930{
931 return m_Graph->AddLayer<InputLayer>(id, name);
932}
933
Éanna Ó Catháin4e1e1362018-11-12 11:36:34 +0000934IConnectableLayer* Network::AddBatchToSpaceNdLayer(const BatchToSpaceNdDescriptor& batchToSpaceNdDescriptor,
935 const char* name)
936{
937 return m_Graph->AddLayer<BatchToSpaceNdLayer>(batchToSpaceNdDescriptor, name);
938}
939
telsoa014fcda012018-03-09 14:13:49 +0000940IConnectableLayer* Network::AddFullyConnectedLayerImpl(const FullyConnectedDescriptor& fullyConnectedDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100941 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000942 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +0100943 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000944{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000945 if (fullyConnectedDescriptor.m_BiasEnabled && !biases.has_value())
telsoa014fcda012018-03-09 14:13:49 +0000946 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000947 throw InvalidArgumentException("AddFullyConnectedLayer: biases cannot be empty");
telsoa014fcda012018-03-09 14:13:49 +0000948 }
949
950 const auto layer = m_Graph->AddLayer<FullyConnectedLayer>(fullyConnectedDescriptor, name);
951
952 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
953
954 if (fullyConnectedDescriptor.m_BiasEnabled)
955 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000956 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
telsoa014fcda012018-03-09 14:13:49 +0000957 }
958
959 return layer;
960}
961
962IConnectableLayer* Network::AddFullyConnectedLayer(const FullyConnectedDescriptor& fullyConnectedDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100963 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000964 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +0100965 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000966{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000967 return AddFullyConnectedLayerImpl(fullyConnectedDescriptor, weights, biases, name);
telsoa014fcda012018-03-09 14:13:49 +0000968}
969
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000970IConnectableLayer* Network::AddFullyConnectedLayer(const FullyConnectedDescriptor& fullyConnectedDescriptor,
971 const ConstTensor& weights,
972 const char* name)
973{
Matteo Martincighfc598e12019-05-14 10:36:13 +0100974 Optional<ConstTensor> biases;
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000975 return AddFullyConnectedLayerImpl(fullyConnectedDescriptor, weights, biases, name);
976}
977
telsoa014fcda012018-03-09 14:13:49 +0000978IConnectableLayer* Network::AddFullyConnectedLayer(const FullyConnectedDescriptor& fullyConnectedDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100979 const ConstTensor& weights,
980 const ConstTensor& biases,
981 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000982{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000983 Optional<ConstTensor> optionalBiases(biases);
984 return AddFullyConnectedLayerImpl(fullyConnectedDescriptor, weights, optionalBiases, name);
telsoa014fcda012018-03-09 14:13:49 +0000985}
986
Jim Flynne242f2d2019-05-22 14:24:13 +0100987IConnectableLayer* Network::AddConcatLayer(const ConcatDescriptor& concatDescriptor,
Jim Flynn906f9462019-05-10 13:55:21 +0100988 const char* name)
989{
Jim Flynne242f2d2019-05-22 14:24:13 +0100990 return m_Graph->AddLayer<ConcatLayer>(concatDescriptor, name);
Jim Flynn906f9462019-05-10 13:55:21 +0100991}
992
telsoa014fcda012018-03-09 14:13:49 +0000993IConnectableLayer* Network::AddConvolution2dLayerImpl(const Convolution2dDescriptor& convolution2dDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +0100994 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000995 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +0100996 const char* name)
telsoa014fcda012018-03-09 14:13:49 +0000997{
Aron Virginas-Tarad402702019-02-22 17:03:44 +0000998 if (convolution2dDescriptor.m_BiasEnabled && !biases.has_value())
telsoa014fcda012018-03-09 14:13:49 +0000999 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001000 throw InvalidArgumentException("AddConvolution2dLayer: biases cannot be empty");
telsoa014fcda012018-03-09 14:13:49 +00001001 }
1002
1003 const auto layer = m_Graph->AddLayer<Convolution2dLayer>(convolution2dDescriptor, name);
1004
1005 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
1006
1007 if (convolution2dDescriptor.m_BiasEnabled)
1008 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001009 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
telsoa014fcda012018-03-09 14:13:49 +00001010 }
1011
1012 return layer;
1013}
1014
1015IConnectableLayer* Network::AddConvolution2dLayer(const Convolution2dDescriptor& convolution2dDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +01001016 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001017 const Optional<ConstTensor>& biases,
telsoa01c577f2c2018-08-31 09:22:23 +01001018 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001019{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001020 return AddConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
telsoa014fcda012018-03-09 14:13:49 +00001021}
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001022
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001023IConnectableLayer* Network::AddConvolution2dLayer(const Convolution2dDescriptor& convolution2dDescriptor,
1024 const ConstTensor& weights,
1025 const char* name)
1026{
Matteo Martincighfc598e12019-05-14 10:36:13 +01001027 Optional<ConstTensor> biases;
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001028 return AddConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
1029}
1030
telsoa014fcda012018-03-09 14:13:49 +00001031IConnectableLayer* Network::AddConvolution2dLayer(const Convolution2dDescriptor& convolution2dDescriptor,
telsoa01c577f2c2018-08-31 09:22:23 +01001032 const ConstTensor& weights,
1033 const ConstTensor& biases,
1034 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001035{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001036 Optional<ConstTensor> optionalBiases(biases);
1037 return AddConvolution2dLayerImpl(convolution2dDescriptor, weights, optionalBiases, name);
telsoa014fcda012018-03-09 14:13:49 +00001038}
1039
1040IConnectableLayer* Network::AddDepthwiseConvolution2dLayerImpl(
1041 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1042 const ConstTensor& weights,
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001043 const Optional<ConstTensor>& biases,
telsoa014fcda012018-03-09 14:13:49 +00001044 const char* name)
1045{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001046 if (convolution2dDescriptor.m_BiasEnabled && !biases.has_value())
telsoa014fcda012018-03-09 14:13:49 +00001047 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001048 throw InvalidArgumentException("AddDepthwiseConvolution2dLayer: biases cannot be empty");
telsoa014fcda012018-03-09 14:13:49 +00001049 }
1050
Matteo Martincigh3d6898c2019-01-15 16:11:44 +00001051 const auto layer = m_Graph->AddLayer<DepthwiseConvolution2dLayer>(convolution2dDescriptor, name);
telsoa014fcda012018-03-09 14:13:49 +00001052
1053 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
1054
1055 if (convolution2dDescriptor.m_BiasEnabled)
1056 {
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001057 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
telsoa014fcda012018-03-09 14:13:49 +00001058 }
1059
1060 return layer;
1061}
1062
1063IConnectableLayer* Network::AddDepthwiseConvolution2dLayer(
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001064 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1065 const ConstTensor& weights,
1066 const Optional<ConstTensor>& biases,
1067 const char* name)
1068{
1069 return AddDepthwiseConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
1070}
1071
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001072IConnectableLayer* Network::AddDepthwiseConvolution2dLayer(
telsoa014fcda012018-03-09 14:13:49 +00001073 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1074 const ConstTensor& weights,
1075 const char* name)
1076{
Matteo Martincighfc598e12019-05-14 10:36:13 +01001077 Optional<ConstTensor> biases;
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001078 return AddDepthwiseConvolution2dLayerImpl(convolution2dDescriptor, weights, biases, name);
telsoa014fcda012018-03-09 14:13:49 +00001079}
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001080
telsoa014fcda012018-03-09 14:13:49 +00001081IConnectableLayer* Network::AddDepthwiseConvolution2dLayer(
1082 const DepthwiseConvolution2dDescriptor& convolution2dDescriptor,
1083 const ConstTensor& weights,
1084 const ConstTensor& biases,
1085 const char* name)
1086{
Aron Virginas-Tarad402702019-02-22 17:03:44 +00001087 Optional<ConstTensor> optionalBiases(biases);
1088 return AddDepthwiseConvolution2dLayerImpl(convolution2dDescriptor, weights, optionalBiases, name);
telsoa014fcda012018-03-09 14:13:49 +00001089}
1090
Narumol Prangnawarat94dd5d82019-01-23 18:06:26 +00001091IConnectableLayer* Network::AddDetectionPostProcessLayer(const armnn::DetectionPostProcessDescriptor& descriptor,
Narumol Prangnawarat6d302bf2019-02-04 11:46:26 +00001092 const ConstTensor& anchors, const char* name)
Narumol Prangnawarat94dd5d82019-01-23 18:06:26 +00001093{
Narumol Prangnawarat6d302bf2019-02-04 11:46:26 +00001094 const auto layer = m_Graph->AddLayer<DetectionPostProcessLayer>(descriptor, name);
1095
1096 layer->m_Anchors = std::make_unique<ScopedCpuTensorHandle>(anchors);
1097
1098 return layer;
Narumol Prangnawarat94dd5d82019-01-23 18:06:26 +00001099}
1100
telsoa014fcda012018-03-09 14:13:49 +00001101IConnectableLayer* Network::AddPermuteLayer(const PermuteDescriptor& permuteDescriptor,
1102 const char* name)
1103{
1104 return m_Graph->AddLayer<PermuteLayer>(permuteDescriptor, name);
1105}
1106
1107IConnectableLayer* Network::AddPooling2dLayer(const Pooling2dDescriptor& pooling2dDescriptor,
1108 const char* name)
1109{
1110 return m_Graph->AddLayer<Pooling2dLayer>(pooling2dDescriptor, name);
1111}
1112
1113IConnectableLayer* Network::AddActivationLayer(const ActivationDescriptor& activationDescriptor,
1114 const char* name)
1115{
1116 return m_Graph->AddLayer<ActivationLayer>(activationDescriptor, name);
1117}
1118
Nikhil Rajee391d52019-09-05 17:50:44 +01001119IConnectableLayer* Network::AddArgMinMaxLayer(const ArgMinMaxDescriptor& argMinMaxDescriptor,
1120 const char* name)
1121{
1122 return m_Graph->AddLayer<ArgMinMaxLayer>(argMinMaxDescriptor, name);
1123}
1124
telsoa01c577f2c2018-08-31 09:22:23 +01001125IConnectableLayer* Network::AddNormalizationLayer(const NormalizationDescriptor&
1126normalizationDescriptor,
telsoa014fcda012018-03-09 14:13:49 +00001127 const char* name)
1128{
1129 return m_Graph->AddLayer<NormalizationLayer>(normalizationDescriptor, name);
1130}
1131
1132IConnectableLayer* Network::AddSoftmaxLayer(const SoftmaxDescriptor& softmaxDescriptor,
1133 const char* name)
1134{
1135 return m_Graph->AddLayer<SoftmaxLayer>(softmaxDescriptor, name);
1136}
1137
1138IConnectableLayer* Network::AddSplitterLayer(const ViewsDescriptor& splitterDescriptor,
1139 const char* name)
1140{
1141 return m_Graph->AddLayer<SplitterLayer>(splitterDescriptor, name);
1142}
1143
Nattapat Chaimanowong5a4304a2018-11-28 10:44:37 +00001144IConnectableLayer* Network::AddMaximumLayer(const char* name)
1145{
1146 return m_Graph->AddLayer<MaximumLayer>(name);
1147}
1148
Éanna Ó Catháin20e58802018-12-04 10:29:06 +00001149IConnectableLayer* Network::AddMinimumLayer(const char* name)
1150{
1151 return m_Graph->AddLayer<MinimumLayer>(name);
1152}
1153
Jim Flynne242f2d2019-05-22 14:24:13 +01001154IConnectableLayer* Network::AddMergerLayer(const MergerDescriptor& mergerDescriptor,
Jim Flynn906f9462019-05-10 13:55:21 +01001155 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001156{
Jim Flynne242f2d2019-05-22 14:24:13 +01001157 return AddConcatLayer(mergerDescriptor, name);
telsoa014fcda012018-03-09 14:13:49 +00001158}
1159
Kevin May868eb142019-09-04 17:29:31 +01001160IConnectableLayer* Network::AddAbsLayer(const char * name)
1161{
1162 return m_Graph->AddLayer<AbsLayer>(name);
1163}
1164
telsoa014fcda012018-03-09 14:13:49 +00001165IConnectableLayer* Network::AddAdditionLayer(const char* name)
1166{
1167 return m_Graph->AddLayer<AdditionLayer>(name);
1168}
1169
1170IConnectableLayer* Network::AddMultiplicationLayer(const char* name)
1171{
1172 return m_Graph->AddLayer<MultiplicationLayer>(name);
1173}
1174
1175IConnectableLayer* Network::AddOutputLayer(LayerBindingId id, const char* name)
1176{
1177 return m_Graph->AddLayer<OutputLayer>(id, name);
1178}
1179
1180IConnectableLayer* Network::AddBatchNormalizationLayer(const BatchNormalizationDescriptor& desc,
1181 const ConstTensor& mean,
1182 const ConstTensor& variance,
1183 const ConstTensor& beta,
1184 const ConstTensor& gamma,
1185 const char* name)
1186{
1187 const auto layer = m_Graph->AddLayer<BatchNormalizationLayer>(desc, name);
1188
1189 layer->m_Mean = std::make_unique<ScopedCpuTensorHandle>(mean);
1190 layer->m_Variance = std::make_unique<ScopedCpuTensorHandle>(variance);
1191 layer->m_Beta = std::make_unique<ScopedCpuTensorHandle>(beta);
1192 layer->m_Gamma = std::make_unique<ScopedCpuTensorHandle>(gamma);
1193
1194 return layer;
1195}
1196
Aron Virginas-Tar169d2f12019-07-01 19:01:44 +01001197IConnectableLayer* Network::AddResizeBilinearLayer(const ResizeBilinearDescriptor& descriptor,
1198 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001199{
Aron Virginas-Tar169d2f12019-07-01 19:01:44 +01001200 ResizeDescriptor resizeDescriptor;
1201 resizeDescriptor.m_Method = ResizeMethod::Bilinear;
1202 resizeDescriptor.m_DataLayout = descriptor.m_DataLayout;
1203 resizeDescriptor.m_TargetWidth = descriptor.m_TargetWidth;
1204 resizeDescriptor.m_TargetHeight = descriptor.m_TargetHeight;
1205
1206 return m_Graph->AddLayer<ResizeLayer>(resizeDescriptor, name);
telsoa014fcda012018-03-09 14:13:49 +00001207}
1208
Teresa Charlina9075df2019-06-27 15:41:57 +01001209IConnectableLayer* Network::AddResizeLayer(const ResizeDescriptor&
1210resizeDescriptor, const char* name)
1211{
Aron Virginas-Tar169d2f12019-07-01 19:01:44 +01001212 return m_Graph->AddLayer<ResizeLayer>(resizeDescriptor, name);
Teresa Charlina9075df2019-06-27 15:41:57 +01001213}
1214
Matteo Martincighbcd3c852018-09-28 14:14:12 +01001215IConnectableLayer* Network::AddL2NormalizationLayer(const L2NormalizationDescriptor& desc,
1216 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001217{
Matteo Martincighbcd3c852018-09-28 14:14:12 +01001218 return m_Graph->AddLayer<L2NormalizationLayer>(desc, name);
telsoa014fcda012018-03-09 14:13:49 +00001219}
1220
1221IConnectableLayer* Network::AddConstantLayer(const ConstTensor& input, const char* name)
1222{
telsoa01c577f2c2018-08-31 09:22:23 +01001223 auto layer = m_Graph->AddLayer<ConstantLayer>(name);
1224
1225 layer->m_LayerOutput = std::make_unique<ScopedCpuTensorHandle>(input);
1226
1227 return layer;
telsoa014fcda012018-03-09 14:13:49 +00001228}
1229
telsoa01c577f2c2018-08-31 09:22:23 +01001230IConnectableLayer* Network::AddReshapeLayer(const ReshapeDescriptor& reshapeDescriptor,
1231 const char* name)
telsoa014fcda012018-03-09 14:13:49 +00001232{
1233 return m_Graph->AddLayer<ReshapeLayer>(reshapeDescriptor, name);
1234}
1235
Nattapat Chaimanowong207ef9a2018-11-02 10:57:25 +00001236IConnectableLayer* Network::AddSpaceToBatchNdLayer(const SpaceToBatchNdDescriptor& spaceToBatchNdDescriptor,
1237 const char* name)
1238{
1239 return m_Graph->AddLayer<SpaceToBatchNdLayer>(spaceToBatchNdDescriptor, name);
1240}
1241
Aron Virginas-Tar972af152019-06-11 14:14:03 +01001242IConnectableLayer* Network::AddSpaceToDepthLayer(const SpaceToDepthDescriptor& spaceToDepthDescriptor,
1243 const char* name)
1244{
1245 return m_Graph->AddLayer<SpaceToDepthLayer>(spaceToDepthDescriptor, name);
1246}
1247
telsoa014fcda012018-03-09 14:13:49 +00001248IConnectableLayer* Network::AddFloorLayer(const char* name)
1249{
1250 return m_Graph->AddLayer<FloorLayer>(name);
1251}
1252
telsoa01c577f2c2018-08-31 09:22:23 +01001253IConnectableLayer* Network::AddLstmLayer(const LstmDescriptor& descriptor,
1254 const LstmInputParams& params,
1255 const char* name)
1256{
1257 const auto layer = m_Graph->AddLayer<LstmLayer>(descriptor, name);
1258
1259 //Lstm Basic Parameters
1260 layer->m_BasicParameters.m_InputToForgetWeights =
1261 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToForgetWeights));
1262 layer->m_BasicParameters.m_InputToCellWeights =
1263 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToCellWeights));
1264 layer->m_BasicParameters.m_InputToOutputWeights =
1265 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToOutputWeights));
1266 layer->m_BasicParameters.m_RecurrentToForgetWeights =
1267 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToForgetWeights));
1268 layer->m_BasicParameters.m_RecurrentToCellWeights =
1269 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToCellWeights));
1270 layer->m_BasicParameters.m_RecurrentToOutputWeights =
1271 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToOutputWeights));
1272 layer->m_BasicParameters.m_ForgetGateBias =
1273 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ForgetGateBias));
1274 layer->m_BasicParameters.m_CellBias =
1275 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellBias));
1276 layer->m_BasicParameters.m_OutputGateBias =
1277 std::make_unique<ScopedCpuTensorHandle>(*(params.m_OutputGateBias));
1278
1279 //Lstm Cifg parameters
1280 if(!descriptor.m_CifgEnabled)
1281 {
1282 if(params.m_InputToInputWeights == nullptr)
1283 {
1284 throw InvalidArgumentException("AddLstmLayer: Input To Input Weights cannot be NULL");
1285 }
1286 if(params.m_RecurrentToInputWeights == nullptr)
1287 {
1288 throw InvalidArgumentException(
1289 "AddLstmLayer: Recurrent To Input Weights cannot be NULL");
1290 }
1291 if(params.m_InputGateBias == nullptr)
1292 {
1293 throw InvalidArgumentException("AddLstmLayer: Input Gate Bias cannot be NULL");
1294 }
1295 layer->m_CifgParameters.m_InputToInputWeights =
1296 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputToInputWeights));
1297 layer->m_CifgParameters.m_RecurrentToInputWeights =
1298 std::make_unique<ScopedCpuTensorHandle>(*(params.m_RecurrentToInputWeights));
1299 // In the VTS tests, cell-to-input weights may be null, even if the other CIFG params are not.
1300 if(params.m_CellToInputWeights != nullptr)
1301 {
1302 layer->m_CifgParameters.m_CellToInputWeights =
1303 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellToInputWeights));
1304 }
1305 layer->m_CifgParameters.m_InputGateBias =
1306 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputGateBias));
1307 }
1308
1309 //Lstm projection parameters
1310 if(descriptor.m_ProjectionEnabled)
1311 {
1312 if(params.m_ProjectionWeights == nullptr)
1313 {
1314 throw InvalidArgumentException("AddLstmLayer: Projection Weights cannot be NULL");
1315 }
1316 layer->m_ProjectionParameters.m_ProjectionWeights =
1317 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ProjectionWeights));
1318 if(params.m_ProjectionBias != nullptr)
1319 {
1320 layer->m_ProjectionParameters.m_ProjectionBias =
1321 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ProjectionBias));
1322 }
1323 }
1324
1325 //Lstm Peephole params
1326 if(descriptor.m_PeepholeEnabled)
1327 {
1328 if(params.m_CellToForgetWeights == nullptr)
1329 {
1330 throw InvalidArgumentException("AddLstmLayer: Cell To Forget Weights cannot be NULL");
1331 }
1332 if(params.m_CellToOutputWeights == nullptr)
1333 {
1334 throw InvalidArgumentException("AddLstmLayer: Cell To Output Weights cannot be NULL");
1335 }
1336 layer->m_PeepholeParameters.m_CellToForgetWeights =
1337 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellToForgetWeights));
1338 layer->m_PeepholeParameters.m_CellToOutputWeights =
1339 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellToOutputWeights));
1340 }
Jan Eilersf8c62972019-07-17 11:07:49 +01001341
1342 //Lstm Layer Normalization params
1343 if(descriptor.m_LayerNormEnabled)
1344 {
1345 if(!descriptor.m_CifgEnabled)
1346 {
1347 if(params.m_InputLayerNormWeights == nullptr)
1348 {
1349 throw InvalidArgumentException("AddLstmLayer: Input layer normalization weights cannot be NULL");
1350 }
1351 layer->m_LayerNormParameters.m_InputLayerNormWeights =
1352 std::make_unique<ScopedCpuTensorHandle>(*(params.m_InputLayerNormWeights));
1353 }
1354
1355 if(params.m_ForgetLayerNormWeights == nullptr)
1356 {
1357 throw InvalidArgumentException("AddLstmLayer: Forget layer normalization weights cannot be NULL");
1358 }
1359 if(params.m_CellLayerNormWeights == nullptr)
1360 {
1361 throw InvalidArgumentException("AddLstmLayer: Cell layer normalization weights cannot be NULL");
1362 }
1363 if(params.m_OutputLayerNormWeights == nullptr)
1364 {
1365 throw InvalidArgumentException("AddLstmLayer: Output layer normalization weights cannot be NULL");
1366 }
1367 layer->m_LayerNormParameters.m_ForgetLayerNormWeights =
1368 std::make_unique<ScopedCpuTensorHandle>(*(params.m_ForgetLayerNormWeights));
1369 layer->m_LayerNormParameters.m_CellLayerNormWeights =
1370 std::make_unique<ScopedCpuTensorHandle>(*(params.m_CellLayerNormWeights));
1371 layer->m_LayerNormParameters.m_OutputLayerNormWeights =
1372 std::make_unique<ScopedCpuTensorHandle>(*(params.m_OutputLayerNormWeights));
1373 }
telsoa01c577f2c2018-08-31 09:22:23 +01001374 return layer;
1375}
1376
Francis Murtaghe7a86a42018-08-29 12:42:10 +01001377IConnectableLayer* Network::AddDivisionLayer(const char* name)
1378{
1379 return m_Graph->AddLayer<DivisionLayer>(name);
1380}
1381
David Beck19526222018-09-12 16:00:08 +01001382IConnectableLayer* Network::AddSubtractionLayer(const char* name)
1383{
1384 return m_Graph->AddLayer<SubtractionLayer>(name);
1385}
1386
narpra0132b90462018-09-13 11:07:48 +01001387IConnectableLayer* Network::AddMeanLayer(const MeanDescriptor& meanDescriptor, const char* name)
1388{
1389 return m_Graph->AddLayer<MeanLayer>(meanDescriptor,name);
1390}
1391
Mohamed Nour Abouelseoud5662c202018-09-24 13:30:09 +01001392IConnectableLayer* Network::AddPadLayer(const PadDescriptor& padDescriptor, const char* name)
1393{
1394 return m_Graph->AddLayer<PadLayer>(padDescriptor,name);
1395}
1396
Derek Lambertia9cca6a2019-03-25 15:41:58 +00001397IConnectableLayer *Network::AddQuantizeLayer(const char *name)
1398{
1399 return m_Graph->AddLayer<QuantizeLayer>(name);
1400}
1401
Nattapat Chaimanowonge4294fd2019-03-28 09:56:53 +00001402IConnectableLayer* Network::AddDequantizeLayer(const char* name)
1403{
1404 return m_Graph->AddLayer<DequantizeLayer>(name);
1405}
1406
Conor Kennedy430b5d82018-11-14 15:28:28 +00001407IConnectableLayer* Network::AddStridedSliceLayer(const StridedSliceDescriptor& stridedSliceDescriptor,
1408 const char* name)
1409{
1410 return m_Graph->AddLayer<StridedSliceLayer>(stridedSliceDescriptor, name);
1411}
1412
Matteo Martincigh59a950c2018-12-13 12:48:25 +00001413IConnectableLayer* Network::AddGreaterLayer(const char* name)
1414{
1415 return m_Graph->AddLayer<GreaterLayer>(name);
1416}
1417
FrancisMurtagh20995952018-12-17 12:11:36 +00001418IConnectableLayer* Network::AddEqualLayer(const char* name)
1419{
jimfly0184c70e62018-12-19 13:14:46 +00001420 return m_Graph->AddLayer<EqualLayer>(name);
FrancisMurtagh20995952018-12-17 12:11:36 +00001421}
1422
Mohamed Nour Abouelseouda1d3c6a2018-12-27 12:39:16 +00001423IConnectableLayer* Network::AddRsqrtLayer(const char * name)
1424{
1425 return m_Graph->AddLayer<RsqrtLayer>(name);
1426}
1427
narpra01b89b05f2019-01-16 09:53:09 +00001428IConnectableLayer* Network::AddGatherLayer(const char* name)
1429{
1430 return m_Graph->AddLayer<GatherLayer>(name);
1431}
1432
Nattapat Chaimanowong1f886302019-04-05 13:37:19 +01001433IConnectableLayer* Network::AddMergeLayer(const char* name)
1434{
1435 return m_Graph->AddLayer<MergeLayer>(name);
1436}
1437
Sadik Armaganeff363d2019-04-05 15:25:46 +01001438IConnectableLayer* Network::AddSwitchLayer(const char* name)
1439{
1440 return m_Graph->AddLayer<SwitchLayer>(name);
1441}
1442
Matteo Martincigh0e406ee2019-06-12 15:42:18 +01001443IConnectableLayer* Network::AddPreluLayer(const char* name)
1444{
1445 return m_Graph->AddLayer<PreluLayer>(name);
1446}
1447
Aron Virginas-Tar639fb042019-06-20 14:28:19 +01001448IConnectableLayer* Network::AddTransposeConvolution2dLayer(const TransposeConvolution2dDescriptor& descriptor,
1449 const ConstTensor& weights,
1450 const Optional<ConstTensor>& biases,
1451 const char* name)
1452{
1453 if (descriptor.m_BiasEnabled && !biases.has_value())
1454 {
1455 throw InvalidArgumentException("AddTransposeConvolution2dLayer: Biases cannot be empty");
1456 }
1457
1458 const auto layer = m_Graph->AddLayer<TransposeConvolution2dLayer>(descriptor, name);
1459
1460 layer->m_Weight = std::make_unique<ScopedCpuTensorHandle>(weights);
1461
1462 if (descriptor.m_BiasEnabled)
1463 {
1464 layer->m_Bias = std::make_unique<ScopedCpuTensorHandle>(biases.value());
1465 }
1466
1467 return layer;
1468}
1469
Matthew Jackson2b8c1da2019-07-04 14:59:16 +01001470IConnectableLayer* Network::AddStackLayer(const StackDescriptor& stackDescriptor,
1471 const char* name)
1472{
1473 return m_Graph->AddLayer<StackLayer>(stackDescriptor, name);
1474}
1475
James Conroyee18dc82019-07-17 11:27:46 +01001476IConnectableLayer* Network::AddQuantizedLstmLayer(const QuantizedLstmInputParams& params,
1477 const char* name)
1478{
1479 const auto layer = m_Graph->AddLayer<QuantizedLstmLayer>(name);
1480
1481 // InputToX weights
1482 layer->m_QuantizedLstmParameters.m_InputToInputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001483 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToInputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001484 layer->m_QuantizedLstmParameters.m_InputToForgetWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001485 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToForgetWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001486 layer->m_QuantizedLstmParameters.m_InputToCellWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001487 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToCellWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001488 layer->m_QuantizedLstmParameters.m_InputToOutputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001489 std::make_unique<ScopedCpuTensorHandle>(params.GetInputToOutputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001490
1491 // RecurrentToX weights
1492 layer->m_QuantizedLstmParameters.m_RecurrentToInputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001493 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToInputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001494 layer->m_QuantizedLstmParameters.m_RecurrentToForgetWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001495 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToForgetWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001496 layer->m_QuantizedLstmParameters.m_RecurrentToCellWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001497 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToCellWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001498 layer->m_QuantizedLstmParameters.m_RecurrentToOutputWeights =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001499 std::make_unique<ScopedCpuTensorHandle>(params.GetRecurrentToOutputWeights());
James Conroyee18dc82019-07-17 11:27:46 +01001500
1501 // Bias
1502 layer->m_QuantizedLstmParameters.m_InputGateBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001503 std::make_unique<ScopedCpuTensorHandle>(params.GetInputGateBias());
James Conroyee18dc82019-07-17 11:27:46 +01001504 layer->m_QuantizedLstmParameters.m_ForgetGateBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001505 std::make_unique<ScopedCpuTensorHandle>(params.GetForgetGateBias());
James Conroyee18dc82019-07-17 11:27:46 +01001506 layer->m_QuantizedLstmParameters.m_CellBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001507 std::make_unique<ScopedCpuTensorHandle>(params.GetCellBias());
James Conroyee18dc82019-07-17 11:27:46 +01001508 layer->m_QuantizedLstmParameters.m_OutputGateBias =
Francis Murtaghbb590b42019-08-14 09:51:36 +01001509 std::make_unique<ScopedCpuTensorHandle>(params.GetOutputGateBias());
James Conroyee18dc82019-07-17 11:27:46 +01001510
1511 return layer;
1512}
1513
Mike Kelly8c1701a2019-02-11 17:01:27 +00001514void Network::Accept(ILayerVisitor& visitor) const
1515{
1516 for (auto layer : GetGraph())
1517 {
1518 layer->Accept(visitor);
1519 };
1520}
1521
telsoa014fcda012018-03-09 14:13:49 +00001522OptimizedNetwork::OptimizedNetwork(std::unique_ptr<Graph> graph)
1523 : m_Graph(std::move(graph))
1524{
1525}
1526
1527OptimizedNetwork::~OptimizedNetwork()
1528{
1529}
1530
1531} // namespace armnn