blob: 018adec7817ae7f930f1821aa83c48ec35835aa0 [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{
Matteo Martincighc3ba50e2019-05-22 14:28:16 +0100279 OptimizationViews optimizationViews;
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 {
Mike Kelly1ac690a2020-11-17 11:41:38 +0000344 biases = baseLayer->m_Bias->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(),
351 baseLayer->m_Weight->GetTensorInfo(),
352 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 {
Mike Kelly1ac690a2020-11-17 11:41:38 +0000376 biases = baseLayer->m_Bias->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(),
383 baseLayer->m_Weight->GetTensorInfo(),
384 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);
401
Matthew Bentham67d63902022-02-08 15:03:07 +0000402 Optional<TensorInfo> biases;
403
404 if (baseLayer->GetParameters().m_BiasEnabled)
405 {
406 biases = baseLayer->m_Bias->GetTensorInfo();
407 }
408
Mike Kelly07810fc2020-11-12 10:58:48 +0000409 arm_compute::Status status = ClFullyConnectedWorkloadValidate(
410 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
411 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
412 baseLayer->m_Weight->GetTensorInfo(),
Matthew Bentham67d63902022-02-08 15:03:07 +0000413 biases,
Mike Kelly07810fc2020-11-12 10:58:48 +0000414 baseLayer->GetParameters(),
415 &activationDesc);
416
417 if (status)
418 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000419 FuseFullyConnectedLayer<FullyConnectedLayer>(optimizationViews,
420 baseLayer,
421 activationLayer,
422 activationDesc,
423 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000424 untouched.erase(baseLayer->GetGuid());
425 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000426 }
427 }
428 else if (base.GetType() == LayerType::BatchNormalization)
429 {
430 BatchNormalizationLayer* baseLayer =
431 PolymorphicDowncast<BatchNormalizationLayer*>(&base);
432
433 arm_compute::Status status = ClBatchNormalizationValidate(
434 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
435 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
436 baseLayer->m_Mean->GetTensorInfo(),
437 baseLayer->m_Variance->GetTensorInfo(),
438 baseLayer->m_Beta->GetTensorInfo(),
439 baseLayer->m_Gamma->GetTensorInfo(),
440 baseLayer->GetParameters(),
441 &activationDesc);
442
443 if (status)
444 {
445 BatchNormalizationLayer* replacementLayer =
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000446 FuseBatchNormalizationLayer<BatchNormalizationLayer>(optimizationViews,
Mike Kelly07810fc2020-11-12 10:58:48 +0000447 baseLayer,
448 activationLayer,
449 activationDesc,
450 name);
451
452 replacementLayer->m_Beta = std::move(baseLayer->m_Beta);
453 replacementLayer->m_Gamma = std::move(baseLayer->m_Gamma);
454 replacementLayer->m_Mean = std::move(baseLayer->m_Mean);
455 replacementLayer->m_Variance = std::move(baseLayer->m_Variance);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000456 untouched.erase(baseLayer->GetGuid());
457 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000458 }
459 }
460 else if (base.GetType() == LayerType::Addition)
461 {
462 AdditionLayer* baseLayer = PolymorphicDowncast<AdditionLayer*>(&base);
463
464 arm_compute::Status status = ClAdditionValidate(
465 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
466 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
467 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
468 &activationDesc);
469
470 if (status)
471 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000472 FuseAdditionLayer<AdditionLayer>(optimizationViews,
473 baseLayer,
474 activationLayer,
475 activationDesc,
476 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000477 untouched.erase(baseLayer->GetGuid());
478 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000479 }
480 }
481 else if (base.GetType() == LayerType::Division)
482 {
483 DivisionLayer* baseLayer = PolymorphicDowncast<DivisionLayer*>(&base);
484
485 arm_compute::Status status = ClDivisionWorkloadValidate(
486 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
487 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
488 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
489 &activationDesc);
490
491 if (status)
492 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000493 FuseDivisionLayer<DivisionLayer>(optimizationViews,
494 baseLayer,
495 activationLayer,
496 activationDesc,
497 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000498 untouched.erase(baseLayer->GetGuid());
499 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000500 }
501 }
502 else if (base.GetType() == LayerType::Multiplication)
503 {
504 MultiplicationLayer* baseLayer = PolymorphicDowncast<MultiplicationLayer*>(&base);
505
506 arm_compute::Status status = ClMultiplicationWorkloadValidate(
507 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
508 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
509 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
510 &activationDesc);
511
512 if (status)
513 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000514 FuseMultiplicationLayer<MultiplicationLayer>(optimizationViews,
515 baseLayer,
516 activationLayer,
517 activationDesc,
518 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000519 untouched.erase(baseLayer->GetGuid());
520 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000521 }
522 }
523 else if (base.GetType() == LayerType::Subtraction)
524 {
525 SubtractionLayer* baseLayer = PolymorphicDowncast<SubtractionLayer*>(&base);
526
527 arm_compute::Status status = ClSubtractionValidate(
528 baseLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
529 baseLayer->GetInputSlot(1).GetConnectedOutputSlot()->GetTensorInfo(),
530 activationLayer->GetInputSlot(0).GetConnectedOutputSlot()->GetTensorInfo(),
531 &activationDesc);
532
533 if (status)
534 {
Cathal Corbettcbfd7182021-12-15 17:12:59 +0000535 FuseSubtractionLayer<SubtractionLayer>(optimizationViews,
536 baseLayer,
537 activationLayer,
538 activationDesc,
539 name);
Mike Kelly1ac690a2020-11-17 11:41:38 +0000540 untouched.erase(baseLayer->GetGuid());
541 untouched.erase(activationLayer->GetGuid());
Mike Kelly07810fc2020-11-12 10:58:48 +0000542 }
543 }
544 }
545 }
546 }
547 }
548 }
Matthew Sloyan5fc0fd62021-05-03 12:22:03 +0100549
550 // Separate reduce layer with multiple axes into multiple reduce layers with 1 axis.
551 if (base.GetType() == LayerType::Reduce)
552 {
553 ReduceLayer* baseLayer = PolymorphicDowncast<ReduceLayer*>(&base);
554 ReduceDescriptor reduceDescriptor = baseLayer->GetParameters();
555
556 if (!reduceDescriptor.m_vAxis.empty() && reduceDescriptor.m_vAxis.size() > 1)
557 {
558 // Add new layers to the graph and connect them.
Francis Murtagh56ccf682021-12-13 18:48:12 +0000559 std::vector<IConnectableLayer*> layers = ChainReduceLayers<ReduceLayer>(optimizationViews,
560 baseLayer,
561 reduceDescriptor);
Matthew Sloyan5fc0fd62021-05-03 12:22:03 +0100562
563 // Replace existing baselayer with new subgraph.
564 ReplaceLayers<ReduceLayer>(optimizationViews, baseLayer, layers);
565 untouched.erase(baseLayer->GetGuid());
566 }
567 }
Mike Kelly07810fc2020-11-12 10:58:48 +0000568 }
Mike Kelly1ac690a2020-11-17 11:41:38 +0000569
Mike Kelly07810fc2020-11-12 10:58:48 +0000570 if (optimizationViews.GetSubstitutions().empty())
571 {
572 optimizationViews.AddUntouchedSubgraph(SubgraphView(subgraph));
573 }
Mike Kelly1ac690a2020-11-17 11:41:38 +0000574 else
575 {
576 ReportUntouchedLayers(optimizationViews, untouched);
577 }
Matteo Martincighc3ba50e2019-05-22 14:28:16 +0100578
579 return optimizationViews;
Matteo Martincighadddddb2019-01-24 14:06:23 +0000580}
581
David Beck9efb57d2018-11-05 13:40:33 +0000582} // namespace armnn