ArmNN
 21.02
ClDepthwiseConvolutionWorkload.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
7 
8 #include <ResolveType.hpp>
9 #include "ClWorkloadUtils.hpp"
10 
11 #include <armnn/Exceptions.hpp>
14 #include <cl/ClTensorHandle.hpp>
18 
19 #include <arm_compute/runtime/CL/functions/CLDepthwiseConvolutionLayer.h>
20 
21 namespace armnn
22 {
23 
24 using namespace armcomputetensorutils;
25 
27  const TensorInfo& output,
28  const DepthwiseConvolution2dDescriptor& descriptor,
29  const TensorInfo& weights,
30  const Optional<TensorInfo>& biases,
31  const ActivationDescriptor* activationDescriptor)
32 {
33  const arm_compute::TensorInfo aclInputInfo = BuildArmComputeTensorInfo(input, descriptor.m_DataLayout);
34  const arm_compute::TensorInfo aclOutputInfo = BuildArmComputeTensorInfo(output, descriptor.m_DataLayout);
35 
36  // ArmNN's weight format is [ M, I, H, W ]
37  const unsigned int aclDepthMultiplier = weights.GetShape()[0];
38 
39  // Convert the weight format from ArmNN's [ M, I, H, W ] (does NOT depend on the data layout) to either
40  // [ 1, H, W, I * M ] (if NHWC) or [ 1, I * M, H, W ] (if NCHW), as required by the compute library
41  TensorInfo weightsPermuted = ConvertWeightTensorInfoFromArmnnToAcl(weights, descriptor.m_DataLayout);
42 
43  // Convert the weights into the compute library format
44  const arm_compute::TensorInfo aclWeightsInfo = BuildArmComputeTensorInfo(weightsPermuted, descriptor.m_DataLayout);
45 
46  arm_compute::TensorInfo aclBiasesInfo;
47  arm_compute::TensorInfo *optionalAclBiasesInfo = nullptr;
48 
49  if (descriptor.m_BiasEnabled)
50  {
51  ARMNN_ASSERT(biases.has_value());
52 
53  aclBiasesInfo = BuildArmComputeTensorInfo(biases.value(), descriptor.m_DataLayout);
54  optionalAclBiasesInfo = &aclBiasesInfo;
55  }
56 
57  const arm_compute::PadStrideInfo aclPadStrideInfo = BuildArmComputePadStrideInfo(descriptor);
58  const arm_compute::Size2D aclDilationInfo = BuildArmComputeSize2D(
59  descriptor.m_DilationX,
60  descriptor.m_DilationY);
61 
62  const arm_compute::ActivationLayerInfo activationInfo = ConvertActivationDescriptorToAclActivationLayerInfo(
63  activationDescriptor);
64 
65  return arm_compute::CLDepthwiseConvolutionLayer::validate(&aclInputInfo,
66  &aclWeightsInfo,
67  optionalAclBiasesInfo,
68  &aclOutputInfo,
69  aclPadStrideInfo,
70  aclDepthMultiplier,
71  activationInfo,
72  aclDilationInfo);
73 
74 }
75 
77  const DepthwiseConvolution2dQueueDescriptor& descriptor,
78  const WorkloadInfo& info,
79  const arm_compute::CLCompileContext& clCompileContext)
81 {
82  // Allocate a buffer for the swizzling of the weight tensor
83  std::unique_ptr<unsigned char[]> permuteBuffer(new unsigned char[m_Data.m_Weight->GetTensorInfo().GetNumBytes()]);
84 
85  // Convert the weight format from ArmNN's [ M, I, H, W ] (does NOT depend on the data layout) to either
86  // [ 1, H, W, I * M ] (if NHWC) or [ 1, I * M, H, W ] (if NCHW), as required by the compute library
89  permuteBuffer.get());
90 
91  // Convert the weights into the compute library format
92  m_KernelTensor = std::make_unique<arm_compute::CLTensor>();
93  BuildArmComputeTensor(*m_KernelTensor, weightPermuted.GetInfo(), m_Data.m_Parameters.m_DataLayout);
94 
96  {
97  m_BiasTensor = std::make_unique<arm_compute::CLTensor>();
99  }
100 
101  const arm_compute::Size2D aclDilationInfo = BuildArmComputeSize2D(
104 
105 
106  std::string name = std::string("ClDepthwiseConvolutionWorkload");
107  m_Data.ValidateInputsOutputs(name, 1, 1);
108 
109  arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
110  arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
111 
112  arm_compute::DataLayout aclDataLayout = ConvertDataLayout(m_Data.m_Parameters.m_DataLayout);
113  input.info()->set_data_layout(aclDataLayout);
114  output.info()->set_data_layout(aclDataLayout);
115 
116  // ArmNN's weight format is [ M, I, H, W ]
117  auto& weightInfo = m_Data.m_Weight->GetTensorInfo();
118 
119  // Get the depth multiplier
120  const unsigned int depthMultiplier = weightInfo.GetShape()[0];
121 
122  arm_compute::PadStrideInfo padStrideInfo = BuildArmComputePadStrideInfo(m_Data.m_Parameters);
123 
124  const arm_compute::ActivationLayerInfo activationInfo = ConvertAdditionalInfoToAclActivationLayerInfo(descriptor);
125 
126  m_DepthwiseConvolutionLayer = std::make_unique<arm_compute::CLDepthwiseConvolutionLayer>();
127  static_cast<arm_compute::CLDepthwiseConvolutionLayer*>(m_DepthwiseConvolutionLayer.get())->configure(
128  clCompileContext,
129  &input,
130  m_KernelTensor.get(),
131  m_BiasTensor.get(),
132  &output,
133  padStrideInfo,
134  depthMultiplier,
135  activationInfo,
136  aclDilationInfo);
137 
139 
140  ScopedCpuTensorHandle weightsPermutedHandle(weightPermuted);
141  InitializeArmComputeClTensorData(*m_KernelTensor, &weightsPermutedHandle);
142 
143  if (m_BiasTensor)
144  {
146  }
147 
148  m_DepthwiseConvolutionLayer->prepare();
150 }
151 
153 {
154  FreeTensorIfUnused(m_KernelTensor);
155  FreeTensorIfUnused(m_BiasTensor);
156 }
157 
159 {
160  ARMNN_SCOPED_PROFILING_EVENT_CL("ClDepthwiseConvolutionWorkload_Execute");
162 
164 }
165 
166 } // namespace armnn
bool m_BiasEnabled
Enable/disable bias.
DataLayout
Definition: Types.hpp:50
const TensorShape & GetShape() const
Definition: Tensor.hpp:187
armnn::ConstTensor ConvertWeightTensorFromArmnnToAcl(const ConstCpuTensorHandle *weightTensor, DataLayout dataLayout, void *permuteBuffer)
void InitializeArmComputeClTensorData(arm_compute::CLTensor &clTensor, const ConstCpuTensorHandle *handle)
TensorInfo ConvertWeightTensorInfoFromArmnnToAcl(const TensorInfo &weightInfo, DataLayout dataLayout)
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
#define ARMNN_SCOPED_PROFILING_EVENT_CL(name)
void RunClFunction(arm_compute::IFunction &function, const CheckLocation &location)
const DepthwiseConvolution2dQueueDescriptor m_Data
Definition: Workload.hpp:46
unsigned int GetNumBytes() const
Definition: Tensor.cpp:418
std::unique_ptr< arm_compute::IFunction > m_DepthwiseConvolutionLayer
arm_compute::ActivationLayerInfo ConvertAdditionalInfoToAclActivationLayerInfo(const QueueDescriptor &queueDescriptor)
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
std::unique_ptr< arm_compute::CLTensor > m_BiasTensor
Copyright (c) 2021 ARM Limited and Contributors.
uint32_t m_DilationY
Dilation factor value for height dimension.
uint32_t m_DilationX
Dilation factor value for width dimension.
bool has_value() const noexcept
Definition: Optional.hpp:53
A tensor defined by a TensorInfo (shape and data type) and an immutable backing store.
Definition: Tensor.hpp:314
Status
enumeration
Definition: Types.hpp:26
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
An ActivationDescriptor for the ActivationLayer.
Definition: Descriptors.hpp:25
#define CHECK_LOCATION()
Definition: Exceptions.hpp:197
std::unique_ptr< arm_compute::CLTensor > m_KernelTensor
std::vector< ITensorHandle * > m_Outputs
Contains information about inputs and outputs to a layer.
std::vector< ITensorHandle * > m_Inputs
arm_compute::Status ClDepthwiseConvolutionWorkloadValidate(const TensorInfo &input, const TensorInfo &output, const DepthwiseConvolution2dDescriptor &descriptor, const TensorInfo &weights, const Optional< TensorInfo > &biases, const ActivationDescriptor *activationDescriptor)
ClDepthwiseConvolutionWorkload(const DepthwiseConvolution2dQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
const TensorInfo & GetTensorInfo() const
A DepthwiseConvolution2dDescriptor for the DepthwiseConvolution2dLayer.
arm_compute::ActivationLayerInfo ConvertActivationDescriptorToAclActivationLayerInfo(const ActivationDescriptor &actDesc)