blob: 1fe53de62a9f30c58a9ab1deec066809486aa680 [file] [log] [blame]
arovir014424b0a2018-10-04 10:46:04 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "ClBackend.hpp"
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +01007#include "ClBackendContext.hpp"
David Monahan6642b8a2021-11-04 16:31:46 +00008#include "ClBackendDefaultAllocator.hpp"
David Beck3e9e1152018-10-17 14:17:50 +01009#include "ClBackendId.hpp"
Sadik Armagan045f6be2020-09-10 13:37:32 +010010#include "ClBackendModelContext.hpp"
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +010011#include "ClImportTensorHandleFactory.hpp"
David Beck111b5d92018-11-12 14:59:37 +000012#include "ClLayerSupport.hpp"
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010013#include "ClTensorHandleFactory.hpp"
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +010014#include "ClWorkloadFactory.hpp"
arovir01a0944792018-10-11 15:00:58 +010015
Matteo Martincighc601aa62019-10-29 15:03:22 +000016#include <armnn/BackendRegistry.hpp>
Mike Kelly07810fc2020-11-12 10:58:48 +000017#include <armnn/Descriptors.hpp>
Matteo Martincighc601aa62019-10-29 15:03:22 +000018
Mike Kelly07810fc2020-11-12 10:58:48 +000019#include <aclCommon/ArmComputeSubgraphUtils.hpp>
20#include <aclCommon/ArmComputeUtils.hpp>
Aron Virginas-Tar56055192018-11-12 18:10:43 +000021#include <aclCommon/BaseMemoryManager.hpp>
22
Matteo Martincighe5b8eb92019-11-28 15:45:42 +000023#include <armnn/backends/IBackendContext.hpp>
24#include <armnn/backends/IMemoryManager.hpp>
Jan Eilers3c9e0452020-04-10 13:00:44 +010025#include <armnn/utility/PolymorphicDowncast.hpp>
26
Mike Kelly07810fc2020-11-12 10:58:48 +000027#include "workloads/ClAdditionWorkload.hpp"
28#include "workloads/ClBatchNormalizationFloatWorkload.hpp"
29#include "workloads/ClConvolution2dWorkload.hpp"
30#include "workloads/ClDepthwiseConvolutionWorkload.hpp"
Teresa Charline11e63d2021-04-21 12:56:45 +010031#include "workloads/ClDivisionWorkload.hpp"
Mike Kelly07810fc2020-11-12 10:58:48 +000032#include "workloads/ClFullyConnectedWorkload.hpp"
33#include "workloads/ClMultiplicationWorkload.hpp"
Matthew Sloyan5fc0fd62021-05-03 12:22:03 +010034#include "workloads/ClReduceWorkload.hpp"
Mike Kelly07810fc2020-11-12 10:58:48 +000035#include "workloads/ClSubtractionWorkload.hpp"
36
David Beck263e3492018-11-09 14:46:40 +000037#include <Optimizer.hpp>
arovir014424b0a2018-10-04 10:46:04 +010038
Mike Kelly07810fc2020-11-12 10:58:48 +000039#include <arm_compute/core/Types.h>
Aron Virginas-Tar56055192018-11-12 18:10:43 +000040#include <arm_compute/runtime/CL/CLBufferAllocator.h>
41
arovir014424b0a2018-10-04 10:46:04 +010042namespace armnn
43{
44
David Beck3cc9a622018-10-12 10:38:31 +010045const BackendId& ClBackend::GetIdStatic()
arovir014424b0a2018-10-04 10:46:04 +010046{
David Beck3e9e1152018-10-17 14:17:50 +010047 static const BackendId s_Id{ClBackendId()};
arovir014424b0a2018-10-04 10:46:04 +010048 return s_Id;
49}
50
Aron Virginas-Tar56055192018-11-12 18:10:43 +000051IBackendInternal::IMemoryManagerUniquePtr ClBackend::CreateMemoryManager() const
arovir014424b0a2018-10-04 10:46:04 +010052{
Jan Eilersc1c872f2021-07-22 13:17:04 +010053 if (m_UsingCustomAllocator)
54 {
55 return std::make_unique<ClMemoryManager>(m_CustomAllocator);
56 }
Aron Virginas-Tar56055192018-11-12 18:10:43 +000057 return std::make_unique<ClMemoryManager>(std::make_unique<arm_compute::CLBufferAllocator>());
58}
59
60IBackendInternal::IWorkloadFactoryPtr ClBackend::CreateWorkloadFactory(
61 const IBackendInternal::IMemoryManagerSharedPtr& memoryManager) const
62{
63 return std::make_unique<ClWorkloadFactory>(
Jan Eilers3c9e0452020-04-10 13:00:44 +010064 PolymorphicPointerDowncast<ClMemoryManager>(memoryManager));
arovir014424b0a2018-10-04 10:46:04 +010065}
66
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010067IBackendInternal::IWorkloadFactoryPtr ClBackend::CreateWorkloadFactory(
Sadik Armagan04a72972020-09-14 15:44:18 +010068 const IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const ModelOptions& modelOptions) const
69{
70 return std::make_unique<ClWorkloadFactory>(
71 PolymorphicPointerDowncast<ClMemoryManager>(memoryManager), CreateBackendSpecificModelContext(modelOptions));
72}
73
74IBackendInternal::IWorkloadFactoryPtr ClBackend::CreateWorkloadFactory(
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010075 TensorHandleFactoryRegistry& registry) const
76{
Jan Eilersc1c872f2021-07-22 13:17:04 +010077 std::shared_ptr<ClMemoryManager> memoryManager;
78 if (m_UsingCustomAllocator)
79 {
80 memoryManager = std::make_shared<ClMemoryManager>(m_CustomAllocator);
81 }
82 else
83 {
84 memoryManager = std::make_shared<ClMemoryManager>(std::make_unique<arm_compute::CLBufferAllocator>());
85 }
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010086
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +000087 std::unique_ptr<ITensorHandleFactory> factory = std::make_unique<ClTensorHandleFactory>(memoryManager);
88 std::unique_ptr<ITensorHandleFactory> importFactory = std::make_unique<ClImportTensorHandleFactory>(
89 static_cast<MemorySourceFlags>(MemorySource::Malloc), static_cast<MemorySourceFlags>(MemorySource::Malloc));
90
91 registry.RegisterCopyAndImportFactoryPair(factory->GetId(), importFactory->GetId());
92 registry.RegisterCopyAndImportFactoryPair(importFactory->GetId(), factory->GetId());
93
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010094 registry.RegisterMemoryManager(memoryManager);
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +000095 registry.RegisterFactory(std::move(factory));
96 registry.RegisterFactory(std::move(importFactory));
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010097
98 return std::make_unique<ClWorkloadFactory>(
Jan Eilers3c9e0452020-04-10 13:00:44 +010099 PolymorphicPointerDowncast<ClMemoryManager>(memoryManager));
Jan Eilerse9f0f0f2019-08-16 10:28:37 +0100100}
101
Sadik Armagan04a72972020-09-14 15:44:18 +0100102IBackendInternal::IWorkloadFactoryPtr ClBackend::CreateWorkloadFactory(
103 TensorHandleFactoryRegistry& registry, const ModelOptions& modelOptions) const
104{
Jan Eilersc1c872f2021-07-22 13:17:04 +0100105 std::shared_ptr<ClMemoryManager> memoryManager;
106 if (m_UsingCustomAllocator)
107 {
108 memoryManager = std::make_shared<ClMemoryManager>(m_CustomAllocator);
109 }
110 else
111 {
112 memoryManager = std::make_shared<ClMemoryManager>(std::make_unique<arm_compute::CLBufferAllocator>());
113 }
Sadik Armagan04a72972020-09-14 15:44:18 +0100114
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000115 std::unique_ptr<ITensorHandleFactory> factory = std::make_unique<ClTensorHandleFactory>(memoryManager);
116 std::unique_ptr<ITensorHandleFactory> importFactory = std::make_unique<ClImportTensorHandleFactory>(
117 static_cast<MemorySourceFlags>(MemorySource::Malloc), static_cast<MemorySourceFlags>(MemorySource::Malloc));
118
119 registry.RegisterCopyAndImportFactoryPair(factory->GetId(), importFactory->GetId());
120 registry.RegisterCopyAndImportFactoryPair(importFactory->GetId(), factory->GetId());
121
Sadik Armagan04a72972020-09-14 15:44:18 +0100122 registry.RegisterMemoryManager(memoryManager);
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000123 registry.RegisterFactory(std::move(factory));
124 registry.RegisterFactory(std::move(importFactory));
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100125
126 return std::make_unique<ClWorkloadFactory>(
127 PolymorphicPointerDowncast<ClMemoryManager>(memoryManager), CreateBackendSpecificModelContext(modelOptions));
128}
129
130IBackendInternal::IWorkloadFactoryPtr ClBackend::CreateWorkloadFactory(
131 TensorHandleFactoryRegistry& registry,
132 const ModelOptions& modelOptions,
133 MemorySourceFlags inputFlags,
134 MemorySourceFlags outputFlags) const
135{
Narumol Prangnawarate2af6f42022-01-28 17:59:18 +0000136 // To allow force import if inputFlags/outputFlags are Undefined, set it as Malloc
137 if (inputFlags == static_cast<MemorySourceFlags>(MemorySource::Undefined))
138 {
139 inputFlags = static_cast<MemorySourceFlags>(MemorySource::Malloc);
140 }
141 if (outputFlags == static_cast<MemorySourceFlags>(MemorySource::Undefined))
142 {
143 outputFlags = static_cast<MemorySourceFlags>(MemorySource::Malloc);
144 }
Jan Eilersc1c872f2021-07-22 13:17:04 +0100145 std::shared_ptr<ClMemoryManager> memoryManager;
146 if (m_UsingCustomAllocator)
147 {
148 memoryManager = std::make_shared<ClMemoryManager>(m_CustomAllocator);
149 }
150 else
151 {
152 memoryManager = std::make_shared<ClMemoryManager>(std::make_unique<arm_compute::CLBufferAllocator>());
153 }
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100154
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000155 std::unique_ptr<ITensorHandleFactory> factory = std::make_unique<ClTensorHandleFactory>(memoryManager);
156 std::unique_ptr<ITensorHandleFactory> importFactory = std::make_unique<ClImportTensorHandleFactory>(
157 inputFlags, outputFlags);
158
159 registry.RegisterCopyAndImportFactoryPair(factory->GetId(), importFactory->GetId());
160 registry.RegisterCopyAndImportFactoryPair(importFactory->GetId(), factory->GetId());
161
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100162 registry.RegisterMemoryManager(memoryManager);
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000163 registry.RegisterFactory(std::move(factory));
164 registry.RegisterFactory(std::move(importFactory));
Sadik Armagan04a72972020-09-14 15:44:18 +0100165
166 return std::make_unique<ClWorkloadFactory>(
167 PolymorphicPointerDowncast<ClMemoryManager>(memoryManager), CreateBackendSpecificModelContext(modelOptions));
168}
169
Jan Eilerse9f0f0f2019-08-16 10:28:37 +0100170std::vector<ITensorHandleFactory::FactoryId> ClBackend::GetHandleFactoryPreferences() const
171{
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100172 return std::vector<ITensorHandleFactory::FactoryId> {ClTensorHandleFactory::GetIdStatic(),
173 ClImportTensorHandleFactory::GetIdStatic()};
Jan Eilerse9f0f0f2019-08-16 10:28:37 +0100174}
175
176void ClBackend::RegisterTensorHandleFactories(TensorHandleFactoryRegistry& registry)
177{
Jan Eilersc1c872f2021-07-22 13:17:04 +0100178 std::shared_ptr<ClMemoryManager> memoryManager;
179 if (m_UsingCustomAllocator)
180 {
181 memoryManager = std::make_shared<ClMemoryManager>(m_CustomAllocator);
182 }
183 else
184 {
185 memoryManager = std::make_shared<ClMemoryManager>(std::make_unique<arm_compute::CLBufferAllocator>());
186 }
Jan Eilerse9f0f0f2019-08-16 10:28:37 +0100187
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000188 std::unique_ptr<ITensorHandleFactory> factory = std::make_unique<ClTensorHandleFactory>(memoryManager);
189 std::unique_ptr<ITensorHandleFactory> importFactory = std::make_unique<ClImportTensorHandleFactory>(
190 static_cast<MemorySourceFlags>(MemorySource::Malloc), static_cast<MemorySourceFlags>(MemorySource::Malloc));
191
192 registry.RegisterCopyAndImportFactoryPair(factory->GetId(), importFactory->GetId());
193 registry.RegisterCopyAndImportFactoryPair(importFactory->GetId(), factory->GetId());
194
Jan Eilersc1c872f2021-07-22 13:17:04 +0100195 registry.RegisterMemoryManager(memoryManager);
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000196 registry.RegisterFactory(std::move(factory));
197 registry.RegisterFactory(std::move(importFactory));
198
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100199}
200
201void ClBackend::RegisterTensorHandleFactories(TensorHandleFactoryRegistry& registry,
202 MemorySourceFlags inputFlags,
203 MemorySourceFlags outputFlags)
204{
Narumol Prangnawarate2af6f42022-01-28 17:59:18 +0000205 // To allow force import if inputFlags/outputFlags are Undefined, set it as Malloc
206 if (inputFlags == static_cast<MemorySourceFlags>(MemorySource::Undefined))
207 {
208 inputFlags = static_cast<MemorySourceFlags>(MemorySource::Malloc);
209 }
210 if (outputFlags == static_cast<MemorySourceFlags>(MemorySource::Undefined))
211 {
212 outputFlags = static_cast<MemorySourceFlags>(MemorySource::Malloc);
213 }
Jan Eilersc1c872f2021-07-22 13:17:04 +0100214 std::shared_ptr<ClMemoryManager> memoryManager;
215 if (m_UsingCustomAllocator)
216 {
217 memoryManager = std::make_shared<ClMemoryManager>(m_CustomAllocator);
218 }
219 else
220 {
221 memoryManager = std::make_shared<ClMemoryManager>(std::make_unique<arm_compute::CLBufferAllocator>());
222 }
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100223
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000224 std::unique_ptr<ITensorHandleFactory> factory = std::make_unique<ClTensorHandleFactory>(memoryManager);
225 std::unique_ptr<ITensorHandleFactory> importFactory = std::make_unique<ClImportTensorHandleFactory>(
226 inputFlags, outputFlags);
227
228 registry.RegisterCopyAndImportFactoryPair(factory->GetId(), importFactory->GetId());
229 registry.RegisterCopyAndImportFactoryPair(importFactory->GetId(), factory->GetId());
230
Jan Eilersc1c872f2021-07-22 13:17:04 +0100231 registry.RegisterMemoryManager(memoryManager);
Narumol Prangnawaratd12b4072022-01-17 18:03:14 +0000232 registry.RegisterFactory(std::move(factory));
233 registry.RegisterFactory(std::move(importFactory));
Jan Eilerse9f0f0f2019-08-16 10:28:37 +0100234}
235
Sadik Armagan045f6be2020-09-10 13:37:32 +0100236IBackendInternal::IBackendContextPtr ClBackend::CreateBackendContext(const IRuntime::CreationOptions& options) const
David Beck1b61be52018-11-08 09:19:14 +0000237{
238 return IBackendContextPtr{new ClBackendContext{options}};
239}
240
Colm Donelane49755b2020-01-29 15:22:43 +0000241IBackendInternal::IBackendProfilingContextPtr ClBackend::CreateBackendProfilingContext(
Colm Donelan1aff3932020-02-05 17:48:59 +0000242 const IRuntime::CreationOptions&, IBackendProfilingPtr&)
Colm Donelane49755b2020-01-29 15:22:43 +0000243{
244 return IBackendProfilingContextPtr{};
245}
246
Sadik Armagan045f6be2020-09-10 13:37:32 +0100247IBackendInternal::IBackendSpecificModelContextPtr ClBackend::CreateBackendSpecificModelContext(
248 const ModelOptions& modelOptions) const
249{
250 return IBackendSpecificModelContextPtr{new ClBackendModelContext{modelOptions}};
251}
252
David Beck111b5d92018-11-12 14:59:37 +0000253IBackendInternal::ILayerSupportSharedPtr ClBackend::GetLayerSupport() const
254{
Sadik Armagan045f6be2020-09-10 13:37:32 +0100255 static ILayerSupportSharedPtr layerSupport
256 {
257 new ClLayerSupport(IBackendInternal::IBackendSpecificModelContextPtr{})
258 };
259 return layerSupport;
260}
261
262IBackendInternal::ILayerSupportSharedPtr ClBackend::GetLayerSupport(const ModelOptions& modelOptions) const
263{
264 static ILayerSupportSharedPtr layerSupport
265 {
266 new ClLayerSupport(CreateBackendSpecificModelContext(modelOptions))
267 };
David Beck111b5d92018-11-12 14:59:37 +0000268 return layerSupport;
269}
270
David Monahan6642b8a2021-11-04 16:31:46 +0000271std::unique_ptr<ICustomAllocator> ClBackend::GetDefaultAllocator() const
272{
273 return std::make_unique<ClBackendDefaultAllocator>();
274}
275
Mike Kelly07810fc2020-11-12 10:58:48 +0000276OptimizationViews ClBackend::OptimizeSubgraphView(const SubgraphView& subgraph,
277 const ModelOptions& modelOptions) const
Matteo Martincighadddddb2019-01-24 14:06:23 +0000278{
Mike Kelly80512b02022-05-16 23:10:42 +0100279 OptimizationViews optimizationViews(modelOptions);
Matteo Martincighadddddb2019-01-24 14:06:23 +0000280
Francis Murtagh56ccf682021-12-13 18:48:12 +0000281 auto it = subgraph.endIConnectable();
Mike Kelly07810fc2020-11-12 10:58:48 +0000282 bool isFastMathEnabled = false;
Mike Kelly1ac690a2020-11-17 11:41:38 +0000283 std::map<LayerGuid, Layer*> untouched;
Mike Kelly07810fc2020-11-12 10:58:48 +0000284
Francis Murtagh56ccf682021-12-13 18:48:12 +0000285 while (it != subgraph.beginIConnectable())
Mike Kelly1ac690a2020-11-17 11:41:38 +0000286 {
287 --it;
Francis Murtagh56ccf682021-12-13 18:48:12 +0000288 Layer& base = *(PolymorphicDowncast<Layer*>(*it));
Mike Kelly1ac690a2020-11-17 11:41:38 +0000289 untouched.insert({base.GetGuid(), &base});
290 }
291
Francis Murtagh56ccf682021-12-13 18:48:12 +0000292 it = subgraph.endIConnectable();
Mike Kelly07810fc2020-11-12 10:58:48 +0000293#if defined(ARMCOMPUTECL_ENABLED)
294 IBackendInternal::IBackendSpecificModelContextPtr modelContextPtr = CreateBackendSpecificModelContext(modelOptions);
295
296 if (modelContextPtr)
297 {
298 auto clModelOptions = dynamic_cast<ClBackendModelContext*>(modelContextPtr.get());
299 if (clModelOptions)
300 {
301 isFastMathEnabled = clModelOptions->IsFastMathEnabled();
302 }
303 }
304#endif
Francis Murtagh56ccf682021-12-13 18:48:12 +0000305 while (it != subgraph.beginIConnectable())
Mike Kelly07810fc2020-11-12 10:58:48 +0000306 {
307 --it;
Francis Murtagh56ccf682021-12-13 18:48:12 +0000308 Layer& base = *(PolymorphicDowncast<Layer*>(*it));
Mike Kelly07810fc2020-11-12 10:58:48 +0000309
Matthew Sloyan5fc0fd62021-05-03 12:22:03 +0100310 // Fuse activation into previous layer if supported by backend
Mike Kelly07810fc2020-11-12 10:58:48 +0000311 if ((base.GetType() == LayerType::DepthwiseConvolution2d || base.GetType() == LayerType::Convolution2d
312 || base.GetType() == LayerType::BatchNormalization || base.GetType() == LayerType::FullyConnected
313 || base.GetType() == LayerType::Addition || base.GetType() == LayerType::Multiplication
Matthew Sloyanae123062021-05-07 14:18:01 +0000314 || base.GetType() == LayerType::Subtraction || base.GetType() == LayerType::Division)
Mike Kelly07810fc2020-11-12 10:58:48 +0000315 && (base.GetAdditionalInformation<ActivationDescriptor>() == nullptr))
316 {
317 for (auto output = base.BeginOutputSlots(); output != base.EndOutputSlots(); ++output)
318 {
319 if (output->GetNumConnections() == 1)
320 {
321 for (auto&& childInput : output->GetConnections())
322 {
Teresa Charlind672f5d2021-01-18 18:07:57 +0000323 if ((childInput->GetOwningLayer().GetType() == LayerType::Activation) &&
324 (checkDataTypeInputandOutput(childInput->GetOwningLayer())))
Mike Kelly07810fc2020-11-12 10:58:48 +0000325 {
326 Layer& child = childInput->GetOwningLayer();
327
328 auto* activationLayer = PolymorphicDowncast<ActivationLayer*>(&child);
329
330 const std::string name = std::string("fused-") + child.GetName() + std::string("-into-") +
331 base.GetName();
332
333 // Get params from activation layer
334 ActivationDescriptor activationDesc = activationLayer->GetParameters();
335
336 if (base.GetType() == LayerType::Convolution2d)
337 {
338 Convolution2dLayer* baseLayer = PolymorphicDowncast<Convolution2dLayer*>(&base);
339
340 Optional<TensorInfo> biases;
341
342 if (baseLayer->GetParameters().m_BiasEnabled)
343 {
Keith Davisb4dd5cc2022-04-07 11:32:00 +0100344 biases = baseLayer->GetInputSlot(2).GetConnectedOutputSlot()->GetTensorInfo();
Mike Kelly07810fc2020-11-12 10:58:48 +0000345 }
346
347 arm_compute::Status status = ClConvolution2dWorkloadValidate(
348 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
349 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
350 baseLayer->GetParameters(),
Keith Davisb4dd5cc2022-04-07 11:32:00 +0100351 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
Mike Kelly07810fc2020-11-12 10:58:48 +0000352 biases,
353 isFastMathEnabled,
354 &activationDesc);
355
356 if (status)
357 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000358 FuseConvolution2dLayer<Convolution2dLayer>(optimizationViews,
359 baseLayer,
360 activationLayer,
361 activationDesc,
362 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000363 untouched.erase(baseLayer->GetGuid());
364 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000365 }
366 }
367 else if (base.GetType() == LayerType::DepthwiseConvolution2d)
368 {
369 DepthwiseConvolution2dLayer* baseLayer =
370 PolymorphicDowncast<DepthwiseConvolution2dLayer*>(&base);
371
372 Optional<TensorInfo> biases;
373
374 if (baseLayer->GetParameters().m_BiasEnabled)
375 {
Cathal Corbett06902652022-04-14 17:55:11 +0100376 biases = baseLayer->GetInputSlot(2).GetConnectedOutputSlot()->GetTensorInfo();
Mike Kelly07810fc2020-11-12 10:58:48 +0000377 }
378
379 arm_compute::Status status = ClDepthwiseConvolutionWorkloadValidate(
380 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
381 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
382 baseLayer->GetParameters(),
Cathal Corbett06902652022-04-14 17:55:11 +0100383 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
Mike Kelly07810fc2020-11-12 10:58:48 +0000384 biases,
385 &activationDesc);
386
387 if (status)
388 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000389 FuseDepthwiseConvolution2dLayer<DepthwiseConvolution2dLayer>(optimizationViews,
390 baseLayer,
391 activationLayer,
392 activationDesc,
393 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000394 untouched.erase(baseLayer->GetGuid());
395 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000396 }
397 }
398 else if (base.GetType() == LayerType::FullyConnected)
399 {
400 FullyConnectedLayer* baseLayer = PolymorphicDowncast<FullyConnectedLayer*>(&base);
Cathal Corbett4452baf2022-05-13 09:55:59 +0100401 FullyConnectedDescriptor descriptor = baseLayer->GetParameters();
Mike Kelly07810fc2020-11-12 10:58:48 +0000402
Cathal Corbett4452baf2022-05-13 09:55:59 +0100403 // As bias is optional only try to get TensorInfo from input if bias is enabled.
Matthew Bentham67d63902022-02-08 15:03:07 +0000404 Optional<TensorInfo> biases;
Cathal Corbett4452baf2022-05-13 09:55:59 +0100405 if (descriptor.m_BiasEnabled)
Matthew Bentham67d63902022-02-08 15:03:07 +0000406 {
Cathal Corbett4452baf2022-05-13 09:55:59 +0100407 biases = baseLayer->GetInputSlot(2).GetConnectedOutputSlot()->GetTensorInfo();
Matthew Bentham67d63902022-02-08 15:03:07 +0000408 }
409
Mike Kelly07810fc2020-11-12 10:58:48 +0000410 arm_compute::Status status = ClFullyConnectedWorkloadValidate(
411 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
412 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
Cathal Corbett4452baf2022-05-13 09:55:59 +0100413 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
Matthew Bentham67d63902022-02-08 15:03:07 +0000414 biases,
Mike Kelly07810fc2020-11-12 10:58:48 +0000415 baseLayer->GetParameters(),
416 &activationDesc);
417
418 if (status)
419 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000420 FuseFullyConnectedLayer<FullyConnectedLayer>(optimizationViews,
421 baseLayer,
422 activationLayer,
423 activationDesc,
424 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000425 untouched.erase(baseLayer->GetGuid());
426 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000427 }
428 }
429 else if (base.GetType() == LayerType::BatchNormalization)
430 {
431 BatchNormalizationLayer* baseLayer =
432 PolymorphicDowncast<BatchNormalizationLayer*>(&base);
433
434 arm_compute::Status status = ClBatchNormalizationValidate(
435 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
436 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
437 baseLayer->m_Mean->GetTensorInfo(),
438 baseLayer->m_Variance->GetTensorInfo(),
439 baseLayer->m_Beta->GetTensorInfo(),
440 baseLayer->m_Gamma->GetTensorInfo(),
441 baseLayer->GetParameters(),
442 &activationDesc);
443
444 if (status)
445 {
446 BatchNormalizationLayer* replacementLayer =
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000447 FuseBatchNormalizationLayer<BatchNormalizationLayer>(optimizationViews,
Mike Kelly07810fc2020-11-12 10:58:48 +0000448 baseLayer,
449 activationLayer,
450 activationDesc,
451 name);
452
453 replacementLayer->m_Beta = std::move(baseLayer->m_Beta);
454 replacementLayer->m_Gamma = std::move(baseLayer->m_Gamma);
455 replacementLayer->m_Mean = std::move(baseLayer->m_Mean);
456 replacementLayer->m_Variance = std::move(baseLayer->m_Variance);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000457 untouched.erase(baseLayer->GetGuid());
458 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000459 }
460 }
461 else if (base.GetType() == LayerType::Addition)
462 {
463 AdditionLayer* baseLayer = PolymorphicDowncast<AdditionLayer*>(&base);
464
465 arm_compute::Status status = ClAdditionValidate(
466 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
467 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
468 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
469 &activationDesc);
470
471 if (status)
472 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000473 FuseAdditionLayer<AdditionLayer>(optimizationViews,
474 baseLayer,
475 activationLayer,
476 activationDesc,
477 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000478 untouched.erase(baseLayer->GetGuid());
479 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000480 }
481 }
482 else if (base.GetType() == LayerType::Division)
483 {
484 DivisionLayer* baseLayer = PolymorphicDowncast<DivisionLayer*>(&base);
485
486 arm_compute::Status status = ClDivisionWorkloadValidate(
487 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
488 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
489 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
490 &activationDesc);
491
492 if (status)
493 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000494 FuseDivisionLayer<DivisionLayer>(optimizationViews,
495 baseLayer,
496 activationLayer,
497 activationDesc,
498 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000499 untouched.erase(baseLayer->GetGuid());
500 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000501 }
502 }
503 else if (base.GetType() == LayerType::Multiplication)
504 {
505 MultiplicationLayer* baseLayer = PolymorphicDowncast<MultiplicationLayer*>(&base);
506
507 arm_compute::Status status = ClMultiplicationWorkloadValidate(
508 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
509 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
510 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
511 &activationDesc);
512
513 if (status)
514 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000515 FuseMultiplicationLayer<MultiplicationLayer>(optimizationViews,
516 baseLayer,
517 activationLayer,
518 activationDesc,
519 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000520 untouched.erase(baseLayer->GetGuid());
521 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000522 }
523 }
524 else if (base.GetType() == LayerType::Subtraction)
525 {
526 SubtractionLayer* baseLayer = PolymorphicDowncast<SubtractionLayer*>(&base);
527
528 arm_compute::Status status = ClSubtractionValidate(
529 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
530 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
531 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
532 &activationDesc);
533
534 if (status)
535 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000536 FuseSubtractionLayer<SubtractionLayer>(optimizationViews,
537 baseLayer,
538 activationLayer,
539 activationDesc,
540 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000541 untouched.erase(baseLayer->GetGuid());
542 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000543 }
544 }
545 }
546 }
547 }
548 }
549 }
Matthew Sloyan5fc0fd62021-05-03 12:22:03 +0100550
551 // Separate reduce layer with multiple axes into multiple reduce layers with 1 axis.
552 if (base.GetType() == LayerType::Reduce)
553 {
554 ReduceLayer* baseLayer = PolymorphicDowncast<ReduceLayer*>(&base);
555 ReduceDescriptor reduceDescriptor = baseLayer->GetParameters();
556
557 if (!reduceDescriptor.m_vAxis.empty() && reduceDescriptor.m_vAxis.size() > 1)
558 {
559 // Add new layers to the graph and connect them.
Francis Murtagh56ccf682021-12-13 18:48:12 +0000560 std::vector<IConnectableLayer*> layers = ChainReduceLayers<ReduceLayer>(optimizationViews,
561 baseLayer,
562 reduceDescriptor);
Matthew Sloyan5fc0fd62021-05-03 12:22:03 +0100563
564 // Replace existing baselayer with new subgraph.
565 ReplaceLayers<ReduceLayer>(optimizationViews, baseLayer, layers);
566 untouched.erase(baseLayer->GetGuid());
567 }
568 }
Mike Kelly07810fc2020-11-12 10:58:48 +0000569 }
Mike Kelly1ac690a2020-11-17 11:41:38 +0000570
Mike Kelly07810fc2020-11-12 10:58:48 +0000571 if (optimizationViews.GetSubstitutions().empty())
572 {
573 optimizationViews.AddUntouchedSubgraph(SubgraphView(subgraph));
574 }
Mike Kelly1ac690a2020-11-17 11:41:38 +0000575 else
576 {
577 ReportUntouchedLayers(optimizationViews, untouched);
578 }
Matteo Martincighc3ba50e2019-05-22 14:28:16 +0100579
580 return optimizationViews;
Matteo Martincighadddddb2019-01-24 14:06:23 +0000581}
582
David Beck9efb57d2018-11-05 13:40:33 +0000583} // namespace armnn