blob: 8b3b37010ef69e113cb8ca421d879e6843e9a93c [file] [log] [blame]
Moritz Pflanzerc7d15032017-07-18 16:21:16 +01001/*
Ioan-Cristian Szabo91d20d92017-10-27 17:35:40 +01002 * Copyright (c) 2017-2018 ARM Limited.
Moritz Pflanzerc7d15032017-07-18 16:21:16 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_TEST_SIMPLE_TENSOR_H__
25#define __ARM_COMPUTE_TEST_SIMPLE_TENSOR_H__
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/core/Utils.h"
30#include "support/ToolchainSupport.h"
31#include "tests/IAccessor.h"
32#include "tests/Utils.h"
33
34#include <algorithm>
35#include <array>
36#include <cstddef>
37#include <cstdint>
38#include <functional>
39#include <memory>
40#include <stdexcept>
41#include <utility>
42
43namespace arm_compute
44{
45namespace test
46{
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +010047class RawTensor;
48
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010049/** Simple tensor object that stores elements in a consecutive chunk of memory.
50 *
51 * It can be created by either loading an image from a file which also
52 * initialises the content of the tensor or by explcitly specifying the size.
53 * The latter leaves the content uninitialised.
54 *
55 * Furthermore, the class provides methods to convert the tensor's values into
56 * different image format.
57 */
58template <typename T>
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010059class SimpleTensor : public IAccessor
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010060{
61public:
62 /** Create an uninitialised tensor. */
63 SimpleTensor() = default;
64
65 /** Create an uninitialised tensor of the given @p shape and @p format.
66 *
67 * @param[in] shape Shape of the new raw tensor.
68 * @param[in] format Format of the new raw tensor.
69 * @param[in] fixed_point_position (Optional) Number of bits for the fractional part of the fixed point numbers
70 */
71 SimpleTensor(TensorShape shape, Format format, int fixed_point_position = 0);
72
73 /** Create an uninitialised tensor of the given @p shape and @p data type.
74 *
75 * @param[in] shape Shape of the new raw tensor.
76 * @param[in] data_type Data type of the new raw tensor.
77 * @param[in] num_channels (Optional) Number of channels (default = 1).
78 * @param[in] fixed_point_position (Optional) Number of bits for the fractional part of the fixed point numbers (default = 0).
Chunosovd621bca2017-11-03 17:33:15 +070079 * @param[in] quantization_info (Optional) Quantization info for asymmetric quantization (default = empty).
Michele Di Giorgio4a65b982018-03-02 11:21:38 +000080 * @param[in] data_layout (Optional) Data layout of the tensor (default = NCHW).
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010081 */
Chunosovd621bca2017-11-03 17:33:15 +070082 SimpleTensor(TensorShape shape, DataType data_type,
Michele Di Giorgio4a65b982018-03-02 11:21:38 +000083 int num_channels = 1,
84 int fixed_point_position = 0,
85 QuantizationInfo quantization_info = QuantizationInfo(),
86 DataLayout data_layout = DataLayout::NCHW);
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010087
88 /** Create a deep copy of the given @p tensor.
89 *
90 * @param[in] tensor To be copied tensor.
91 */
92 SimpleTensor(const SimpleTensor &tensor);
93
94 /** Create a deep copy of the given @p tensor.
95 *
96 * @param[in] tensor To be copied tensor.
Alex Gildayc357c472018-03-21 13:54:09 +000097 *
98 * @return a copy of the given tensor.
Moritz Pflanzerc7d15032017-07-18 16:21:16 +010099 */
Alex Gildayc357c472018-03-21 13:54:09 +0000100 SimpleTensor &operator=(SimpleTensor tensor);
101 /** Allow instances of this class to be move constructed */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100102 SimpleTensor(SimpleTensor &&) = default;
Alex Gildayc357c472018-03-21 13:54:09 +0000103 /** Default destructor. */
104 ~SimpleTensor() = default;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100105
Alex Gildayc357c472018-03-21 13:54:09 +0000106 /** Tensor value type */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100107 using value_type = T;
Alex Gildayc357c472018-03-21 13:54:09 +0000108 /** Tensor buffer pointer type */
109 using Buffer = std::unique_ptr<value_type[]>;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100110
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100111 friend class RawTensor;
112
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100113 /** Return value at @p offset in the buffer.
114 *
115 * @param[in] offset Offset within the buffer.
Alex Gildayc357c472018-03-21 13:54:09 +0000116 *
117 * @return value in the buffer.
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100118 */
119 T &operator[](size_t offset);
120
121 /** Return constant value at @p offset in the buffer.
122 *
123 * @param[in] offset Offset within the buffer.
Alex Gildayc357c472018-03-21 13:54:09 +0000124 *
125 * @return constant value in the buffer.
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100126 */
127 const T &operator[](size_t offset) const;
128
Alex Gildayc357c472018-03-21 13:54:09 +0000129 /** Shape of the tensor.
130 *
131 * @return the shape of the tensor.
132 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100133 TensorShape shape() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000134 /** Size of each element in the tensor in bytes.
135 *
136 * @return the size of each element in the tensor in bytes.
137 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100138 size_t element_size() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000139 /** Total size of the tensor in bytes.
140 *
141 * @return the total size of the tensor in bytes.
142 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100143 size_t size() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000144 /** Image format of the tensor.
145 *
146 * @return the format of the tensor.
147 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100148 Format format() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000149 /** Data layout of the tensor.
150 *
151 * @return the data layout of the tensor.
152 */
153 DataLayout data_layout() const override;
154 /** Data type of the tensor.
155 *
156 * @return the data type of the tensor.
157 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100158 DataType data_type() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000159 /** Number of channels of the tensor.
160 *
161 * @return the number of channels of the tensor.
162 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100163 int num_channels() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000164 /** Number of elements of the tensor.
165 *
166 * @return the number of elements of the tensor.
167 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100168 int num_elements() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000169 /** Available padding around the tensor.
170 *
171 * @return the available padding around the tensor.
172 */
Giorgio Arenaa2611812017-07-21 10:08:48 +0100173 PaddingSize padding() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000174 /** Number of bits for the fractional part.
175 *
176 * @return the number of bits for the fractional part.
177 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100178 int fixed_point_position() const override;
Alex Gildayc357c472018-03-21 13:54:09 +0000179 /** Quantization info in case of asymmetric quantized type
180 *
181 * @return
182 */
Chunosovd621bca2017-11-03 17:33:15 +0700183 QuantizationInfo quantization_info() const override;
184
Alex Gildayc357c472018-03-21 13:54:09 +0000185 /** Constant pointer to the underlying buffer.
186 *
187 * @return a constant pointer to the data.
188 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100189 const T *data() const;
190
Alex Gildayc357c472018-03-21 13:54:09 +0000191 /** Pointer to the underlying buffer.
192 *
193 * @return a pointer to the data.
194 */
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100195 T *data();
196
197 /** Read only access to the specified element.
198 *
199 * @param[in] coord Coordinates of the desired element.
200 *
201 * @return A pointer to the desired element.
202 */
203 const void *operator()(const Coordinates &coord) const override;
204
205 /** Access to the specified element.
206 *
207 * @param[in] coord Coordinates of the desired element.
208 *
209 * @return A pointer to the desired element.
210 */
211 void *operator()(const Coordinates &coord) override;
212
213 /** Swaps the content of the provided tensors.
214 *
215 * @param[in, out] tensor1 Tensor to be swapped.
216 * @param[in, out] tensor2 Tensor to be swapped.
217 */
218 template <typename U>
219 friend void swap(SimpleTensor<U> &tensor1, SimpleTensor<U> &tensor2);
220
Moritz Pflanzer82e70a12017-08-08 16:20:45 +0100221protected:
Chunosovd621bca2017-11-03 17:33:15 +0700222 Buffer _buffer{ nullptr };
223 TensorShape _shape{};
224 Format _format{ Format::UNKNOWN };
225 DataType _data_type{ DataType::UNKNOWN };
226 int _num_channels{ 0 };
227 int _fixed_point_position{ 0 };
228 QuantizationInfo _quantization_info{};
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000229 DataLayout _data_layout{ DataLayout::UNKNOWN };
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100230};
231
232template <typename T>
233SimpleTensor<T>::SimpleTensor(TensorShape shape, Format format, int fixed_point_position)
234 : _buffer(nullptr),
235 _shape(shape),
236 _format(format),
Chunosovd621bca2017-11-03 17:33:15 +0700237 _fixed_point_position(fixed_point_position),
Giorgio Arena563494c2018-04-30 17:29:41 +0100238 _quantization_info(),
239 _data_layout(DataLayout::NCHW)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100240{
John Richardson25f23682017-11-27 14:35:09 +0000241 _num_channels = num_channels();
242 _buffer = support::cpp14::make_unique<T[]>(num_elements() * _num_channels);
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100243}
244
245template <typename T>
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000246SimpleTensor<T>::SimpleTensor(TensorShape shape, DataType data_type, int num_channels, int fixed_point_position, QuantizationInfo quantization_info, DataLayout data_layout)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100247 : _buffer(nullptr),
248 _shape(shape),
249 _data_type(data_type),
250 _num_channels(num_channels),
Chunosovd621bca2017-11-03 17:33:15 +0700251 _fixed_point_position(fixed_point_position),
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000252 _quantization_info(quantization_info),
253 _data_layout(data_layout)
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100254{
255 _buffer = support::cpp14::make_unique<T[]>(num_elements() * this->num_channels());
256}
257
258template <typename T>
259SimpleTensor<T>::SimpleTensor(const SimpleTensor &tensor)
260 : _buffer(nullptr),
261 _shape(tensor.shape()),
262 _format(tensor.format()),
Moritz Pflanzer82e70a12017-08-08 16:20:45 +0100263 _data_type(tensor.data_type()),
264 _num_channels(tensor.num_channels()),
Chunosovd621bca2017-11-03 17:33:15 +0700265 _fixed_point_position(tensor.fixed_point_position()),
Giorgio Arena563494c2018-04-30 17:29:41 +0100266 _quantization_info(tensor.quantization_info()),
267 _data_layout(tensor.data_layout())
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100268{
269 _buffer = support::cpp14::make_unique<T[]>(tensor.num_elements() * num_channels());
270 std::copy_n(tensor.data(), num_elements() * num_channels(), _buffer.get());
271}
272
273template <typename T>
274SimpleTensor<T> &SimpleTensor<T>::operator=(SimpleTensor tensor)
275{
276 swap(*this, tensor);
277
278 return *this;
279}
280
281template <typename T>
282T &SimpleTensor<T>::operator[](size_t offset)
283{
284 return _buffer[offset];
285}
286
287template <typename T>
288const T &SimpleTensor<T>::operator[](size_t offset) const
289{
290 return _buffer[offset];
291}
292
293template <typename T>
294TensorShape SimpleTensor<T>::shape() const
295{
296 return _shape;
297}
298
299template <typename T>
300size_t SimpleTensor<T>::element_size() const
301{
302 return num_channels() * element_size_from_data_type(data_type());
303}
304
305template <typename T>
306int SimpleTensor<T>::fixed_point_position() const
307{
308 return _fixed_point_position;
309}
310
311template <typename T>
Chunosovd621bca2017-11-03 17:33:15 +0700312QuantizationInfo SimpleTensor<T>::quantization_info() const
313{
314 return _quantization_info;
315}
316
317template <typename T>
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100318size_t SimpleTensor<T>::size() const
319{
320 const size_t size = std::accumulate(_shape.cbegin(), _shape.cend(), 1, std::multiplies<size_t>());
321 return size * element_size();
322}
323
324template <typename T>
325Format SimpleTensor<T>::format() const
326{
327 return _format;
328}
329
330template <typename T>
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000331DataLayout SimpleTensor<T>::data_layout() const
332{
333 return _data_layout;
334}
335
336template <typename T>
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100337DataType SimpleTensor<T>::data_type() const
338{
339 if(_format != Format::UNKNOWN)
340 {
341 return data_type_from_format(_format);
342 }
343 else
344 {
345 return _data_type;
346 }
347}
348
349template <typename T>
350int SimpleTensor<T>::num_channels() const
351{
352 switch(_format)
353 {
354 case Format::U8:
Anthony Barbier1fbb8122018-02-19 19:36:02 +0000355 case Format::U16:
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100356 case Format::S16:
Anthony Barbier1fbb8122018-02-19 19:36:02 +0000357 case Format::U32:
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100358 case Format::S32:
359 case Format::F16:
Moritz Pflanzer82e70a12017-08-08 16:20:45 +0100360 case Format::F32:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100361 return 1;
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100362 // Because the U and V channels are subsampled
363 // these formats appear like having only 2 channels:
364 case Format::YUYV422:
365 case Format::UYVY422:
366 return 2;
367 case Format::UV88:
368 return 2;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100369 case Format::RGB888:
370 return 3;
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100371 case Format::RGBA8888:
372 return 4;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100373 case Format::UNKNOWN:
374 return _num_channels;
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100375 //Doesn't make sense for planar formats:
376 case Format::NV12:
377 case Format::NV21:
378 case Format::IYUV:
379 case Format::YUV444:
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100380 default:
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100381 return 0;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100382 }
383}
384
385template <typename T>
386int SimpleTensor<T>::num_elements() const
387{
388 return _shape.total_size();
389}
390
391template <typename T>
Giorgio Arenaa2611812017-07-21 10:08:48 +0100392PaddingSize SimpleTensor<T>::padding() const
393{
394 return PaddingSize(0);
395}
396
397template <typename T>
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100398const T *SimpleTensor<T>::data() const
399{
400 return _buffer.get();
401}
402
403template <typename T>
404T *SimpleTensor<T>::data()
405{
406 return _buffer.get();
407}
408
409template <typename T>
410const void *SimpleTensor<T>::operator()(const Coordinates &coord) const
411{
John Richardson25f23682017-11-27 14:35:09 +0000412 return _buffer.get() + coord2index(_shape, coord) * _num_channels;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100413}
414
415template <typename T>
416void *SimpleTensor<T>::operator()(const Coordinates &coord)
417{
John Richardson25f23682017-11-27 14:35:09 +0000418 return _buffer.get() + coord2index(_shape, coord) * _num_channels;
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100419}
420
421template <typename U>
422void swap(SimpleTensor<U> &tensor1, SimpleTensor<U> &tensor2)
423{
424 // Use unqualified call to swap to enable ADL. But make std::swap available
425 // as backup.
426 using std::swap;
427 swap(tensor1._shape, tensor2._shape);
428 swap(tensor1._format, tensor2._format);
429 swap(tensor1._data_type, tensor2._data_type);
430 swap(tensor1._num_channels, tensor2._num_channels);
Giorgio Arenac0f54432018-03-16 14:02:34 +0000431 swap(tensor1._fixed_point_position, tensor2._fixed_point_position);
432 swap(tensor1._quantization_info, tensor2._quantization_info);
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100433 swap(tensor1._buffer, tensor2._buffer);
434}
435} // namespace test
436} // namespace arm_compute
437#endif /* __ARM_COMPUTE_TEST_SIMPLE_TENSOR_H__ */