blob: 626cbcf07fbbd7c6b17b3f5e30b42325662a4ed8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Jakub Sujak3b504ef2022-12-07 23:55:22 +00002 * Copyright (c) 2016-2023 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
Michele Di Giorgio552e11d2020-09-23 15:08:38 +010027/** @dir .
28 * brief Boiler plate code used by examples. Various utilities to print types, load / store assets, etc.
29 */
30
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/ITensor.h"
33#include "arm_compute/core/Types.h"
steniu01bee466b2017-06-21 16:45:41 +010034#include "arm_compute/core/Window.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035#include "arm_compute/runtime/Tensor.h"
Michalis Spyrou6bff1952019-10-02 17:22:11 +010036#pragma GCC diagnostic push
37#pragma GCC diagnostic ignored "-Wunused-parameter"
Michalis Spyroufae513c2019-10-16 17:41:33 +010038#pragma GCC diagnostic ignored "-Wstrict-overflow"
Giorgio Arenacf3935f2017-10-26 17:14:13 +010039#include "libnpy/npy.hpp"
Michalis Spyrou6bff1952019-10-02 17:22:11 +010040#pragma GCC diagnostic pop
Matthew Bentham758b5ba2020-03-05 23:37:48 +000041#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042
43#ifdef ARM_COMPUTE_CL
44#include "arm_compute/core/CL/OpenCL.h"
45#include "arm_compute/runtime/CL/CLTensor.h"
46#endif /* ARM_COMPUTE_CL */
47
48#include <cstdlib>
49#include <cstring>
50#include <fstream>
51#include <iostream>
Georgios Pinitas40f51a62020-11-21 03:04:18 +000052#include <memory>
Giorgio Arenacf3935f2017-10-26 17:14:13 +010053#include <random>
54#include <string>
55#include <tuple>
56#include <vector>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057
58namespace arm_compute
59{
60namespace utils
61{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010062/** Supported image types */
63enum class ImageType
64{
65 UNKNOWN,
66 PPM,
67 JPEG
68};
69
Anthony Barbier6db0ff52018-01-05 10:59:12 +000070/** Abstract Example class.
71 *
72 * All examples have to inherit from this class.
73 */
74class Example
75{
76public:
Alex Gildayc357c472018-03-21 13:54:09 +000077 /** Setup the example.
78 *
79 * @param[in] argc Argument count.
80 * @param[in] argv Argument values.
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010081 *
82 * @return True in case of no errors in setup else false
Alex Gildayc357c472018-03-21 13:54:09 +000083 */
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010084 virtual bool do_setup(int argc, char **argv)
85 {
Michalis Spyrou6bff1952019-10-02 17:22:11 +010086 ARM_COMPUTE_UNUSED(argc, argv);
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010087 return true;
88 };
Alex Gildayc357c472018-03-21 13:54:09 +000089 /** Run the example. */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010090 virtual void do_run(){};
Alex Gildayc357c472018-03-21 13:54:09 +000091 /** Teardown the example. */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092 virtual void do_teardown(){};
Anthony Barbier6db0ff52018-01-05 10:59:12 +000093
94 /** Default destructor. */
95 virtual ~Example() = default;
96};
97
98/** Run an example and handle the potential exceptions it throws
99 *
100 * @param[in] argc Number of command line arguments
101 * @param[in] argv Command line arguments
102 * @param[in] example Example to run
103 */
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100104int run_example(int argc, char **argv, std::unique_ptr<Example> example);
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000105
106template <typename T>
107int run_example(int argc, char **argv)
108{
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000109 return run_example(argc, argv, std::make_unique<T>());
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000110}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111
112/** Draw a RGB rectangular window for the detected object
113 *
114 * @param[in, out] tensor Input tensor where the rectangle will be drawn on. Format supported: RGB888
115 * @param[in] rect Geometry of the rectangular window
116 * @param[in] r Red colour to use
117 * @param[in] g Green colour to use
118 * @param[in] b Blue colour to use
119 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100120void draw_detection_rectangle(
121 arm_compute::ITensor *tensor, const arm_compute::DetectionWindow &rect, uint8_t r, uint8_t g, uint8_t b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100123/** Gets image type given a file
124 *
125 * @param[in] filename File to identify its image type
126 *
127 * @return Image type
128 */
129ImageType get_image_type_from_file(const std::string &filename);
130
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131/** Parse the ppm header from an input file stream. At the end of the execution,
132 * the file position pointer will be located at the first pixel stored in the ppm file
133 *
134 * @param[in] fs Input file stream to parse
135 *
136 * @return The width, height and max value stored in the header of the PPM file
137 */
138std::tuple<unsigned int, unsigned int, int> parse_ppm_header(std::ifstream &fs);
139
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100140/** Parse the npy header from an input file stream. At the end of the execution,
141 * the file position pointer will be located at the first pixel stored in the npy file //TODO
142 *
143 * @param[in] fs Input file stream to parse
144 *
145 * @return The width and height stored in the header of the NPY file
146 */
Jakub Sujak3b504ef2022-12-07 23:55:22 +0000147npy::header_t parse_npy_header(std::ifstream &fs);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100148
149/** Obtain numpy type string from DataType.
150 *
151 * @param[in] data_type Data type.
152 *
153 * @return numpy type string.
154 */
155inline std::string get_typestring(DataType data_type)
156{
157 // Check endianness
158 const unsigned int i = 1;
159 const char *c = reinterpret_cast<const char *>(&i);
160 std::string endianness;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100161 if (*c == 1)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100162 {
163 endianness = std::string("<");
164 }
165 else
166 {
167 endianness = std::string(">");
168 }
169 const std::string no_endianness("|");
170
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100171 switch (data_type)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100172 {
173 case DataType::U8:
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000174 case DataType::QASYMM8:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100175 return no_endianness + "u" + support::cpp11::to_string(sizeof(uint8_t));
176 case DataType::S8:
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100177 case DataType::QSYMM8:
178 case DataType::QSYMM8_PER_CHANNEL:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100179 return no_endianness + "i" + support::cpp11::to_string(sizeof(int8_t));
180 case DataType::U16:
Michele Di Giorgio35ea9a72019-08-23 12:02:06 +0100181 case DataType::QASYMM16:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100182 return endianness + "u" + support::cpp11::to_string(sizeof(uint16_t));
183 case DataType::S16:
Manuel Bottini3689fcd2019-06-14 17:18:12 +0100184 case DataType::QSYMM16:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100185 return endianness + "i" + support::cpp11::to_string(sizeof(int16_t));
186 case DataType::U32:
187 return endianness + "u" + support::cpp11::to_string(sizeof(uint32_t));
188 case DataType::S32:
189 return endianness + "i" + support::cpp11::to_string(sizeof(int32_t));
190 case DataType::U64:
191 return endianness + "u" + support::cpp11::to_string(sizeof(uint64_t));
192 case DataType::S64:
193 return endianness + "i" + support::cpp11::to_string(sizeof(int64_t));
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000194 case DataType::F16:
195 return endianness + "f" + support::cpp11::to_string(sizeof(half));
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100196 case DataType::F32:
197 return endianness + "f" + support::cpp11::to_string(sizeof(float));
198 case DataType::F64:
199 return endianness + "f" + support::cpp11::to_string(sizeof(double));
200 case DataType::SIZET:
201 return endianness + "u" + support::cpp11::to_string(sizeof(size_t));
202 default:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100203 ARM_COMPUTE_ERROR("Data type not supported");
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100204 }
205}
206
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100207/** Maps a tensor if needed
208 *
209 * @param[in] tensor Tensor to be mapped
210 * @param[in] blocking Specified if map is blocking or not
211 */
212template <typename T>
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100213inline void map(T &tensor, bool blocking)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100214{
215 ARM_COMPUTE_UNUSED(tensor);
216 ARM_COMPUTE_UNUSED(blocking);
217}
218
219/** Unmaps a tensor if needed
220 *
221 * @param tensor Tensor to be unmapped
222 */
223template <typename T>
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100224inline void unmap(T &tensor)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100225{
226 ARM_COMPUTE_UNUSED(tensor);
227}
228
229#ifdef ARM_COMPUTE_CL
230/** Maps a tensor if needed
231 *
232 * @param[in] tensor Tensor to be mapped
233 * @param[in] blocking Specified if map is blocking or not
234 */
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100235inline void map(CLTensor &tensor, bool blocking)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100236{
237 tensor.map(blocking);
238}
239
240/** Unmaps a tensor if needed
241 *
242 * @param tensor Tensor to be unmapped
243 */
Gian Marco Iodiceae27e942017-09-28 18:31:26 +0100244inline void unmap(CLTensor &tensor)
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100245{
246 tensor.unmap();
247}
248#endif /* ARM_COMPUTE_CL */
249
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000250/** Specialized class to generate random non-zero FP16 values.
251 * uniform_real_distribution<half> generates values that get rounded off to zero, causing
252 * differences between ACL and reference implementation
253*/
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +0000254template <typename T>
255class uniform_real_distribution_16bit
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000256{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100257 static_assert(std::is_same<T, half>::value || std::is_same<T, bfloat16>::value,
258 "Only half and bfloat16 data types supported");
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +0000259
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000260public:
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +0000261 using result_type = T;
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000262 /** Constructor
263 *
Giorgio Arena6aeb2172020-12-15 15:45:43 +0000264 * @param[in] min Minimum value of the distribution
265 * @param[in] max Maximum value of the distribution
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000266 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100267 explicit uniform_real_distribution_16bit(float min = 0.f, float max = 1.0) : dist(min, max)
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000268 {
269 }
270
271 /** () operator to generate next value
272 *
273 * @param[in] gen an uniform random bit generator object
274 */
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +0000275 T operator()(std::mt19937 &gen)
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000276 {
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +0000277 return T(dist(gen));
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000278 }
Giorgio Arena6aeb2172020-12-15 15:45:43 +0000279
280private:
281 std::uniform_real_distribution<float> dist;
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000282};
283
Alex Gildayc357c472018-03-21 13:54:09 +0000284/** Numpy data loader */
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100285class NPYLoader
286{
287public:
Alex Gildayc357c472018-03-21 13:54:09 +0000288 /** Default constructor */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100289 NPYLoader() : _fs(), _shape(), _fortran_order(false), _typestring(), _file_layout(DataLayout::NCHW)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100290 {
291 }
292
293 /** Open a NPY file and reads its metadata
294 *
295 * @param[in] npy_filename File to open
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100296 * @param[in] file_layout (Optional) Layout in which the weights are stored in the file.
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100297 */
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100298 void open(const std::string &npy_filename, DataLayout file_layout = DataLayout::NCHW)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100299 {
300 ARM_COMPUTE_ERROR_ON(is_open());
301 try
302 {
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100303 _fs.open(npy_filename, std::ios::in | std::ios::binary);
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100304 ARM_COMPUTE_EXIT_ON_MSG_VAR(!_fs.good(), "Failed to load binary data from %s", npy_filename.c_str());
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100305 _fs.exceptions(std::ifstream::failbit | std::ifstream::badbit);
306 _file_layout = file_layout;
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100307
Jakub Sujak3b504ef2022-12-07 23:55:22 +0000308 npy::header_t header = parse_npy_header(_fs);
309 _shape = header.shape;
310 _fortran_order = header.fortran_order;
311 _typestring = header.dtype.str();
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100312 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100313 catch (const std::ifstream::failure &e)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100314 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100315 ARM_COMPUTE_ERROR_VAR("Accessing %s: %s", npy_filename.c_str(), e.what());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100316 }
317 }
318 /** Return true if a NPY file is currently open */
319 bool is_open()
320 {
321 return _fs.is_open();
322 }
323
324 /** Return true if a NPY file is in fortran order */
325 bool is_fortran()
326 {
327 return _fortran_order;
328 }
329
Gian Marco0bc5a252017-12-04 13:55:08 +0000330 /** Initialise the tensor's metadata with the dimensions of the NPY file currently open
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100331 *
332 * @param[out] tensor Tensor to initialise
Gian Marco0bc5a252017-12-04 13:55:08 +0000333 * @param[in] dt Data type to use for the tensor
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100334 */
335 template <typename T>
Gian Marco0bc5a252017-12-04 13:55:08 +0000336 void init_tensor(T &tensor, arm_compute::DataType dt)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100337 {
338 ARM_COMPUTE_ERROR_ON(!is_open());
Gian Marco0bc5a252017-12-04 13:55:08 +0000339 ARM_COMPUTE_ERROR_ON(dt != arm_compute::DataType::F32);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100340
341 // Use the size of the input NPY tensor
342 TensorShape shape;
343 shape.set_num_dimensions(_shape.size());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100344 for (size_t i = 0; i < _shape.size(); ++i)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100345 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100346 size_t src = i;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100347 if (_fortran_order)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100348 {
349 src = _shape.size() - 1 - i;
350 }
351 shape.set(i, _shape.at(src));
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100352 }
353
Gian Marco0bc5a252017-12-04 13:55:08 +0000354 arm_compute::TensorInfo tensor_info(shape, 1, dt);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100355 tensor.allocator()->init(tensor_info);
356 }
357
358 /** Fill a tensor with the content of the currently open NPY file.
359 *
360 * @note If the tensor is a CLTensor, the function maps and unmaps the tensor
361 *
362 * @param[in,out] tensor Tensor to fill (Must be allocated, and of matching dimensions with the opened NPY).
363 */
364 template <typename T>
365 void fill_tensor(T &tensor)
366 {
367 ARM_COMPUTE_ERROR_ON(!is_open());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100368 ARM_COMPUTE_ERROR_ON_DATA_TYPE_NOT_IN(&tensor, arm_compute::DataType::QASYMM8, arm_compute::DataType::S32,
369 arm_compute::DataType::F32, arm_compute::DataType::F16);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100370 try
371 {
372 // Map buffer if creating a CLTensor
373 map(tensor, true);
374
375 // Check if the file is large enough to fill the tensor
376 const size_t current_position = _fs.tellg();
377 _fs.seekg(0, std::ios_base::end);
378 const size_t end_position = _fs.tellg();
379 _fs.seekg(current_position, std::ios_base::beg);
380
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100381 ARM_COMPUTE_ERROR_ON_MSG((end_position - current_position) <
382 tensor.info()->tensor_shape().total_size() * tensor.info()->element_size(),
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100383 "Not enough data in file");
384 ARM_COMPUTE_UNUSED(end_position);
385
386 // Check if the typestring matches the given one
387 std::string expect_typestr = get_typestring(tensor.info()->data_type());
Gian Marco Iodice08dfba32023-06-08 15:59:28 +0100388
389 bool enable_f32_to_f16_conversion = false;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100390 if (_typestring != expect_typestr)
Gian Marco Iodice08dfba32023-06-08 15:59:28 +0100391 {
392 const std::string f32_typestring = "<f4";
393 const std::string f16_typestring = "<f2";
394 // if typestring does not match, check whether _typestring is F32 and can be downcasted to expect_typestr
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100395 if (_typestring == f32_typestring && expect_typestr == f16_typestring)
Gian Marco Iodice08dfba32023-06-08 15:59:28 +0100396 {
397 enable_f32_to_f16_conversion = true;
398 }
399 else
400 {
401 ARM_COMPUTE_ERROR("Typestrings mismatch");
402 }
403 }
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100404
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100405 bool are_layouts_different = (_file_layout != tensor.info()->data_layout());
406 // Correct dimensions (Needs to match TensorShape dimension corrections)
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100407 if (_shape.size() != tensor.info()->tensor_shape().num_dimensions())
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100408 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100409 for (int i = static_cast<int>(_shape.size()) - 1; i > 0; --i)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100410 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100411 if (_shape[i] == 1)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100412 {
413 _shape.pop_back();
414 }
415 else
416 {
417 break;
418 }
419 }
420 }
Michalis Spyrou39412952018-08-14 17:06:16 +0100421
422 TensorShape permuted_shape = tensor.info()->tensor_shape();
423 arm_compute::PermutationVector perm;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100424 if (are_layouts_different && tensor.info()->tensor_shape().num_dimensions() > 2)
Michalis Spyrou39412952018-08-14 17:06:16 +0100425 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100426 perm = (tensor.info()->data_layout() == arm_compute::DataLayout::NHWC)
427 ? arm_compute::PermutationVector(2U, 0U, 1U)
428 : arm_compute::PermutationVector(1U, 2U, 0U);
429 arm_compute::PermutationVector perm_vec =
430 (tensor.info()->data_layout() == arm_compute::DataLayout::NCHW)
431 ? arm_compute::PermutationVector(2U, 0U, 1U)
432 : arm_compute::PermutationVector(1U, 2U, 0U);
Michalis Spyrou39412952018-08-14 17:06:16 +0100433
434 arm_compute::permute(permuted_shape, perm_vec);
435 }
436
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100437 // Validate tensor shape
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100438 ARM_COMPUTE_ERROR_ON_MSG(_shape.size() != tensor.info()->tensor_shape().num_dimensions(),
439 "Tensor ranks mismatch");
440 for (size_t i = 0; i < _shape.size(); ++i)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100441 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100442 ARM_COMPUTE_ERROR_ON_MSG(permuted_shape[i] != _shape[i], "Tensor dimensions mismatch");
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100443 }
444
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100445 switch (tensor.info()->data_type())
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100446 {
Georgios Pinitasa799ce02018-09-12 20:11:34 +0100447 case arm_compute::DataType::QASYMM8:
448 case arm_compute::DataType::S32:
Gian Marco0bc5a252017-12-04 13:55:08 +0000449 case arm_compute::DataType::F32:
Vidhya Sudhan Loganathana25d16c2018-11-16 11:33:12 +0000450 case arm_compute::DataType::F16:
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100451 {
452 // Read data
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100453 if (!are_layouts_different && !_fortran_order && tensor.info()->padding().empty() &&
454 !enable_f32_to_f16_conversion)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100455 {
456 // If tensor has no padding read directly from stream.
457 _fs.read(reinterpret_cast<char *>(tensor.buffer()), tensor.info()->total_size());
458 }
459 else
460 {
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100461 // If tensor has padding or is in fortran order accessing tensor elements through execution window.
Michalis Spyrou39412952018-08-14 17:06:16 +0100462 Window window;
463 const unsigned int num_dims = _shape.size();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100464 if (_fortran_order)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100465 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100466 for (unsigned int dim = 0; dim < num_dims; dim++)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100467 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100468 permuted_shape.set(dim, _shape[num_dims - dim - 1]);
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100469 perm.set(dim, num_dims - dim - 1);
470 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100471 if (are_layouts_different)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100472 {
Michalis Spyrou39412952018-08-14 17:06:16 +0100473 // Permute only if num_dimensions greater than 2
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100474 if (num_dims > 2)
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100475 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100476 if (_file_layout == DataLayout::NHWC) // i.e destination is NCHW --> permute(1,2,0)
Michalis Spyrou39412952018-08-14 17:06:16 +0100477 {
478 arm_compute::permute(perm, arm_compute::PermutationVector(1U, 2U, 0U));
479 }
480 else
481 {
482 arm_compute::permute(perm, arm_compute::PermutationVector(2U, 0U, 1U));
483 }
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100484 }
485 }
486 }
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100487 window.use_tensor_dimensions(permuted_shape);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100488
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100489 execute_window_loop(window,
490 [&](const Coordinates &id)
491 {
492 Coordinates dst(id);
493 arm_compute::permute(dst, perm);
494 if (enable_f32_to_f16_conversion)
495 {
496 float f32_val = 0;
497 _fs.read(reinterpret_cast<char *>(&f32_val), 4u);
498 half f16_val =
499 half_float::half_cast<half, std::round_to_nearest>(f32_val);
500 *(reinterpret_cast<half *>(tensor.ptr_to_element(dst))) = f16_val;
501 }
502 else
503 {
504 _fs.read(reinterpret_cast<char *>(tensor.ptr_to_element(dst)),
505 tensor.info()->element_size());
506 }
507 });
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100508 }
509
510 break;
511 }
512 default:
Gian Marco0bc5a252017-12-04 13:55:08 +0000513 ARM_COMPUTE_ERROR("Unsupported data type");
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100514 }
515
516 // Unmap buffer if creating a CLTensor
517 unmap(tensor);
518 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100519 catch (const std::ifstream::failure &e)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100520 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100521 ARM_COMPUTE_ERROR_VAR("Loading NPY file: %s", e.what());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100522 }
523 }
524
525private:
526 std::ifstream _fs;
527 std::vector<unsigned long> _shape;
528 bool _fortran_order;
529 std::string _typestring;
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100530 DataLayout _file_layout;
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100531};
532
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100533/** Template helper function to save a tensor image to a PPM file.
534 *
535 * @note Only U8 and RGB888 formats supported.
536 * @note Only works with 2D tensors.
537 * @note If the input tensor is a CLTensor, the function maps and unmaps the image
538 *
539 * @param[in] tensor The tensor to save as PPM file
540 * @param[in] ppm_filename Filename of the file to create.
541 */
542template <typename T>
543void save_to_ppm(T &tensor, const std::string &ppm_filename)
544{
545 ARM_COMPUTE_ERROR_ON_FORMAT_NOT_IN(&tensor, arm_compute::Format::RGB888, arm_compute::Format::U8);
546 ARM_COMPUTE_ERROR_ON(tensor.info()->num_dimensions() > 2);
547
548 std::ofstream fs;
549
550 try
551 {
552 fs.exceptions(std::ofstream::failbit | std::ofstream::badbit | std::ofstream::eofbit);
553 fs.open(ppm_filename, std::ios::out | std::ios::binary);
554
555 const unsigned int width = tensor.info()->tensor_shape()[0];
556 const unsigned int height = tensor.info()->tensor_shape()[1];
557
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100558 fs << "P6\n" << width << " " << height << " 255\n";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100559
Michele Di Giorgio40efd532021-03-18 17:32:00 +0000560 // Map buffer if creating a CLTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100561 map(tensor, true);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100562
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100563 switch (tensor.info()->format())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100564 {
565 case arm_compute::Format::U8:
566 {
567 arm_compute::Window window;
568 window.set(arm_compute::Window::DimX, arm_compute::Window::Dimension(0, width, 1));
569 window.set(arm_compute::Window::DimY, arm_compute::Window::Dimension(0, height, 1));
570
571 arm_compute::Iterator in(&tensor, window);
572
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100573 arm_compute::execute_window_loop(
574 window,
575 [&](const arm_compute::Coordinates &)
576 {
577 const unsigned char value = *in.ptr();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100578
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100579 fs << value << value << value;
580 },
581 in);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100582
583 break;
584 }
585 case arm_compute::Format::RGB888:
586 {
587 arm_compute::Window window;
588 window.set(arm_compute::Window::DimX, arm_compute::Window::Dimension(0, width, width));
589 window.set(arm_compute::Window::DimY, arm_compute::Window::Dimension(0, height, 1));
590
591 arm_compute::Iterator in(&tensor, window);
592
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100593 arm_compute::execute_window_loop(
594 window,
595 [&](const arm_compute::Coordinates &) {
596 fs.write(reinterpret_cast<std::fstream::char_type *>(in.ptr()),
597 width * tensor.info()->element_size());
598 },
599 in);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100600
601 break;
602 }
603 default:
604 ARM_COMPUTE_ERROR("Unsupported format");
605 }
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100606
Michele Di Giorgio40efd532021-03-18 17:32:00 +0000607 // Unmap buffer if creating a CLTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100608 unmap(tensor);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100609 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100610 catch (const std::ofstream::failure &e)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100611 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100612 ARM_COMPUTE_ERROR_VAR("Writing %s: (%s)", ppm_filename.c_str(), e.what());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100613 }
614}
steniu01bee466b2017-06-21 16:45:41 +0100615
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100616/** Template helper function to save a tensor image to a NPY file.
617 *
Gian Marcobfa3b522017-12-12 10:08:38 +0000618 * @note Only F32 data type supported.
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100619 * @note If the input tensor is a CLTensor, the function maps and unmaps the image
620 *
621 * @param[in] tensor The tensor to save as NPY file
622 * @param[in] npy_filename Filename of the file to create.
623 * @param[in] fortran_order If true, save matrix in fortran order.
624 */
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000625template <typename T, typename U = float>
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100626void save_to_npy(T &tensor, const std::string &npy_filename, bool fortran_order)
627{
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000628 ARM_COMPUTE_ERROR_ON_DATA_TYPE_NOT_IN(&tensor, arm_compute::DataType::F32, arm_compute::DataType::QASYMM8);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100629
630 std::ofstream fs;
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100631 try
632 {
633 fs.exceptions(std::ofstream::failbit | std::ofstream::badbit | std::ofstream::eofbit);
634 fs.open(npy_filename, std::ios::out | std::ios::binary);
635
Anthony Barbier4ead11a2018-08-06 09:25:36 +0100636 std::vector<npy::ndarray_len_t> shape(tensor.info()->num_dimensions());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100637
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100638 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 +0100639 {
Pablo Tello32521432018-11-15 14:43:10 +0000640 shape[i] = tensor.info()->tensor_shape()[!fortran_order ? j : i];
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100641 }
642
643 // Map buffer if creating a CLTensor
644 map(tensor, true);
645
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000646 using typestring_type = typename std::conditional<std::is_floating_point<U>::value, float, qasymm8_t>::type;
647
648 std::vector<typestring_type> tmp; /* Used only to get the typestring */
Jakub Sujak3b504ef2022-12-07 23:55:22 +0000649 const npy::dtype_t dtype = npy::dtype_map.at(std::type_index(typeid(tmp)));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000650
651 std::ofstream stream(npy_filename, std::ofstream::binary);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100652 npy::header_t header{dtype, fortran_order, shape};
Jakub Sujak3b504ef2022-12-07 23:55:22 +0000653 npy::write_header(stream, header);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000654
655 arm_compute::Window window;
656 window.use_tensor_dimensions(tensor.info()->tensor_shape());
657
658 arm_compute::Iterator in(&tensor, window);
659
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100660 arm_compute::execute_window_loop(
661 window,
662 [&](const arm_compute::Coordinates &)
663 { stream.write(reinterpret_cast<const char *>(in.ptr()), sizeof(typestring_type)); },
664 in);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100665
666 // Unmap buffer if creating a CLTensor
667 unmap(tensor);
668 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100669 catch (const std::ofstream::failure &e)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100670 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100671 ARM_COMPUTE_ERROR_VAR("Writing %s: (%s)", npy_filename.c_str(), e.what());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100672 }
673}
674
steniu01bee466b2017-06-21 16:45:41 +0100675/** Load the tensor with pre-trained data from a binary file
676 *
677 * @param[in] tensor The tensor to be filled. Data type supported: F32.
678 * @param[in] filename Filename of the binary file to load from.
679 */
680template <typename T>
681void load_trained_data(T &tensor, const std::string &filename)
682{
683 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&tensor, 1, DataType::F32);
684
685 std::ifstream fs;
686
687 try
688 {
689 fs.exceptions(std::ofstream::failbit | std::ofstream::badbit | std::ofstream::eofbit);
690 // Open file
691 fs.open(filename, std::ios::in | std::ios::binary);
692
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100693 if (!fs.good())
steniu01bee466b2017-06-21 16:45:41 +0100694 {
695 throw std::runtime_error("Could not load binary data: " + filename);
696 }
697
Michele Di Giorgio40efd532021-03-18 17:32:00 +0000698 // Map buffer if creating a CLTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100699 map(tensor, true);
700
steniu01bee466b2017-06-21 16:45:41 +0100701 Window window;
702
703 window.set(arm_compute::Window::DimX, arm_compute::Window::Dimension(0, 1, 1));
704
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100705 for (unsigned int d = 1; d < tensor.info()->num_dimensions(); ++d)
steniu01bee466b2017-06-21 16:45:41 +0100706 {
707 window.set(d, Window::Dimension(0, tensor.info()->tensor_shape()[d], 1));
708 }
709
710 arm_compute::Iterator in(&tensor, window);
711
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100712 execute_window_loop(
713 window,
714 [&](const Coordinates &)
715 {
716 fs.read(reinterpret_cast<std::fstream::char_type *>(in.ptr()),
717 tensor.info()->tensor_shape()[0] * tensor.info()->element_size());
718 },
719 in);
steniu01bee466b2017-06-21 16:45:41 +0100720
Michele Di Giorgio40efd532021-03-18 17:32:00 +0000721 // Unmap buffer if creating a CLTensor
Georgios Pinitasdc836b62017-09-20 14:02:37 +0100722 unmap(tensor);
steniu01bee466b2017-06-21 16:45:41 +0100723 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100724 catch (const std::ofstream::failure &e)
steniu01bee466b2017-06-21 16:45:41 +0100725 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100726 ARM_COMPUTE_ERROR_VAR("Writing %s: (%s)", filename.c_str(), e.what());
steniu01bee466b2017-06-21 16:45:41 +0100727 }
728}
729
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000730template <typename T, typename TensorType>
731void fill_tensor_value(TensorType &tensor, T value)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100732{
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000733 map(tensor, true);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100734
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100735 Window window;
Michalis Spyrou5e69bb42018-03-09 16:36:00 +0000736 window.use_tensor_dimensions(tensor.info()->tensor_shape());
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100737
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000738 Iterator it_tensor(&tensor, window);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100739 execute_window_loop(
740 window, [&](const Coordinates &) { *reinterpret_cast<T *>(it_tensor.ptr()) = value; }, it_tensor);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100741
742 unmap(tensor);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100743}
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100744
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000745template <typename T, typename TensorType>
746void fill_tensor_zero(TensorType &tensor)
747{
748 fill_tensor_value(tensor, T(0));
749}
750
751template <typename T, typename TensorType>
752void fill_tensor_vector(TensorType &tensor, std::vector<T> vec)
753{
754 ARM_COMPUTE_ERROR_ON(tensor.info()->tensor_shape().total_size() != vec.size());
755
756 map(tensor, true);
757
758 Window window;
759 window.use_tensor_dimensions(tensor.info()->tensor_shape());
760
761 int i = 0;
762 Iterator it_tensor(&tensor, window);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100763 execute_window_loop(
764 window, [&](const Coordinates &) { *reinterpret_cast<T *>(it_tensor.ptr()) = vec.at(i++); }, it_tensor);
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000765
766 unmap(tensor);
767}
768
769template <typename T, typename TensorType>
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100770void fill_random_tensor(TensorType &tensor,
771 std::random_device::result_type seed,
772 T lower_bound = std::numeric_limits<T>::lowest(),
773 T upper_bound = std::numeric_limits<T>::max())
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000774{
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +0000775 constexpr bool is_fp_16bit = std::is_same<T, half>::value || std::is_same<T, bfloat16>::value;
776 constexpr bool is_integral = std::is_integral<T>::value && !is_fp_16bit;
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000777
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100778 using fp_dist_type = typename std::conditional<is_fp_16bit, arm_compute::utils::uniform_real_distribution_16bit<T>,
779 std::uniform_real_distribution<T>>::type;
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000780 using dist_type = typename std::conditional<is_integral, std::uniform_int_distribution<T>, fp_dist_type>::type;
781
782 std::mt19937 gen(seed);
783 dist_type dist(lower_bound, upper_bound);
784
785 map(tensor, true);
786
787 Window window;
788 window.use_tensor_dimensions(tensor.info()->tensor_shape());
789
790 Iterator it(&tensor, window);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100791 execute_window_loop(
792 window, [&](const Coordinates &) { *reinterpret_cast<T *>(it.ptr()) = dist(gen); }, it);
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000793
794 unmap(tensor);
795}
796
797template <typename T, typename TensorType>
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100798void fill_random_tensor(TensorType &tensor,
799 T lower_bound = std::numeric_limits<T>::lowest(),
800 T upper_bound = std::numeric_limits<T>::max())
Giorgio Arena82c0d7f2020-12-15 17:15:43 +0000801{
802 std::random_device rd;
803 fill_random_tensor(tensor, rd(), lower_bound, upper_bound);
804}
805
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100806template <typename T>
Gian Marco0bc5a252017-12-04 13:55:08 +0000807void init_sgemm_output(T &dst, T &src0, T &src1, arm_compute::DataType dt)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100808{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100809 dst.allocator()->init(TensorInfo(
810 TensorShape(src1.info()->dimension(0), src0.info()->dimension(1), src0.info()->dimension(2)), 1, dt));
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100811}
Gian Marco5ca74092018-02-08 16:21:54 +0000812/** This function returns the amount of memory free reading from /proc/meminfo
813 *
814 * @return The free memory in kB
815 */
816uint64_t get_mem_free_from_meminfo();
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100817
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000818/** Compare two tensors
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100819 *
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000820 * @param[in] tensor1 First tensor to be compared.
821 * @param[in] tensor2 Second tensor to be compared.
822 * @param[in] tolerance Tolerance used for the comparison.
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100823 *
824 * @return The number of mismatches
825 */
826template <typename T>
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000827int compare_tensor(ITensor &tensor1, ITensor &tensor2, T tolerance)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100828{
829 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(&tensor1, &tensor2);
830 ARM_COMPUTE_ERROR_ON_MISMATCHING_SHAPES(&tensor1, &tensor2);
831
832 int num_mismatches = 0;
833 Window window;
834 window.use_tensor_dimensions(tensor1.info()->tensor_shape());
835
836 map(tensor1, true);
837 map(tensor2, true);
Pablo Tello32521432018-11-15 14:43:10 +0000838
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100839 Iterator itensor1(&tensor1, window);
840 Iterator itensor2(&tensor2, window);
841
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100842 execute_window_loop(
843 window,
844 [&](const Coordinates &)
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100845 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100846 if (std::abs(*reinterpret_cast<T *>(itensor1.ptr()) - *reinterpret_cast<T *>(itensor2.ptr())) > tolerance)
847 {
848 ++num_mismatches;
849 }
850 },
851 itensor1, itensor2);
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100852
853 unmap(itensor1);
854 unmap(itensor2);
855
856 return num_mismatches;
857}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100858} // namespace utils
859} // namespace arm_compute
860#endif /* __UTILS_UTILS_H__*/