blob: 9b236e1eed635493edd7949342fb8b61a4c01cf9 [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//
5#pragma once
6
7#include <armnn/Tensor.hpp>
8#include <armnn/DescriptorsFwd.hpp>
9
10#include <arm_compute/core/ITensor.h>
11#include <arm_compute/core/TensorInfo.h>
surmeh013537c2c2018-05-18 16:31:43 +010012#include <arm_compute/core/Types.h>
Sadik Armaganf4464322018-12-20 16:19:12 +000013#include <arm_compute/core/Size2D.h>
telsoa014fcda012018-03-09 14:13:49 +000014
Mike Kelly0a08ec62019-07-25 08:39:31 +010015#include <Half.hpp>
16
telsoa014fcda012018-03-09 14:13:49 +000017#include <boost/cast.hpp>
18
19namespace armnn
20{
21class ITensorHandle;
22
23namespace armcomputetensorutils
24{
25
telsoa01c577f2c2018-08-31 09:22:23 +010026/// Utility function to map an armnn::DataType to corresponding arm_compute::DataType.
Derek Lambertid466a542020-01-22 15:37:29 +000027arm_compute::DataType GetArmComputeDataType(armnn::DataType dataType, bool multiScales);
telsoa014fcda012018-03-09 14:13:49 +000028
Matthew Benthamfd899962018-12-31 15:49:42 +000029/// Utility function used to set up an arm_compute::Coordinates from a vector of ArmNN Axes for reduction functions
30arm_compute::Coordinates BuildArmComputeReductionCoordinates(size_t inputDimensions,
31 unsigned int originalInputRank,
32 const std::vector<unsigned int>& armnnAxes);
33
telsoa01c577f2c2018-08-31 09:22:23 +010034/// Utility function used to setup an arm_compute::TensorShape object from an armnn::TensorShape.
telsoa014fcda012018-03-09 14:13:49 +000035arm_compute::TensorShape BuildArmComputeTensorShape(const armnn::TensorShape& tensorShape);
36
37/// Utility function used to setup an arm_compute::ITensorInfo object whose dimensions are based on the given
telsoa01c577f2c2018-08-31 09:22:23 +010038/// armnn::ITensorInfo.
telsoa014fcda012018-03-09 14:13:49 +000039arm_compute::TensorInfo BuildArmComputeTensorInfo(const armnn::TensorInfo& tensorInfo);
40
Francis Murtagh351d13d2018-09-24 15:01:18 +010041/// Utility function used to setup an arm_compute::ITensorInfo object whose dimensions are based on the given
42/// armnn::ITensorInfo.
43/// armnn::DataLayout.
44arm_compute::TensorInfo BuildArmComputeTensorInfo(const armnn::TensorInfo& tensorInfo,
45 armnn::DataLayout dataLayout);
46
Matteo Martincigh747ef822018-12-18 09:26:39 +000047/// Utility function used to convert armnn::DataLayout to arm_compute::DataLayout
48/// armnn::DataLayout.
49arm_compute::DataLayout ConvertDataLayout(armnn::DataLayout dataLayout);
50
Sadik Armagana3600ba2019-10-10 10:43:20 +010051/// Utility function used to setup an arm_compute::PoolingLayerInfo object from given
52/// armnn::Pooling2dDescriptor
53/// bool fpMixedPrecision
54arm_compute::PoolingLayerInfo BuildArmComputePoolingLayerInfo(const Pooling2dDescriptor& descriptor,
55 bool fpMixedPrecision = false);
telsoa014fcda012018-03-09 14:13:49 +000056
telsoa01c577f2c2018-08-31 09:22:23 +010057/// Utility function to setup an arm_compute::NormalizationLayerInfo object from an armnn::NormalizationDescriptor.
telsoa014fcda012018-03-09 14:13:49 +000058arm_compute::NormalizationLayerInfo BuildArmComputeNormalizationLayerInfo(const NormalizationDescriptor& desc);
59
telsoa01c577f2c2018-08-31 09:22:23 +010060/// Utility function used to setup an arm_compute::PermutationVector object from an armnn::PermutationVector.
telsoa014fcda012018-03-09 14:13:49 +000061arm_compute::PermutationVector BuildArmComputePermutationVector(const armnn::PermutationVector& vector);
62
Mike Kellyc9ea45a2020-02-28 18:11:58 +000063/// Utility function used to setup an arm_compute::PermutationVector object from an armnn::PermutationVector.
64arm_compute::PermutationVector BuildArmComputeTransposeVector(const armnn::PermutationVector& vector);
65
Sadik Armaganf4464322018-12-20 16:19:12 +000066/// Utility function used to setup an arm_compute::Size2D object from width and height values.
67arm_compute::Size2D BuildArmComputeSize2D(const unsigned int width, const unsigned int height);
68
Mike Kelly0a08ec62019-07-25 08:39:31 +010069/// Gets the appropriate PixelValue for the input DataType
70arm_compute::PixelValue GetPixelValue(arm_compute::ITensor& input, float pixelValue);
71
telsoa01c577f2c2018-08-31 09:22:23 +010072/// Utility function used to setup an arm_compute::PadStrideInfo object from an armnn layer descriptor.
surmeh013537c2c2018-05-18 16:31:43 +010073template <typename Descriptor>
74arm_compute::PadStrideInfo BuildArmComputePadStrideInfo(const Descriptor &descriptor)
75{
76 return arm_compute::PadStrideInfo(descriptor.m_StrideX,
77 descriptor.m_StrideY,
78 descriptor.m_PadLeft,
79 descriptor.m_PadRight,
80 descriptor.m_PadTop,
81 descriptor.m_PadBottom,
82 arm_compute::DimensionRoundingType::FLOOR);
83}
84
telsoa014fcda012018-03-09 14:13:49 +000085/// Sets up the given ArmCompute tensor's dimensions based on the given ArmNN tensor.
86template <typename Tensor>
87void BuildArmComputeTensor(Tensor& tensor, const armnn::TensorInfo& tensorInfo)
88{
89 tensor.allocator()->init(BuildArmComputeTensorInfo(tensorInfo));
90}
91
Francis Murtagh351d13d2018-09-24 15:01:18 +010092/// Sets up the given ArmCompute tensor's dimensions based on the given ArmNN tensor.
93template <typename Tensor>
94void BuildArmComputeTensor(Tensor& tensor, const armnn::TensorInfo& tensorInfo, DataLayout dataLayout)
95{
96 tensor.allocator()->init(BuildArmComputeTensorInfo(tensorInfo, dataLayout));
97}
98
telsoa014fcda012018-03-09 14:13:49 +000099template <typename Tensor>
100void InitialiseArmComputeTensorEmpty(Tensor& tensor)
101{
102 tensor.allocator()->allocate();
103}
104
telsoa01c577f2c2018-08-31 09:22:23 +0100105/// Utility function to free unused tensors after a workload is configured and prepared
106template <typename Tensor>
107void FreeTensorIfUnused(std::unique_ptr<Tensor>& tensor)
108{
109 if (tensor && !tensor->is_used())
110 {
111 tensor.reset(nullptr);
112 }
113}
114
telsoa014fcda012018-03-09 14:13:49 +0000115// Helper function to obtain byte offset into tensor data
116inline size_t GetTensorOffset(const arm_compute::ITensorInfo& info,
Matthew Jacksondba634f2019-08-15 15:14:18 +0100117 uint32_t depthIndex,
telsoa014fcda012018-03-09 14:13:49 +0000118 uint32_t batchIndex,
119 uint32_t channelIndex,
120 uint32_t y,
121 uint32_t x)
122{
123 arm_compute::Coordinates coords;
Matthew Jacksondba634f2019-08-15 15:14:18 +0100124 coords.set(4, static_cast<int>(depthIndex));
telsoa01c577f2c2018-08-31 09:22:23 +0100125 coords.set(3, static_cast<int>(batchIndex));
126 coords.set(2, static_cast<int>(channelIndex));
127 coords.set(1, static_cast<int>(y));
128 coords.set(0, static_cast<int>(x));
Jammy Zhoud80cc0c2019-10-21 16:44:40 +0800129 return boost::numeric_cast<size_t>(info.offset_element_in_bytes(coords));
telsoa014fcda012018-03-09 14:13:49 +0000130}
131
telsoa01c577f2c2018-08-31 09:22:23 +0100132// Helper function to obtain element offset into data buffer representing tensor data (assuming no strides).
telsoa014fcda012018-03-09 14:13:49 +0000133inline size_t GetLinearBufferOffset(const arm_compute::ITensorInfo& info,
Matthew Jacksondba634f2019-08-15 15:14:18 +0100134 uint32_t depthIndex,
telsoa014fcda012018-03-09 14:13:49 +0000135 uint32_t batchIndex,
136 uint32_t channelIndex,
137 uint32_t y,
138 uint32_t x)
139{
140 const arm_compute::TensorShape& shape = info.tensor_shape();
telsoa01c577f2c2018-08-31 09:22:23 +0100141 uint32_t width = static_cast<uint32_t>(shape[0]);
142 uint32_t height = static_cast<uint32_t>(shape[1]);
143 uint32_t numChannels = static_cast<uint32_t>(shape[2]);
Matthew Jacksondba634f2019-08-15 15:14:18 +0100144 uint32_t numBatches = static_cast<uint32_t>(shape[3]);
145 return (((depthIndex * numBatches + batchIndex) * numChannels + channelIndex) * height + y) * width + x;
telsoa014fcda012018-03-09 14:13:49 +0000146}
147
148template <typename T>
149void CopyArmComputeITensorData(const arm_compute::ITensor& srcTensor, T* dstData)
150{
telsoa01c577f2c2018-08-31 09:22:23 +0100151 // If MaxNumOfTensorDimensions is increased, this loop will need fixing.
Matthew Jacksondba634f2019-08-15 15:14:18 +0100152 static_assert(MaxNumOfTensorDimensions == 5, "Please update CopyArmComputeITensorData");
telsoa014fcda012018-03-09 14:13:49 +0000153 {
154 const arm_compute::ITensorInfo& info = *srcTensor.info();
155 const arm_compute::TensorShape& shape = info.tensor_shape();
156 const uint8_t* const bufferPtr = srcTensor.buffer();
telsoa01c577f2c2018-08-31 09:22:23 +0100157 uint32_t width = static_cast<uint32_t>(shape[0]);
158 uint32_t height = static_cast<uint32_t>(shape[1]);
159 uint32_t numChannels = static_cast<uint32_t>(shape[2]);
160 uint32_t numBatches = static_cast<uint32_t>(shape[3]);
Matthew Jacksondba634f2019-08-15 15:14:18 +0100161 uint32_t depth = static_cast<uint32_t>(shape[4]);
telsoa014fcda012018-03-09 14:13:49 +0000162
Matthew Jacksondba634f2019-08-15 15:14:18 +0100163 for (unsigned int depthIndex = 0; depthIndex < depth; ++depthIndex)
telsoa014fcda012018-03-09 14:13:49 +0000164 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100165 for (unsigned int batchIndex = 0; batchIndex < numBatches; ++batchIndex)
telsoa014fcda012018-03-09 14:13:49 +0000166 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100167 for (unsigned int channelIndex = 0; channelIndex < numChannels; ++channelIndex)
telsoa014fcda012018-03-09 14:13:49 +0000168 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100169 for (unsigned int y = 0; y < height; ++y)
170 {
171 // Copies one row from arm_compute tensor buffer to linear memory buffer.
172 // A row is the largest contiguous region we can copy, as the tensor data may be using strides.
173 memcpy(
174 dstData + GetLinearBufferOffset(info, depthIndex, batchIndex, channelIndex, y, 0),
175 bufferPtr + GetTensorOffset(info, depthIndex, batchIndex, channelIndex, y, 0),
176 width * sizeof(T));
177 }
telsoa014fcda012018-03-09 14:13:49 +0000178 }
179 }
180 }
181 }
182}
183
184template <typename T>
185void CopyArmComputeITensorData(const T* srcData, arm_compute::ITensor& dstTensor)
186{
telsoa01c577f2c2018-08-31 09:22:23 +0100187 // If MaxNumOfTensorDimensions is increased, this loop will need fixing.
Matthew Jacksondba634f2019-08-15 15:14:18 +0100188 static_assert(MaxNumOfTensorDimensions == 5, "Please update CopyArmComputeITensorData");
telsoa014fcda012018-03-09 14:13:49 +0000189 {
190 const arm_compute::ITensorInfo& info = *dstTensor.info();
191 const arm_compute::TensorShape& shape = info.tensor_shape();
192 uint8_t* const bufferPtr = dstTensor.buffer();
telsoa01c577f2c2018-08-31 09:22:23 +0100193 uint32_t width = static_cast<uint32_t>(shape[0]);
194 uint32_t height = static_cast<uint32_t>(shape[1]);
195 uint32_t numChannels = static_cast<uint32_t>(shape[2]);
196 uint32_t numBatches = static_cast<uint32_t>(shape[3]);
Matthew Jacksondba634f2019-08-15 15:14:18 +0100197 uint32_t depth = static_cast<uint32_t>(shape[4]);
telsoa014fcda012018-03-09 14:13:49 +0000198
Matthew Jacksondba634f2019-08-15 15:14:18 +0100199 for (unsigned int depthIndex = 0; depthIndex < depth; ++depthIndex)
telsoa014fcda012018-03-09 14:13:49 +0000200 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100201 for (unsigned int batchIndex = 0; batchIndex < numBatches; ++batchIndex)
telsoa014fcda012018-03-09 14:13:49 +0000202 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100203 for (unsigned int channelIndex = 0; channelIndex < numChannels; ++channelIndex)
telsoa014fcda012018-03-09 14:13:49 +0000204 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100205 for (unsigned int y = 0; y < height; ++y)
206 {
207 // Copies one row from linear memory buffer to arm_compute tensor buffer.
208 // A row is the largest contiguous region we can copy, as the tensor data may be using strides.
209 memcpy(
210 bufferPtr + GetTensorOffset(info, depthIndex, batchIndex, channelIndex, y, 0),
211 srcData + GetLinearBufferOffset(info, depthIndex, batchIndex, channelIndex, y, 0),
212 width * sizeof(T));
213 }
telsoa014fcda012018-03-09 14:13:49 +0000214 }
215 }
216 }
217 }
218}
219
telsoa01c577f2c2018-08-31 09:22:23 +0100220/// Construct a TensorShape object from an ArmCompute object based on arm_compute::Dimensions.
221/// \tparam ArmComputeType Any type that implements the Dimensions interface
222/// \tparam T Shape value type
223/// \param shapelike An ArmCompute object that implements the Dimensions interface
224/// \param initial A default value to initialise the shape with
225/// \return A TensorShape object filled from the Acl shapelike object.
226template<typename ArmComputeType, typename T>
227TensorShape GetTensorShape(const ArmComputeType& shapelike, T initial)
228{
229 std::vector<unsigned int> s(MaxNumOfTensorDimensions, initial);
230 for (unsigned int i=0; i < shapelike.num_dimensions(); ++i)
231 {
232 s[(shapelike.num_dimensions()-1)-i] = boost::numeric_cast<unsigned int>(shapelike[i]);
233 }
234 return TensorShape(boost::numeric_cast<unsigned int>(shapelike.num_dimensions()), s.data());
235};
236
237/// Get the strides from an ACL strides object
238inline TensorShape GetStrides(const arm_compute::Strides& strides)
239{
240 return GetTensorShape(strides, 0U);
241}
242
243/// Get the shape from an ACL shape object
244inline TensorShape GetShape(const arm_compute::TensorShape& shape)
245{
246 return GetTensorShape(shape, 1U);
247}
248
telsoa014fcda012018-03-09 14:13:49 +0000249} // namespace armcomputetensorutils
250} // namespace armnn