blob: b4c23e849a4b3b417a0a706ae26c83a6e78e78d7 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Manuel Bottini053e7512018-12-28 15:05:20 +00002 * Copyright (c) 2016-2019 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 __UTILS_UTILS_H__
25#define __UTILS_UTILS_H__
26
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Validate.h"
steniu01bee466b2017-06-21 16:45:41 +010031#include "arm_compute/core/Window.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include "arm_compute/runtime/Tensor.h"
Giorgio Arenacf3935f2017-10-26 17:14:13 +010033#include "libnpy/npy.hpp"
Anthony Barbier2a07e182017-08-04 18:20:27 +010034#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035
36#ifdef ARM_COMPUTE_CL
37#include "arm_compute/core/CL/OpenCL.h"
Isabella Gottardi02aabcc2017-10-12 17:28:51 +010038#include "arm_compute/runtime/CL/CLDistribution1D.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039#include "arm_compute/runtime/CL/CLTensor.h"
40#endif /* ARM_COMPUTE_CL */
Anthony Barbier7068f992017-10-26 15:23:08 +010041#ifdef ARM_COMPUTE_GC
42#include "arm_compute/runtime/GLES_COMPUTE/GCTensor.h"
43#endif /* ARM_COMPUTE_GC */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044
45#include <cstdlib>
46#include <cstring>
47#include <fstream>
48#include <iostream>
Giorgio Arenacf3935f2017-10-26 17:14:13 +010049#include <random>
50#include <string>
51#include <tuple>
52#include <vector>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053
54namespace arm_compute
55{
56namespace utils
57{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010058/** Supported image types */
59enum class ImageType
60{
61 UNKNOWN,
62 PPM,
63 JPEG
64};
65
Anthony Barbier6db0ff52018-01-05 10:59:12 +000066/** Abstract Example class.
67 *
68 * All examples have to inherit from this class.
69 */
70class Example
71{
72public:
Alex Gildayc357c472018-03-21 13:54:09 +000073 /** Setup the example.
74 *
75 * @param[in] argc Argument count.
76 * @param[in] argv Argument values.
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010077 *
78 * @return True in case of no errors in setup else false
Alex Gildayc357c472018-03-21 13:54:09 +000079 */
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010080 virtual bool do_setup(int argc, char **argv)
81 {
82 return true;
83 };
Alex Gildayc357c472018-03-21 13:54:09 +000084 /** Run the example. */
Anthony Barbier6db0ff52018-01-05 10:59:12 +000085 virtual void do_run() {};
Alex Gildayc357c472018-03-21 13:54:09 +000086 /** Teardown the example. */
Anthony Barbier6db0ff52018-01-05 10:59:12 +000087 virtual void do_teardown() {};
88
89 /** Default destructor. */
90 virtual ~Example() = default;
91};
92
93/** Run an example and handle the potential exceptions it throws
94 *
95 * @param[in] argc Number of command line arguments
96 * @param[in] argv Command line arguments
97 * @param[in] example Example to run
98 */
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010099int run_example(int argc, char **argv, std::unique_ptr<Example> example);
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000100
101template <typename T>
102int run_example(int argc, char **argv)
103{
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100104 return run_example(argc, argv, support::cpp14::make_unique<T>());
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000105}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106
107/** Draw a RGB rectangular window for the detected object
108 *
109 * @param[in, out] tensor Input tensor where the rectangle will be drawn on. Format supported: RGB888
110 * @param[in] rect Geometry of the rectangular window
111 * @param[in] r Red colour to use
112 * @param[in] g Green colour to use
113 * @param[in] b Blue colour to use
114 */
115void draw_detection_rectangle(arm_compute::ITensor *tensor, const arm_compute::DetectionWindow &rect, uint8_t r, uint8_t g, uint8_t b);
116
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100117/** Gets image type given a file
118 *
119 * @param[in] filename File to identify its image type
120 *
121 * @return Image type
122 */
123ImageType get_image_type_from_file(const std::string &filename);
124
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125/** Parse the ppm header from an input file stream. At the end of the execution,
126 * the file position pointer will be located at the first pixel stored in the ppm file
127 *
128 * @param[in] fs Input file stream to parse
129 *
130 * @return The width, height and max value stored in the header of the PPM file
131 */
132std::tuple<unsigned int, unsigned int, int> parse_ppm_header(std::ifstream &fs);
133
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100134/** Parse the npy header from an input file stream. At the end of the execution,
135 * the file position pointer will be located at the first pixel stored in the npy file //TODO
136 *
137 * @param[in] fs Input file stream to parse
138 *
139 * @return The width and height stored in the header of the NPY file
140 */
141std::tuple<std::vector<unsigned long>, bool, std::string> parse_npy_header(std::ifstream &fs);
142
143/** Obtain numpy type string from DataType.
144 *
145 * @param[in] data_type Data type.
146 *
147 * @return numpy type string.
148 */
149inline std::string get_typestring(DataType data_type)
150{
151 // Check endianness
152 const unsigned int i = 1;
153 const char *c = reinterpret_cast<const char *>(&i);
154 std::string endianness;
155 if(*c == 1)
156 {
157 endianness = std::string("<");
158 }
159 else
160 {
161 endianness = std::string(">");
162 }
163 const std::string no_endianness("|");
164
165 switch(data_type)
166 {
167 case DataType::U8:
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000168 case DataType::QASYMM8:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100169 return no_endianness + "u" + support::cpp11::to_string(sizeof(uint8_t));
170 case DataType::S8:
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100171 case DataType::QSYMM8:
172 case DataType::QSYMM8_PER_CHANNEL:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100173 return no_endianness + "i" + support::cpp11::to_string(sizeof(int8_t));
174 case DataType::U16:
175 return endianness + "u" + support::cpp11::to_string(sizeof(uint16_t));
176 case DataType::S16:
177 return endianness + "i" + support::cpp11::to_string(sizeof(int16_t));
178 case DataType::U32:
179 return endianness + "u" + support::cpp11::to_string(sizeof(uint32_t));
180 case DataType::S32:
181 return endianness + "i" + support::cpp11::to_string(sizeof(int32_t));
182 case DataType::U64:
183 return endianness + "u" + support::cpp11::to_string(sizeof(uint64_t));
184 case DataType::S64:
185 return endianness + "i" + support::cpp11::to_string(sizeof(int64_t));
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000186 case DataType::F16:
187 return endianness + "f" + support::cpp11::to_string(sizeof(half));
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100188 case DataType::F32:
189 return endianness + "f" + support::cpp11::to_string(sizeof(float));
190 case DataType::F64:
191 return endianness + "f" + support::cpp11::to_string(sizeof(double));
192 case DataType::SIZET:
193 return endianness + "u" + support::cpp11::to_string(sizeof(size_t));
194 default:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100195 ARM_COMPUTE_ERROR("Data type not supported");
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100196 }
197}
198
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100199/** Maps a tensor if needed
200 *
201 * @param[in] tensor Tensor to be mapped
202 * @param[in] blocking Specified if map is blocking or not
203 */
204template <typename T>
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100205inline void map(T &tensor, bool blocking)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100206{
207 ARM_COMPUTE_UNUSED(tensor);
208 ARM_COMPUTE_UNUSED(blocking);
209}
210
211/** Unmaps a tensor if needed
212 *
213 * @param tensor Tensor to be unmapped
214 */
215template <typename T>
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100216inline void unmap(T &tensor)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100217{
218 ARM_COMPUTE_UNUSED(tensor);
219}
220
221#ifdef ARM_COMPUTE_CL
222/** Maps a tensor if needed
223 *
224 * @param[in] tensor Tensor to be mapped
225 * @param[in] blocking Specified if map is blocking or not
226 */
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100227inline void map(CLTensor &tensor, bool blocking)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100228{
229 tensor.map(blocking);
230}
231
232/** Unmaps a tensor if needed
233 *
234 * @param tensor Tensor to be unmapped
235 */
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100236inline void unmap(CLTensor &tensor)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100237{
238 tensor.unmap();
239}
Isabella Gottardi02aabcc2017-10-12 17:28:51 +0100240
241/** Maps a distribution if needed
242 *
243 * @param[in] distribution Distribution to be mapped
244 * @param[in] blocking Specified if map is blocking or not
245 */
246inline void map(CLDistribution1D &distribution, bool blocking)
247{
248 distribution.map(blocking);
249}
250
251/** Unmaps a distribution if needed
252 *
253 * @param distribution Distribution to be unmapped
254 */
255inline void unmap(CLDistribution1D &distribution)
256{
257 distribution.unmap();
258}
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100259#endif /* ARM_COMPUTE_CL */
260
Anthony Barbier7068f992017-10-26 15:23:08 +0100261#ifdef ARM_COMPUTE_GC
262/** Maps a tensor if needed
263 *
264 * @param[in] tensor Tensor to be mapped
265 * @param[in] blocking Specified if map is blocking or not
266 */
267inline void map(GCTensor &tensor, bool blocking)
268{
269 tensor.map(blocking);
270}
271
272/** Unmaps a tensor if needed
273 *
274 * @param tensor Tensor to be unmapped
275 */
276inline void unmap(GCTensor &tensor)
277{
278 tensor.unmap();
279}
280#endif /* ARM_COMPUTE_GC */
281
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000282/** Specialized class to generate random non-zero FP16 values.
283 * uniform_real_distribution<half> generates values that get rounded off to zero, causing
284 * differences between ACL and reference implementation
285*/
286class uniform_real_distribution_fp16
287{
288 half min{ 0.0f }, max{ 0.0f };
289 std::uniform_real_distribution<float> neg{ min, -0.3f };
290 std::uniform_real_distribution<float> pos{ 0.3f, max };
291 std::uniform_int_distribution<uint8_t> sign_picker{ 0, 1 };
292
293public:
294 using result_type = half;
295 /** Constructor
296 *
297 * @param[in] a Minimum value of the distribution
298 * @param[in] b Maximum value of the distribution
299 */
300 explicit uniform_real_distribution_fp16(half a = half(0.0), half b = half(1.0))
301 : min(a), max(b)
302 {
303 }
304
305 /** () operator to generate next value
306 *
307 * @param[in] gen an uniform random bit generator object
308 */
309 half operator()(std::mt19937 &gen)
310 {
311 if(sign_picker(gen))
312 {
313 return (half)neg(gen);
314 }
315 return (half)pos(gen);
316 }
317};
318
Alex Gildayc357c472018-03-21 13:54:09 +0000319/** Numpy data loader */
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100320class NPYLoader
321{
322public:
Alex Gildayc357c472018-03-21 13:54:09 +0000323 /** Default constructor */
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100324 NPYLoader()
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100325 : _fs(), _shape(), _fortran_order(false), _typestring(), _file_layout(DataLayout::NCHW)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100326 {
327 }
328
329 /** Open a NPY file and reads its metadata
330 *
331 * @param[in] npy_filename File to open
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100332 * @param[in] file_layout (Optional) Layout in which the weights are stored in the file.
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100333 */
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100334 void open(const std::string &npy_filename, DataLayout file_layout = DataLayout::NCHW)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100335 {
336 ARM_COMPUTE_ERROR_ON(is_open());
337 try
338 {
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100339 _fs.open(npy_filename, std::ios::in | std::ios::binary);
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100340 ARM_COMPUTE_EXIT_ON_MSG(!_fs.good(), "Failed to load binary data from %s", npy_filename.c_str());
341 _fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
342 _file_layout = file_layout;
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100343
344 std::tie(_shape, _fortran_order, _typestring) = parse_npy_header(_fs);
345 }
346 catch(const std::ifstream::failure &e)
347 {
348 ARM_COMPUTE_ERROR("Accessing %s: %s", npy_filename.c_str(), e.what());
349 }
350 }
351 /** Return true if a NPY file is currently open */
352 bool is_open()
353 {
354 return _fs.is_open();
355 }
356
357 /** Return true if a NPY file is in fortran order */
358 bool is_fortran()
359 {
360 return _fortran_order;
361 }
362
Gian Marco0bc5a252017-12-04 13:55:08 +0000363 /** Initialise the tensor's metadata with the dimensions of the NPY file currently open
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100364 *
365 * @param[out] tensor Tensor to initialise
Gian Marco0bc5a252017-12-04 13:55:08 +0000366 * @param[in] dt Data type to use for the tensor
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100367 */
368 template <typename T>
Gian Marco0bc5a252017-12-04 13:55:08 +0000369 void init_tensor(T &tensor, arm_compute::DataType dt)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100370 {
371 ARM_COMPUTE_ERROR_ON(!is_open());
Gian Marco0bc5a252017-12-04 13:55:08 +0000372 ARM_COMPUTE_ERROR_ON(dt != arm_compute::DataType::F32);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100373
374 // Use the size of the input NPY tensor
375 TensorShape shape;
376 shape.set_num_dimensions(_shape.size());
377 for(size_t i = 0; i < _shape.size(); ++i)
378 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100379 size_t src = i;
380 if(_fortran_order)
381 {
382 src = _shape.size() - 1 - i;
383 }
384 shape.set(i, _shape.at(src));
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100385 }
386
Gian Marco0bc5a252017-12-04 13:55:08 +0000387 arm_compute::TensorInfo tensor_info(shape, 1, dt);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100388 tensor.allocator()->init(tensor_info);
389 }
390
391 /** Fill a tensor with the content of the currently open NPY file.
392 *
393 * @note If the tensor is a CLTensor, the function maps and unmaps the tensor
394 *
395 * @param[in,out] tensor Tensor to fill (Must be allocated, and of matching dimensions with the opened NPY).
396 */
397 template <typename T>
398 void fill_tensor(T &tensor)
399 {
400 ARM_COMPUTE_ERROR_ON(!is_open());
Georgios Pinitasa799ce02018-09-12 20:11:34 +0100401 ARM_COMPUTE_ERROR_ON_DATA_TYPE_NOT_IN(&tensor, arm_compute::DataType::QASYMM8, arm_compute::DataType::S32, arm_compute::DataType::F32);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100402 try
403 {
404 // Map buffer if creating a CLTensor
405 map(tensor, true);
406
407 // Check if the file is large enough to fill the tensor
408 const size_t current_position = _fs.tellg();
409 _fs.seekg(0, std::ios_base::end);
410 const size_t end_position = _fs.tellg();
411 _fs.seekg(current_position, std::ios_base::beg);
412
413 ARM_COMPUTE_ERROR_ON_MSG((end_position - current_position) < tensor.info()->tensor_shape().total_size() * tensor.info()->element_size(),
414 "Not enough data in file");
415 ARM_COMPUTE_UNUSED(end_position);
416
417 // Check if the typestring matches the given one
418 std::string expect_typestr = get_typestring(tensor.info()->data_type());
419 ARM_COMPUTE_ERROR_ON_MSG(_typestring != expect_typestr, "Typestrings mismatch");
420
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100421 bool are_layouts_different = (_file_layout != tensor.info()->data_layout());
422 // Correct dimensions (Needs to match TensorShape dimension corrections)
423 if(_shape.size() != tensor.info()->tensor_shape().num_dimensions())
424 {
425 for(int i = static_cast<int>(_shape.size()) - 1; i > 0; --i)
426 {
427 if(_shape[i] == 1)
428 {
429 _shape.pop_back();
430 }
431 else
432 {
433 break;
434 }
435 }
436 }
Michalis Spyrou39412952018-08-14 17:06:16 +0100437
438 TensorShape permuted_shape = tensor.info()->tensor_shape();
439 arm_compute::PermutationVector perm;
440 if(are_layouts_different && tensor.info()->tensor_shape().num_dimensions() > 2)
441 {
442 perm = (tensor.info()->data_layout() == arm_compute::DataLayout::NHWC) ? arm_compute::PermutationVector(2U, 0U, 1U) : arm_compute::PermutationVector(1U, 2U, 0U);
443 arm_compute::PermutationVector perm_vec = (tensor.info()->data_layout() == arm_compute::DataLayout::NCHW) ? arm_compute::PermutationVector(2U, 0U, 1U) : arm_compute::PermutationVector(1U, 2U, 0U);
444
445 arm_compute::permute(permuted_shape, perm_vec);
446 }
447
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100448 // Validate tensor shape
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000449 ARM_COMPUTE_ERROR_ON_MSG(_shape.size() != tensor.info()->tensor_shape().num_dimensions(), "Tensor ranks mismatch");
Michalis Spyrou39412952018-08-14 17:06:16 +0100450 for(size_t i = 0; i < _shape.size(); ++i)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100451 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100452 ARM_COMPUTE_ERROR_ON_MSG(permuted_shape[i] != _shape[i], "Tensor dimensions mismatch");
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100453 }
454
Gian Marco0bc5a252017-12-04 13:55:08 +0000455 switch(tensor.info()->data_type())
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100456 {
Georgios Pinitasa799ce02018-09-12 20:11:34 +0100457 case arm_compute::DataType::QASYMM8:
458 case arm_compute::DataType::S32:
Gian Marco0bc5a252017-12-04 13:55:08 +0000459 case arm_compute::DataType::F32:
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000460 case arm_compute::DataType::F16:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100461 {
462 // Read data
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100463 if(!are_layouts_different && !_fortran_order && tensor.info()->padding().empty())
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100464 {
465 // If tensor has no padding read directly from stream.
466 _fs.read(reinterpret_cast<char *>(tensor.buffer()), tensor.info()->total_size());
467 }
468 else
469 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100470 // If tensor has padding or is in fortran order accessing tensor elements through execution window.
Michalis Spyrou39412952018-08-14 17:06:16 +0100471 Window window;
472 const unsigned int num_dims = _shape.size();
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100473 if(_fortran_order)
474 {
475 for(unsigned int dim = 0; dim < num_dims; dim++)
476 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100477 permuted_shape.set(dim, _shape[num_dims - dim - 1]);
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100478 perm.set(dim, num_dims - dim - 1);
479 }
Michalis Spyrou39412952018-08-14 17:06:16 +0100480 if(are_layouts_different)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100481 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100482 // Permute only if num_dimensions greater than 2
483 if(num_dims > 2)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100484 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100485 if(_file_layout == DataLayout::NHWC) // i.e destination is NCHW --> permute(1,2,0)
486 {
487 arm_compute::permute(perm, arm_compute::PermutationVector(1U, 2U, 0U));
488 }
489 else
490 {
491 arm_compute::permute(perm, arm_compute::PermutationVector(2U, 0U, 1U));
492 }
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100493 }
494 }
495 }
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100496 window.use_tensor_dimensions(permuted_shape);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100497
498 execute_window_loop(window, [&](const Coordinates & id)
499 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100500 Coordinates dst(id);
501 arm_compute::permute(dst, perm);
502 _fs.read(reinterpret_cast<char *>(tensor.ptr_to_element(dst)), tensor.info()->element_size());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100503 });
504 }
505
506 break;
507 }
508 default:
Gian Marco0bc5a252017-12-04 13:55:08 +0000509 ARM_COMPUTE_ERROR("Unsupported data type");
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100510 }
511
512 // Unmap buffer if creating a CLTensor
513 unmap(tensor);
514 }
515 catch(const std::ifstream::failure &e)
516 {
517 ARM_COMPUTE_ERROR("Loading NPY file: %s", e.what());
518 }
519 }
520
521private:
522 std::ifstream _fs;
523 std::vector<unsigned long> _shape;
524 bool _fortran_order;
525 std::string _typestring;
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100526 DataLayout _file_layout;
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100527};
528
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100529/** Template helper function to save a tensor image to a PPM file.
530 *
531 * @note Only U8 and RGB888 formats supported.
532 * @note Only works with 2D tensors.
533 * @note If the input tensor is a CLTensor, the function maps and unmaps the image
534 *
535 * @param[in] tensor The tensor to save as PPM file
536 * @param[in] ppm_filename Filename of the file to create.
537 */
538template <typename T>
539void save_to_ppm(T &tensor, const std::string &ppm_filename)
540{
541 ARM_COMPUTE_ERROR_ON_FORMAT_NOT_IN(&tensor, arm_compute::Format::RGB888, arm_compute::Format::U8);
542 ARM_COMPUTE_ERROR_ON(tensor.info()->num_dimensions() > 2);
543
544 std::ofstream fs;
545
546 try
547 {
548 fs.exceptions(std::ofstream::failbit | std::ofstream::badbit | std::ofstream::eofbit);
549 fs.open(ppm_filename, std::ios::out | std::ios::binary);
550
551 const unsigned int width = tensor.info()->tensor_shape()[0];
552 const unsigned int height = tensor.info()->tensor_shape()[1];
553
554 fs << "P6\n"
555 << width << " " << height << " 255\n";
556
Anthony Barbier7068f992017-10-26 15:23:08 +0100557 // Map buffer if creating a CLTensor/GCTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100558 map(tensor, true);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100559
560 switch(tensor.info()->format())
561 {
562 case arm_compute::Format::U8:
563 {
564 arm_compute::Window window;
565 window.set(arm_compute::Window::DimX, arm_compute::Window::Dimension(0, width, 1));
566 window.set(arm_compute::Window::DimY, arm_compute::Window::Dimension(0, height, 1));
567
568 arm_compute::Iterator in(&tensor, window);
569
570 arm_compute::execute_window_loop(window, [&](const arm_compute::Coordinates & id)
571 {
572 const unsigned char value = *in.ptr();
573
574 fs << value << value << value;
575 },
576 in);
577
578 break;
579 }
580 case arm_compute::Format::RGB888:
581 {
582 arm_compute::Window window;
583 window.set(arm_compute::Window::DimX, arm_compute::Window::Dimension(0, width, width));
584 window.set(arm_compute::Window::DimY, arm_compute::Window::Dimension(0, height, 1));
585
586 arm_compute::Iterator in(&tensor, window);
587
588 arm_compute::execute_window_loop(window, [&](const arm_compute::Coordinates & id)
589 {
590 fs.write(reinterpret_cast<std::fstream::char_type *>(in.ptr()), width * tensor.info()->element_size());
591 },
592 in);
593
594 break;
595 }
596 default:
597 ARM_COMPUTE_ERROR("Unsupported format");
598 }
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100599
Anthony Barbier7068f992017-10-26 15:23:08 +0100600 // Unmap buffer if creating a CLTensor/GCTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100601 unmap(tensor);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100602 }
603 catch(const std::ofstream::failure &e)
604 {
605 ARM_COMPUTE_ERROR("Writing %s: (%s)", ppm_filename.c_str(), e.what());
606 }
607}
steniu01bee466b2017-06-21 16:45:41 +0100608
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100609/** Template helper function to save a tensor image to a NPY file.
610 *
Gian Marcobfa3b522017-12-12 10:08:38 +0000611 * @note Only F32 data type supported.
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100612 * @note If the input tensor is a CLTensor, the function maps and unmaps the image
613 *
614 * @param[in] tensor The tensor to save as NPY file
615 * @param[in] npy_filename Filename of the file to create.
616 * @param[in] fortran_order If true, save matrix in fortran order.
617 */
618template <typename T>
619void save_to_npy(T &tensor, const std::string &npy_filename, bool fortran_order)
620{
Gian Marcobfa3b522017-12-12 10:08:38 +0000621 ARM_COMPUTE_ERROR_ON_DATA_TYPE_NOT_IN(&tensor, arm_compute::DataType::F32);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100622
623 std::ofstream fs;
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100624 try
625 {
626 fs.exceptions(std::ofstream::failbit | std::ofstream::badbit | std::ofstream::eofbit);
627 fs.open(npy_filename, std::ios::out | std::ios::binary);
628
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100629 std::vector<npy::ndarray_len_t> shape(tensor.info()->num_dimensions());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100630
Pablo Tello32521432018-11-15 14:43:10 +0000631 for(unsigned int i = 0, j = tensor.info()->num_dimensions() - 1; i < tensor.info()->num_dimensions(); ++i, --j)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100632 {
Pablo Tello32521432018-11-15 14:43:10 +0000633 shape[i] = tensor.info()->tensor_shape()[!fortran_order ? j : i];
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100634 }
635
636 // Map buffer if creating a CLTensor
637 map(tensor, true);
638
Gian Marcobfa3b522017-12-12 10:08:38 +0000639 switch(tensor.info()->data_type())
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100640 {
Gian Marcobfa3b522017-12-12 10:08:38 +0000641 case arm_compute::DataType::F32:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100642 {
643 std::vector<float> tmp; /* Used only to get the typestring */
644 npy::Typestring typestring_o{ tmp };
645 std::string typestring = typestring_o.str();
646
647 std::ofstream stream(npy_filename, std::ofstream::binary);
Anthony Barbier87f21cd2017-11-10 16:27:32 +0000648 npy::write_header(stream, typestring, fortran_order, shape);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100649
650 arm_compute::Window window;
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100651 window.use_tensor_dimensions(tensor.info()->tensor_shape());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100652
653 arm_compute::Iterator in(&tensor, window);
654
655 arm_compute::execute_window_loop(window, [&](const arm_compute::Coordinates & id)
656 {
657 stream.write(reinterpret_cast<const char *>(in.ptr()), sizeof(float));
658 },
659 in);
660
661 break;
662 }
663 default:
664 ARM_COMPUTE_ERROR("Unsupported format");
665 }
666
667 // Unmap buffer if creating a CLTensor
668 unmap(tensor);
669 }
670 catch(const std::ofstream::failure &e)
671 {
672 ARM_COMPUTE_ERROR("Writing %s: (%s)", npy_filename.c_str(), e.what());
673 }
674}
675
steniu01bee466b2017-06-21 16:45:41 +0100676/** Load the tensor with pre-trained data from a binary file
677 *
678 * @param[in] tensor The tensor to be filled. Data type supported: F32.
679 * @param[in] filename Filename of the binary file to load from.
680 */
681template <typename T>
682void load_trained_data(T &tensor, const std::string &filename)
683{
684 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
685
686 std::ifstream fs;
687
688 try
689 {
690 fs.exceptions(std::ofstream::failbit | std::ofstream::badbit | std::ofstream::eofbit);
691 // Open file
692 fs.open(filename, std::ios::in | std::ios::binary);
693
694 if(!fs.good())
695 {
696 throw std::runtime_error("Could not load binary data: " + filename);
697 }
698
Anthony Barbier7068f992017-10-26 15:23:08 +0100699 // Map buffer if creating a CLTensor/GCTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100700 map(tensor, true);
701
steniu01bee466b2017-06-21 16:45:41 +0100702 Window window;
703
704 window.set(arm_compute::Window::DimX, arm_compute::Window::Dimension(0, 1, 1));
705
706 for(unsigned int d = 1; d < tensor.info()->num_dimensions(); ++d)
707 {
708 window.set(d, Window::Dimension(0, tensor.info()->tensor_shape()[d], 1));
709 }
710
711 arm_compute::Iterator in(&tensor, window);
712
713 execute_window_loop(window, [&](const Coordinates & id)
714 {
715 fs.read(reinterpret_cast<std::fstream::char_type *>(in.ptr()), tensor.info()->tensor_shape()[0] * tensor.info()->element_size());
716 },
717 in);
718
Anthony Barbier7068f992017-10-26 15:23:08 +0100719 // Unmap buffer if creating a CLTensor/GCTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100720 unmap(tensor);
steniu01bee466b2017-06-21 16:45:41 +0100721 }
722 catch(const std::ofstream::failure &e)
723 {
724 ARM_COMPUTE_ERROR("Writing %s: (%s)", filename.c_str(), e.what());
725 }
726}
727
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100728template <typename T>
729void fill_random_tensor(T &tensor, float lower_bound, float upper_bound)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100730{
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100731 std::random_device rd;
732 std::mt19937 gen(rd());
Anthony Barbier2a07e182017-08-04 18:20:27 +0100733
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100734 Window window;
Michalis Spyrou5e69bb42018-03-09 16:36:00 +0000735 window.use_tensor_dimensions(tensor.info()->tensor_shape());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100736
737 map(tensor, true);
738
739 Iterator it(&tensor, window);
740
Gian Marcobfa3b522017-12-12 10:08:38 +0000741 switch(tensor.info()->data_type())
Anthony Barbier2a07e182017-08-04 18:20:27 +0100742 {
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000743 case arm_compute::DataType::F16:
744 {
745 std::uniform_real_distribution<float> dist(lower_bound, upper_bound);
746
747 execute_window_loop(window, [&](const Coordinates & id)
748 {
749 *reinterpret_cast<half *>(it.ptr()) = (half)dist(gen);
750 },
751 it);
752
753 break;
754 }
Gian Marcobfa3b522017-12-12 10:08:38 +0000755 case arm_compute::DataType::F32:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100756 {
757 std::uniform_real_distribution<float> dist(lower_bound, upper_bound);
758
759 execute_window_loop(window, [&](const Coordinates & id)
760 {
761 *reinterpret_cast<float *>(it.ptr()) = dist(gen);
762 },
763 it);
764
765 break;
766 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100767 default:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100768 {
769 ARM_COMPUTE_ERROR("Unsupported format");
770 }
Anthony Barbier2a07e182017-08-04 18:20:27 +0100771 }
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100772
773 unmap(tensor);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100774}
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100775
776template <typename T>
Gian Marco0bc5a252017-12-04 13:55:08 +0000777void init_sgemm_output(T &dst, T &src0, T &src1, arm_compute::DataType dt)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100778{
Georgios Pinitas108a95e2019-03-27 13:55:59 +0000779 dst.allocator()->init(TensorInfo(TensorShape(src1.info()->dimension(0), src0.info()->dimension(1), src0.info()->dimension(2)), 1, dt));
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100780}
Gian Marco5ca74092018-02-08 16:21:54 +0000781/** This function returns the amount of memory free reading from /proc/meminfo
782 *
783 * @return The free memory in kB
784 */
785uint64_t get_mem_free_from_meminfo();
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100786
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000787/** Compare two tensors
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100788 *
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000789 * @param[in] tensor1 First tensor to be compared.
790 * @param[in] tensor2 Second tensor to be compared.
791 * @param[in] tolerance Tolerance used for the comparison.
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100792 *
793 * @return The number of mismatches
794 */
795template <typename T>
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000796int compare_tensor(ITensor &tensor1, ITensor &tensor2, T tolerance)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100797{
798 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(&tensor1, &tensor2);
799 ARM_COMPUTE_ERROR_ON_MISMATCHING_SHAPES(&tensor1, &tensor2);
800
801 int num_mismatches = 0;
802 Window window;
803 window.use_tensor_dimensions(tensor1.info()->tensor_shape());
804
805 map(tensor1, true);
806 map(tensor2, true);
Pablo Tello32521432018-11-15 14:43:10 +0000807
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100808 Iterator itensor1(&tensor1, window);
809 Iterator itensor2(&tensor2, window);
810
811 execute_window_loop(window, [&](const Coordinates & id)
812 {
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000813 if(std::abs(*reinterpret_cast<T *>(itensor1.ptr()) - *reinterpret_cast<T *>(itensor2.ptr())) > tolerance)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100814 {
815 ++num_mismatches;
816 }
817 },
818 itensor1, itensor2);
819
820 unmap(itensor1);
821 unmap(itensor2);
822
823 return num_mismatches;
824}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100825} // namespace utils
826} // namespace arm_compute
827#endif /* __UTILS_UTILS_H__*/