blob: 638a1c20eecad7e40813b30efefd598f31b5ded9 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Giorgio Arena68e29da2021-02-08 16:31:10 +00002 * Copyright (c) 2017-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_TEST_VALIDATION_H
25#define ARM_COMPUTE_TEST_VALIDATION_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010027#include "arm_compute/core/IArray.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/Types.h"
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010029#include "support/ToolchainSupport.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/IAccessor.h"
31#include "tests/SimpleTensor.h"
John Richardsonf89a49f2017-09-05 11:21:56 +010032#include "tests/Types.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/Utils.h"
34#include "tests/framework/Asserts.h"
35#include "tests/framework/Exceptions.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010036#include "utils/TypePrinter.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010038#include <iomanip>
39#include <ios>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040#include <vector>
41
42namespace arm_compute
43{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044namespace test
45{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046namespace validation
47{
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010048/** Class reprensenting an absolute tolerance value. */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010050class AbsoluteTolerance
51{
52public:
53 /** Underlying type. */
54 using value_type = T;
55
56 /* Default constructor.
57 *
58 * Initialises the tolerance to 0.
59 */
60 AbsoluteTolerance() = default;
61
62 /** Constructor.
63 *
64 * @param[in] value Absolute tolerance value.
65 */
66 explicit constexpr AbsoluteTolerance(T value)
67 : _value{ value }
68 {
69 }
70
Alex Gildayc357c472018-03-21 13:54:09 +000071 /** Implicit conversion to the underlying type.
72 *
73 * @return the underlying type.
74 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010075 constexpr operator T() const
76 {
77 return _value;
78 }
79
80private:
81 T _value{ std::numeric_limits<T>::epsilon() };
82};
83
84/** Class reprensenting a relative tolerance value. */
steniu013e05e4e2017-08-25 17:18:01 +010085template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010086class RelativeTolerance
87{
88public:
89 /** Underlying type. */
steniu013e05e4e2017-08-25 17:18:01 +010090 using value_type = T;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010091
92 /* Default constructor.
93 *
94 * Initialises the tolerance to 0.
95 */
96 RelativeTolerance() = default;
97
98 /** Constructor.
99 *
100 * @param[in] value Relative tolerance value.
101 */
102 explicit constexpr RelativeTolerance(value_type value)
103 : _value{ value }
104 {
105 }
106
Alex Gildayc357c472018-03-21 13:54:09 +0000107 /** Implicit conversion to the underlying type.
108 *
109 * @return the underlying type.
110 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100111 constexpr operator value_type() const
112 {
113 return _value;
114 }
115
116private:
steniu013e05e4e2017-08-25 17:18:01 +0100117 value_type _value{ std::numeric_limits<T>::epsilon() };
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100118};
119
120/** Print AbsoluteTolerance type. */
121template <typename T>
122inline ::std::ostream &operator<<(::std::ostream &os, const AbsoluteTolerance<T> &tolerance)
123{
124 os << static_cast<typename AbsoluteTolerance<T>::value_type>(tolerance);
125
126 return os;
127}
128
129/** Print RelativeTolerance type. */
steniu013e05e4e2017-08-25 17:18:01 +0100130template <typename T>
131inline ::std::ostream &operator<<(::std::ostream &os, const RelativeTolerance<T> &tolerance)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100132{
steniu013e05e4e2017-08-25 17:18:01 +0100133 os << static_cast<typename RelativeTolerance<T>::value_type>(tolerance);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100134
135 return os;
136}
137
138template <typename T>
Giorgio Arena563494c2018-04-30 17:29:41 +0100139bool compare_dimensions(const Dimensions<T> &dimensions1, const Dimensions<T> &dimensions2, const DataLayout &data_layout = DataLayout::NCHW)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140{
Giorgio Arena563494c2018-04-30 17:29:41 +0100141 ARM_COMPUTE_ERROR_ON(data_layout == DataLayout::UNKNOWN);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142
Giorgio Arena5c002ec2021-10-12 16:00:40 +0100143 if(data_layout != DataLayout::NHWC)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100145 if(dimensions1.num_dimensions() != dimensions2.num_dimensions())
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146 {
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100147 return false;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100148 }
Giorgio Arena563494c2018-04-30 17:29:41 +0100149
150 for(unsigned int i = 0; i < dimensions1.num_dimensions(); ++i)
151 {
152 if(dimensions1[i] != dimensions2[i])
153 {
154 return false;
155 }
156 }
157 }
158 else
159 {
SiCong Li37d65e42020-11-06 09:55:04 +0000160 // In case a 1D/2D shape becomes 3D after permutation, the permuted tensor will have two/one dimension(s) more and the first (two) value(s) will be 1
161 // clang-format off
Gian Marco Iodice40471d12021-04-26 08:39:28 +0100162 const auto max_dims = std::max(dimensions1.num_dimensions(), dimensions2.num_dimensions());
163 for(unsigned int i = 3; i < max_dims; ++i)
Giorgio Arena563494c2018-04-30 17:29:41 +0100164 {
Gian Marco Iodice40471d12021-04-26 08:39:28 +0100165 if(dimensions1[i] != dimensions2[i])
166 {
167 return false;
168 }
Giorgio Arena563494c2018-04-30 17:29:41 +0100169 }
SiCong Li37d65e42020-11-06 09:55:04 +0000170 // clang-format on
Giorgio Arena563494c2018-04-30 17:29:41 +0100171
172 if((dimensions1[0] != dimensions2[2]) || (dimensions1[1] != dimensions2[0]) || (dimensions1[2] != dimensions2[1]))
173 {
174 return false;
175 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176 }
177
178 return true;
179}
180
181/** Validate valid regions.
182 *
183 * - Dimensionality has to be the same.
184 * - Anchors have to match.
185 * - Shapes have to match.
186 */
187void validate(const arm_compute::ValidRegion &region, const arm_compute::ValidRegion &reference);
188
189/** Validate padding.
190 *
191 * Padding on all sides has to be the same.
192 */
193void validate(const arm_compute::PaddingSize &padding, const arm_compute::PaddingSize &reference);
194
Sanghoon Leed7ba5392017-12-13 11:28:50 +0000195/** Validate padding.
196 *
197 * Padding on all sides has to be the same.
198 */
199void validate(const arm_compute::PaddingSize &padding, const arm_compute::PaddingSize &width_reference, const arm_compute::PaddingSize &height_reference);
200
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100201/** Validate tensors.
202 *
203 * - Dimensionality has to be the same.
204 * - All values have to match.
205 *
206 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
207 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
208 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
209 * other test cases.
210 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100211template <typename T, typename U = AbsoluteTolerance<T>>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000212void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value = U(), float tolerance_number = 0.f, float absolute_tolerance_value = 0.f);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100213
214/** Validate tensors with valid region.
215 *
216 * - Dimensionality has to be the same.
217 * - All values have to match.
218 *
219 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
220 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
221 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
222 * other test cases.
223 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100224template <typename T, typename U = AbsoluteTolerance<T>>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000225void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value = U(), float tolerance_number = 0.f, float absolute_tolerance_value = 0.f);
Isabella Gottardi62031532017-07-04 11:21:28 +0100226
Isabella Gottardi83be7452017-08-29 13:47:03 +0100227/** Validate tensors with valid mask.
228 *
229 * - Dimensionality has to be the same.
230 * - All values have to match.
231 *
232 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
233 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
234 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
235 * other test cases.
236 */
237template <typename T, typename U = AbsoluteTolerance<T>>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000238void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const SimpleTensor<T> &valid_mask, U tolerance_value = U(), float tolerance_number = 0.f,
239 float absolute_tolerance_value = 0.f);
Isabella Gottardi83be7452017-08-29 13:47:03 +0100240
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100241/** Validate tensors against constant value.
242 *
243 * - All values have to match.
244 */
245void validate(const IAccessor &tensor, const void *reference_value);
246
247/** Validate border against a constant value.
248 *
249 * - All border values have to match the specified value if mode is CONSTANT.
250 * - All border values have to be replicated if mode is REPLICATE.
251 * - Nothing is validated for mode UNDEFINED.
252 */
253void validate(const IAccessor &tensor, BorderSize border_size, const BorderMode &border_mode, const void *border_value);
254
255/** Validate classified labels against expected ones.
256 *
257 * - All values should match
258 */
259void validate(std::vector<unsigned int> classified_labels, std::vector<unsigned int> expected_labels);
steniu01960b0842017-06-23 11:44:34 +0100260
261/** Validate float value.
262 *
263 * - All values should match
264 */
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100265template <typename T, typename U = AbsoluteTolerance<T>>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100266bool validate(T target, T reference, U tolerance = AbsoluteTolerance<T>());
267
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100268template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100269struct compare_base
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100270{
Alex Gildayc357c472018-03-21 13:54:09 +0000271 /** Construct a comparison object.
272 *
273 * @param[in] target Target value.
274 * @param[in] reference Reference value.
275 * @param[in] tolerance Allowed tolerance.
276 */
John Richardson9c450cc2017-11-22 12:00:41 +0000277 compare_base(typename T::value_type target, typename T::value_type reference, T tolerance = T(0))
278 : _target{ target }, _reference{ reference }, _tolerance{ tolerance }
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100279 {
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100280 }
281
Alex Gildayc357c472018-03-21 13:54:09 +0000282 typename T::value_type _target{}; /**< Target value */
283 typename T::value_type _reference{}; /**< Reference value */
284 T _tolerance{}; /**< Tolerance value */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100285};
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100286
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100287template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100288struct compare;
289
Alex Gildayc357c472018-03-21 13:54:09 +0000290/** Compare values with an absolute tolerance */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100291template <typename U>
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100292struct compare<AbsoluteTolerance<U>> : public compare_base<AbsoluteTolerance<U>>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100293{
294 using compare_base<AbsoluteTolerance<U>>::compare_base;
295
Alex Gildayc357c472018-03-21 13:54:09 +0000296 /** Perform comparison */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100297 operator bool() const
298 {
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100299 if(!support::cpp11::isfinite(this->_target) || !support::cpp11::isfinite(this->_reference))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100300 {
301 return false;
302 }
303 else if(this->_target == this->_reference)
304 {
305 return true;
306 }
307
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100308 using comparison_type = typename std::conditional<std::is_integral<U>::value, int64_t, U>::type;
309
310 const comparison_type abs_difference(std::abs(static_cast<comparison_type>(this->_target) - static_cast<comparison_type>(this->_reference)));
311
312 return abs_difference <= static_cast<comparison_type>(this->_tolerance);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100313 }
314};
315
Alex Gildayc357c472018-03-21 13:54:09 +0000316/** Compare values with a relative tolerance */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100317template <typename U>
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100318struct compare<RelativeTolerance<U>> : public compare_base<RelativeTolerance<U>>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100319{
steniu013e05e4e2017-08-25 17:18:01 +0100320 using compare_base<RelativeTolerance<U>>::compare_base;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100321
Alex Gildayc357c472018-03-21 13:54:09 +0000322 /** Perform comparison */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100323 operator bool() const
324 {
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100325 if(!support::cpp11::isfinite(this->_target) || !support::cpp11::isfinite(this->_reference))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100326 {
327 return false;
328 }
steniu013e05e4e2017-08-25 17:18:01 +0100329 else if(this->_target == this->_reference)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100330 {
331 return true;
332 }
333
Moritz Pflanzerff1c3602017-09-22 12:41:25 +0100334 const U epsilon = (std::is_same<half, typename std::remove_cv<U>::type>::value || (this->_reference == 0)) ? static_cast<U>(0.01) : static_cast<U>(1e-05);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100335
steniu013e05e4e2017-08-25 17:18:01 +0100336 if(std::abs(static_cast<double>(this->_reference) - static_cast<double>(this->_target)) <= epsilon)
337 {
338 return true;
339 }
340 else
341 {
342 if(static_cast<double>(this->_reference) == 0.0f) // We have checked whether _reference and _target is closing. If _reference is 0 but not closed to _target, it should return false
343 {
344 return false;
345 }
346
Isabella Gottardi8df6c452018-03-12 13:26:28 +0000347 const double relative_change = std::abs((static_cast<double>(this->_target) - static_cast<double>(this->_reference)) / this->_reference);
steniu013e05e4e2017-08-25 17:18:01 +0100348
349 return relative_change <= static_cast<U>(this->_tolerance);
350 }
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100351 }
352};
353
354template <typename T, typename U>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000355void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value, float tolerance_number, float absolute_tolerance_value)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100356{
357 // Validate with valid region covering the entire shape
Giorgio Arena563494c2018-04-30 17:29:41 +0100358 validate(tensor, reference, shape_to_valid_region(reference.shape()), tolerance_value, tolerance_number, absolute_tolerance_value);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100359}
360
John Richardson9c450cc2017-11-22 12:00:41 +0000361template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type>
John Richardsondd715f22017-09-18 16:10:48 +0100362void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value, float tolerance_number)
363{
364 // Validate with valid region covering the entire shape
Giorgio Arena563494c2018-04-30 17:29:41 +0100365 validate_wrap(tensor, reference, shape_to_valid_region(reference.shape()), tolerance_value, tolerance_number);
John Richardsondd715f22017-09-18 16:10:48 +0100366}
367
368template <typename T, typename U>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000369void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value, float tolerance_number, float absolute_tolerance_value)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100370{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000371 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
372 {
373 return;
374 }
375
Michalis Spyroufae513c2019-10-16 17:41:33 +0100376 uint64_t num_mismatches = 0;
377 uint64_t num_elements = 0;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100378
379 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
380 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
381
382 if(reference.format() != Format::UNKNOWN)
383 {
384 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
385 }
386
387 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
Giorgio Arena563494c2018-04-30 17:29:41 +0100388 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape(), tensor.data_layout()), framework::LogLevel::ERRORS);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100389
390 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
391 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
392
393 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
394 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
395 {
396 const Coordinates id = index2coord(reference.shape(), element_idx);
397
Giorgio Arena563494c2018-04-30 17:29:41 +0100398 Coordinates target_id(id);
399 if(tensor.data_layout() == DataLayout::NHWC)
400 {
401 permute(target_id, PermutationVector(2U, 0U, 1U));
402 }
403
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100404 if(is_in_valid_region(valid_region, id))
405 {
406 // Iterate over all channels within one element
407 for(int c = 0; c < min_channels; ++c)
408 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100409 const T &target_value = reinterpret_cast<const T *>(tensor(target_id))[c];
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100410 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
411
Michalis Spyrou23fe7c22018-02-26 10:42:01 +0000412 if(!compare<U>(target_value, reference_value, tolerance_value))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100413 {
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000414 if(absolute_tolerance_value != 0.f)
415 {
416 const AbsoluteTolerance<float> abs_tolerance(absolute_tolerance_value);
417 if(compare<AbsoluteTolerance<float>>(target_value, reference_value, abs_tolerance))
418 {
419 continue;
420 }
421 }
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100422 ARM_COMPUTE_TEST_INFO("id = " << id);
423 ARM_COMPUTE_TEST_INFO("channel = " << c);
424 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
425 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
426 ARM_COMPUTE_TEST_INFO("tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance_value)));
steniu01172c58d2017-08-31 13:49:08 +0100427 framework::ARM_COMPUTE_PRINT_INFO();
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100428
429 ++num_mismatches;
430 }
431
432 ++num_elements;
433 }
434 }
435 }
436
Michalis Spyroufae513c2019-10-16 17:41:33 +0100437 if(num_elements != 0)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100438 {
Michalis Spyroufae513c2019-10-16 17:41:33 +0100439 const uint64_t absolute_tolerance_number = tolerance_number * num_elements;
440 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100441
442 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
Abe Mbise1b993382017-12-19 13:51:59 +0000443 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number * 100 << "%)");
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100444 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100445 }
446}
Giorgio Arenafc2817d2017-06-27 17:26:37 +0100447
John Richardson9c450cc2017-11-22 12:00:41 +0000448template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type>
John Richardsondd715f22017-09-18 16:10:48 +0100449void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value, float tolerance_number)
450{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000451 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
452 {
453 return;
454 }
455
Michalis Spyroufae513c2019-10-16 17:41:33 +0100456 uint64_t num_mismatches = 0;
457 uint64_t num_elements = 0;
John Richardsondd715f22017-09-18 16:10:48 +0100458
459 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
460 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
461
462 if(reference.format() != Format::UNKNOWN)
463 {
464 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
465 }
466
467 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
Giorgio Arena563494c2018-04-30 17:29:41 +0100468 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape(), tensor.data_layout()), framework::LogLevel::ERRORS);
John Richardsondd715f22017-09-18 16:10:48 +0100469
470 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
471 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
472
473 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
474 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
475 {
476 const Coordinates id = index2coord(reference.shape(), element_idx);
477
Giorgio Arena563494c2018-04-30 17:29:41 +0100478 Coordinates target_id(id);
479 if(tensor.data_layout() == DataLayout::NHWC)
480 {
481 permute(target_id, PermutationVector(2U, 0U, 1U));
482 }
483
John Richardsondd715f22017-09-18 16:10:48 +0100484 if(is_in_valid_region(valid_region, id))
485 {
486 // Iterate over all channels within one element
487 for(int c = 0; c < min_channels; ++c)
488 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100489 const T &target_value = reinterpret_cast<const T *>(tensor(target_id))[c];
John Richardsondd715f22017-09-18 16:10:48 +0100490 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
491
492 bool equal = compare<U>(target_value, reference_value, tolerance_value);
493
John Richardson9c450cc2017-11-22 12:00:41 +0000494 // check for wrapping
John Richardsondd715f22017-09-18 16:10:48 +0100495 if(!equal)
496 {
John Richardson9c450cc2017-11-22 12:00:41 +0000497 if(!support::cpp11::isfinite(target_value) || !support::cpp11::isfinite(reference_value))
498 {
499 equal = false;
500 }
501 else
502 {
503 using limits_type = typename std::make_unsigned<T>::type;
504
505 uint64_t max = std::numeric_limits<limits_type>::max();
506 uint64_t abs_sum = std::abs(static_cast<int64_t>(target_value)) + std::abs(static_cast<int64_t>(reference_value));
507 uint64_t wrap_difference = max - abs_sum;
508
509 equal = wrap_difference < static_cast<uint64_t>(tolerance_value);
510 }
John Richardsondd715f22017-09-18 16:10:48 +0100511 }
512
513 if(!equal)
514 {
515 ARM_COMPUTE_TEST_INFO("id = " << id);
516 ARM_COMPUTE_TEST_INFO("channel = " << c);
517 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
518 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
John Richardson9c450cc2017-11-22 12:00:41 +0000519 ARM_COMPUTE_TEST_INFO("wrap_tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance_value)));
John Richardsondd715f22017-09-18 16:10:48 +0100520 framework::ARM_COMPUTE_PRINT_INFO();
521
522 ++num_mismatches;
523 }
524
525 ++num_elements;
526 }
527 }
528 }
529
Michalis Spyroufae513c2019-10-16 17:41:33 +0100530 if(num_elements != 0)
John Richardsondd715f22017-09-18 16:10:48 +0100531 {
Michalis Spyroufae513c2019-10-16 17:41:33 +0100532 const uint64_t absolute_tolerance_number = tolerance_number * num_elements;
533 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
John Richardsondd715f22017-09-18 16:10:48 +0100534
535 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
Abe Mbise1b993382017-12-19 13:51:59 +0000536 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number * 100 << "%)");
John Richardsondd715f22017-09-18 16:10:48 +0100537 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
538 }
539}
540
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100541template <typename T, typename U>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000542void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const SimpleTensor<T> &valid_mask, U tolerance_value, float tolerance_number, float absolute_tolerance_value)
Isabella Gottardi83be7452017-08-29 13:47:03 +0100543{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000544 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
545 {
546 return;
547 }
548
Michalis Spyroufae513c2019-10-16 17:41:33 +0100549 uint64_t num_mismatches = 0;
550 uint64_t num_elements = 0;
Isabella Gottardi83be7452017-08-29 13:47:03 +0100551
552 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
553 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
554
555 if(reference.format() != Format::UNKNOWN)
556 {
557 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
558 }
559
560 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
Giorgio Arena563494c2018-04-30 17:29:41 +0100561 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape(), tensor.data_layout()), framework::LogLevel::ERRORS);
Isabella Gottardi83be7452017-08-29 13:47:03 +0100562
563 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
564 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
565
566 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
567 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
568 {
569 const Coordinates id = index2coord(reference.shape(), element_idx);
570
Giorgio Arena563494c2018-04-30 17:29:41 +0100571 Coordinates target_id(id);
572 if(tensor.data_layout() == DataLayout::NHWC)
573 {
574 permute(target_id, PermutationVector(2U, 0U, 1U));
575 }
576
Isabella Gottardi83be7452017-08-29 13:47:03 +0100577 if(valid_mask[element_idx] == 1)
578 {
579 // Iterate over all channels within one element
580 for(int c = 0; c < min_channels; ++c)
581 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100582 const T &target_value = reinterpret_cast<const T *>(tensor(target_id))[c];
Isabella Gottardi83be7452017-08-29 13:47:03 +0100583 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
584
585 if(!compare<U>(target_value, reference_value, tolerance_value))
586 {
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000587 if(absolute_tolerance_value != 0.f)
588 {
589 const AbsoluteTolerance<float> abs_tolerance(absolute_tolerance_value);
590 if(compare<AbsoluteTolerance<float>>(target_value, reference_value, abs_tolerance))
591 {
592 continue;
593 }
594 }
Isabella Gottardi83be7452017-08-29 13:47:03 +0100595 ARM_COMPUTE_TEST_INFO("id = " << id);
596 ARM_COMPUTE_TEST_INFO("channel = " << c);
597 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
598 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
599 ARM_COMPUTE_TEST_INFO("tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance_value)));
600 framework::ARM_COMPUTE_PRINT_INFO();
601
602 ++num_mismatches;
603 }
604
605 ++num_elements;
606 }
607 }
608 else
609 {
610 ++num_elements;
611 }
612 }
613
Michalis Spyroufae513c2019-10-16 17:41:33 +0100614 if(num_elements != 0)
Isabella Gottardi83be7452017-08-29 13:47:03 +0100615 {
Michalis Spyroufae513c2019-10-16 17:41:33 +0100616 const uint64_t absolute_tolerance_number = tolerance_number * num_elements;
617 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
Isabella Gottardi83be7452017-08-29 13:47:03 +0100618
619 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
Abe Mbise1b993382017-12-19 13:51:59 +0000620 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number * 100 << "%)");
Isabella Gottardi83be7452017-08-29 13:47:03 +0100621 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
622 }
623}
624
625template <typename T, typename U>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100626bool validate(T target, T reference, U tolerance)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100627{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000628 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
629 {
630 return true;
631 }
632
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100633 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference));
634 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target));
635 ARM_COMPUTE_TEST_INFO("tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance)));
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100636
637 const bool equal = compare<U>(target, reference, tolerance);
638
639 ARM_COMPUTE_EXPECT(equal, framework::LogLevel::ERRORS);
640
641 return equal;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100642}
John Richardsonf89a49f2017-09-05 11:21:56 +0100643
644template <typename T, typename U>
645void validate_min_max_loc(const MinMaxLocationValues<T> &target, const MinMaxLocationValues<U> &reference)
646{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000647 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
648 {
649 return;
650 }
651
John Richardsonf89a49f2017-09-05 11:21:56 +0100652 ARM_COMPUTE_EXPECT_EQUAL(target.min, reference.min, framework::LogLevel::ERRORS);
653 ARM_COMPUTE_EXPECT_EQUAL(target.max, reference.max, framework::LogLevel::ERRORS);
654
655 ARM_COMPUTE_EXPECT_EQUAL(target.min_loc.size(), reference.min_loc.size(), framework::LogLevel::ERRORS);
656 ARM_COMPUTE_EXPECT_EQUAL(target.max_loc.size(), reference.max_loc.size(), framework::LogLevel::ERRORS);
657
658 for(uint32_t i = 0; i < target.min_loc.size(); ++i)
659 {
660 const auto same_coords = std::find_if(reference.min_loc.begin(), reference.min_loc.end(), [&target, i](Coordinates2D coord)
661 {
662 return coord.x == target.min_loc.at(i).x && coord.y == target.min_loc.at(i).y;
663 });
664
665 ARM_COMPUTE_EXPECT(same_coords != reference.min_loc.end(), framework::LogLevel::ERRORS);
666 }
667
668 for(uint32_t i = 0; i < target.max_loc.size(); ++i)
669 {
670 const auto same_coords = std::find_if(reference.max_loc.begin(), reference.max_loc.end(), [&target, i](Coordinates2D coord)
671 {
672 return coord.x == target.max_loc.at(i).x && coord.y == target.max_loc.at(i).y;
673 });
674
675 ARM_COMPUTE_EXPECT(same_coords != reference.max_loc.end(), framework::LogLevel::ERRORS);
676 }
677}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100678} // namespace validation
679} // namespace test
680} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000681#endif /* ARM_COMPUTE_TEST_REFERENCE_VALIDATION_H */