blob: c2df1c31c0b30c510babbea296cc292bdcc20458 [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 Arena563494c2018-04-30 17:29:41 +0100143 if(data_layout == DataLayout::NCHW)
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 {
160 // In case a 2D shape becomes 3D after permutation, the permuted tensor will have one dimension more and the first value will be 1
161 if((dimensions1.num_dimensions() != dimensions2.num_dimensions()) && ((dimensions1.num_dimensions() != (dimensions2.num_dimensions() + 1)) || (dimensions1.x() != 1)))
162 {
163 return false;
164 }
165
166 if((dimensions1[0] != dimensions2[2]) || (dimensions1[1] != dimensions2[0]) || (dimensions1[2] != dimensions2[1]))
167 {
168 return false;
169 }
170
171 for(unsigned int i = 3; i < dimensions1.num_dimensions(); ++i)
172 {
173 if(dimensions1[i] != dimensions2[i])
174 {
175 return false;
176 }
177 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 }
179
180 return true;
181}
182
183/** Validate valid regions.
184 *
185 * - Dimensionality has to be the same.
186 * - Anchors have to match.
187 * - Shapes have to match.
188 */
189void validate(const arm_compute::ValidRegion &region, const arm_compute::ValidRegion &reference);
190
191/** Validate padding.
192 *
193 * Padding on all sides has to be the same.
194 */
195void validate(const arm_compute::PaddingSize &padding, const arm_compute::PaddingSize &reference);
196
Sanghoon Leed7ba5392017-12-13 11:28:50 +0000197/** Validate padding.
198 *
199 * Padding on all sides has to be the same.
200 */
201void validate(const arm_compute::PaddingSize &padding, const arm_compute::PaddingSize &width_reference, const arm_compute::PaddingSize &height_reference);
202
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100203/** Validate tensors.
204 *
205 * - Dimensionality has to be the same.
206 * - All values have to match.
207 *
208 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
209 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
210 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
211 * other test cases.
212 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100213template <typename T, typename U = AbsoluteTolerance<T>>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000214void 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 +0100215
216/** Validate tensors with valid region.
217 *
218 * - Dimensionality has to be the same.
219 * - All values have to match.
220 *
221 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
222 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
223 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
224 * other test cases.
225 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100226template <typename T, typename U = AbsoluteTolerance<T>>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000227void 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 +0100228
Isabella Gottardi83be7452017-08-29 13:47:03 +0100229/** Validate tensors with valid mask.
230 *
231 * - Dimensionality has to be the same.
232 * - All values have to match.
233 *
234 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
235 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
236 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
237 * other test cases.
238 */
239template <typename T, typename U = AbsoluteTolerance<T>>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000240void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const SimpleTensor<T> &valid_mask, U tolerance_value = U(), float tolerance_number = 0.f,
241 float absolute_tolerance_value = 0.f);
Isabella Gottardi83be7452017-08-29 13:47:03 +0100242
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100243/** Validate tensors against constant value.
244 *
245 * - All values have to match.
246 */
247void validate(const IAccessor &tensor, const void *reference_value);
248
249/** Validate border against a constant value.
250 *
251 * - All border values have to match the specified value if mode is CONSTANT.
252 * - All border values have to be replicated if mode is REPLICATE.
253 * - Nothing is validated for mode UNDEFINED.
254 */
255void validate(const IAccessor &tensor, BorderSize border_size, const BorderMode &border_mode, const void *border_value);
256
257/** Validate classified labels against expected ones.
258 *
259 * - All values should match
260 */
261void validate(std::vector<unsigned int> classified_labels, std::vector<unsigned int> expected_labels);
steniu01960b0842017-06-23 11:44:34 +0100262
263/** Validate float value.
264 *
265 * - All values should match
266 */
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100267template <typename T, typename U = AbsoluteTolerance<T>>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100268bool validate(T target, T reference, U tolerance = AbsoluteTolerance<T>());
269
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100270template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100271struct compare_base
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100272{
Alex Gildayc357c472018-03-21 13:54:09 +0000273 /** Construct a comparison object.
274 *
275 * @param[in] target Target value.
276 * @param[in] reference Reference value.
277 * @param[in] tolerance Allowed tolerance.
278 */
John Richardson9c450cc2017-11-22 12:00:41 +0000279 compare_base(typename T::value_type target, typename T::value_type reference, T tolerance = T(0))
280 : _target{ target }, _reference{ reference }, _tolerance{ tolerance }
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100281 {
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100282 }
283
Alex Gildayc357c472018-03-21 13:54:09 +0000284 typename T::value_type _target{}; /**< Target value */
285 typename T::value_type _reference{}; /**< Reference value */
286 T _tolerance{}; /**< Tolerance value */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100287};
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100288
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100289template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100290struct compare;
291
Alex Gildayc357c472018-03-21 13:54:09 +0000292/** Compare values with an absolute tolerance */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100293template <typename U>
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100294struct compare<AbsoluteTolerance<U>> : public compare_base<AbsoluteTolerance<U>>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100295{
296 using compare_base<AbsoluteTolerance<U>>::compare_base;
297
Alex Gildayc357c472018-03-21 13:54:09 +0000298 /** Perform comparison */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100299 operator bool() const
300 {
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100301 if(!support::cpp11::isfinite(this->_target) || !support::cpp11::isfinite(this->_reference))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100302 {
303 return false;
304 }
305 else if(this->_target == this->_reference)
306 {
307 return true;
308 }
309
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100310 using comparison_type = typename std::conditional<std::is_integral<U>::value, int64_t, U>::type;
311
312 const comparison_type abs_difference(std::abs(static_cast<comparison_type>(this->_target) - static_cast<comparison_type>(this->_reference)));
313
314 return abs_difference <= static_cast<comparison_type>(this->_tolerance);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100315 }
316};
317
Alex Gildayc357c472018-03-21 13:54:09 +0000318/** Compare values with a relative tolerance */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100319template <typename U>
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100320struct compare<RelativeTolerance<U>> : public compare_base<RelativeTolerance<U>>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100321{
steniu013e05e4e2017-08-25 17:18:01 +0100322 using compare_base<RelativeTolerance<U>>::compare_base;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100323
Alex Gildayc357c472018-03-21 13:54:09 +0000324 /** Perform comparison */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100325 operator bool() const
326 {
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100327 if(!support::cpp11::isfinite(this->_target) || !support::cpp11::isfinite(this->_reference))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100328 {
329 return false;
330 }
steniu013e05e4e2017-08-25 17:18:01 +0100331 else if(this->_target == this->_reference)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100332 {
333 return true;
334 }
335
Moritz Pflanzerff1c3602017-09-22 12:41:25 +0100336 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 +0100337
steniu013e05e4e2017-08-25 17:18:01 +0100338 if(std::abs(static_cast<double>(this->_reference) - static_cast<double>(this->_target)) <= epsilon)
339 {
340 return true;
341 }
342 else
343 {
344 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
345 {
346 return false;
347 }
348
Isabella Gottardi8df6c452018-03-12 13:26:28 +0000349 const double relative_change = std::abs((static_cast<double>(this->_target) - static_cast<double>(this->_reference)) / this->_reference);
steniu013e05e4e2017-08-25 17:18:01 +0100350
351 return relative_change <= static_cast<U>(this->_tolerance);
352 }
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100353 }
354};
355
356template <typename T, typename U>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000357void 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 +0100358{
359 // Validate with valid region covering the entire shape
Giorgio Arena563494c2018-04-30 17:29:41 +0100360 validate(tensor, reference, shape_to_valid_region(reference.shape()), tolerance_value, tolerance_number, absolute_tolerance_value);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100361}
362
John Richardson9c450cc2017-11-22 12:00:41 +0000363template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type>
John Richardsondd715f22017-09-18 16:10:48 +0100364void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value, float tolerance_number)
365{
366 // Validate with valid region covering the entire shape
Giorgio Arena563494c2018-04-30 17:29:41 +0100367 validate_wrap(tensor, reference, shape_to_valid_region(reference.shape()), tolerance_value, tolerance_number);
John Richardsondd715f22017-09-18 16:10:48 +0100368}
369
370template <typename T, typename U>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000371void 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 +0100372{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000373 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
374 {
375 return;
376 }
377
Michalis Spyroufae513c2019-10-16 17:41:33 +0100378 uint64_t num_mismatches = 0;
379 uint64_t num_elements = 0;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100380
381 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
382 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
383
384 if(reference.format() != Format::UNKNOWN)
385 {
386 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
387 }
388
389 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
Giorgio Arena563494c2018-04-30 17:29:41 +0100390 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape(), tensor.data_layout()), framework::LogLevel::ERRORS);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100391
392 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
393 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
394
395 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
396 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
397 {
398 const Coordinates id = index2coord(reference.shape(), element_idx);
399
Giorgio Arena563494c2018-04-30 17:29:41 +0100400 Coordinates target_id(id);
401 if(tensor.data_layout() == DataLayout::NHWC)
402 {
403 permute(target_id, PermutationVector(2U, 0U, 1U));
404 }
405
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100406 if(is_in_valid_region(valid_region, id))
407 {
408 // Iterate over all channels within one element
409 for(int c = 0; c < min_channels; ++c)
410 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100411 const T &target_value = reinterpret_cast<const T *>(tensor(target_id))[c];
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100412 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
413
Michalis Spyrou23fe7c22018-02-26 10:42:01 +0000414 if(!compare<U>(target_value, reference_value, tolerance_value))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100415 {
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000416 if(absolute_tolerance_value != 0.f)
417 {
418 const AbsoluteTolerance<float> abs_tolerance(absolute_tolerance_value);
419 if(compare<AbsoluteTolerance<float>>(target_value, reference_value, abs_tolerance))
420 {
421 continue;
422 }
423 }
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100424 ARM_COMPUTE_TEST_INFO("id = " << id);
425 ARM_COMPUTE_TEST_INFO("channel = " << c);
426 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
427 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
428 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 +0100429 framework::ARM_COMPUTE_PRINT_INFO();
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100430
431 ++num_mismatches;
432 }
433
434 ++num_elements;
435 }
436 }
437 }
438
Michalis Spyroufae513c2019-10-16 17:41:33 +0100439 if(num_elements != 0)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100440 {
Michalis Spyroufae513c2019-10-16 17:41:33 +0100441 const uint64_t absolute_tolerance_number = tolerance_number * num_elements;
442 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100443
444 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
Abe Mbise1b993382017-12-19 13:51:59 +0000445 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number * 100 << "%)");
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100446 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100447 }
448}
Giorgio Arenafc2817d2017-06-27 17:26:37 +0100449
John Richardson9c450cc2017-11-22 12:00:41 +0000450template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type>
John Richardsondd715f22017-09-18 16:10:48 +0100451void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value, float tolerance_number)
452{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000453 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
454 {
455 return;
456 }
457
Michalis Spyroufae513c2019-10-16 17:41:33 +0100458 uint64_t num_mismatches = 0;
459 uint64_t num_elements = 0;
John Richardsondd715f22017-09-18 16:10:48 +0100460
461 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
462 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
463
464 if(reference.format() != Format::UNKNOWN)
465 {
466 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
467 }
468
469 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
Giorgio Arena563494c2018-04-30 17:29:41 +0100470 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape(), tensor.data_layout()), framework::LogLevel::ERRORS);
John Richardsondd715f22017-09-18 16:10:48 +0100471
472 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
473 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
474
475 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
476 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
477 {
478 const Coordinates id = index2coord(reference.shape(), element_idx);
479
Giorgio Arena563494c2018-04-30 17:29:41 +0100480 Coordinates target_id(id);
481 if(tensor.data_layout() == DataLayout::NHWC)
482 {
483 permute(target_id, PermutationVector(2U, 0U, 1U));
484 }
485
John Richardsondd715f22017-09-18 16:10:48 +0100486 if(is_in_valid_region(valid_region, id))
487 {
488 // Iterate over all channels within one element
489 for(int c = 0; c < min_channels; ++c)
490 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100491 const T &target_value = reinterpret_cast<const T *>(tensor(target_id))[c];
John Richardsondd715f22017-09-18 16:10:48 +0100492 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
493
494 bool equal = compare<U>(target_value, reference_value, tolerance_value);
495
John Richardson9c450cc2017-11-22 12:00:41 +0000496 // check for wrapping
John Richardsondd715f22017-09-18 16:10:48 +0100497 if(!equal)
498 {
John Richardson9c450cc2017-11-22 12:00:41 +0000499 if(!support::cpp11::isfinite(target_value) || !support::cpp11::isfinite(reference_value))
500 {
501 equal = false;
502 }
503 else
504 {
505 using limits_type = typename std::make_unsigned<T>::type;
506
507 uint64_t max = std::numeric_limits<limits_type>::max();
508 uint64_t abs_sum = std::abs(static_cast<int64_t>(target_value)) + std::abs(static_cast<int64_t>(reference_value));
509 uint64_t wrap_difference = max - abs_sum;
510
511 equal = wrap_difference < static_cast<uint64_t>(tolerance_value);
512 }
John Richardsondd715f22017-09-18 16:10:48 +0100513 }
514
515 if(!equal)
516 {
517 ARM_COMPUTE_TEST_INFO("id = " << id);
518 ARM_COMPUTE_TEST_INFO("channel = " << c);
519 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
520 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
John Richardson9c450cc2017-11-22 12:00:41 +0000521 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 +0100522 framework::ARM_COMPUTE_PRINT_INFO();
523
524 ++num_mismatches;
525 }
526
527 ++num_elements;
528 }
529 }
530 }
531
Michalis Spyroufae513c2019-10-16 17:41:33 +0100532 if(num_elements != 0)
John Richardsondd715f22017-09-18 16:10:48 +0100533 {
Michalis Spyroufae513c2019-10-16 17:41:33 +0100534 const uint64_t absolute_tolerance_number = tolerance_number * num_elements;
535 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
John Richardsondd715f22017-09-18 16:10:48 +0100536
537 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
Abe Mbise1b993382017-12-19 13:51:59 +0000538 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number * 100 << "%)");
John Richardsondd715f22017-09-18 16:10:48 +0100539 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
540 }
541}
542
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100543template <typename T, typename U>
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000544void 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 +0100545{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000546 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
547 {
548 return;
549 }
550
Michalis Spyroufae513c2019-10-16 17:41:33 +0100551 uint64_t num_mismatches = 0;
552 uint64_t num_elements = 0;
Isabella Gottardi83be7452017-08-29 13:47:03 +0100553
554 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
555 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
556
557 if(reference.format() != Format::UNKNOWN)
558 {
559 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
560 }
561
562 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
Giorgio Arena563494c2018-04-30 17:29:41 +0100563 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape(), tensor.data_layout()), framework::LogLevel::ERRORS);
Isabella Gottardi83be7452017-08-29 13:47:03 +0100564
565 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
566 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
567
568 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
569 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
570 {
571 const Coordinates id = index2coord(reference.shape(), element_idx);
572
Giorgio Arena563494c2018-04-30 17:29:41 +0100573 Coordinates target_id(id);
574 if(tensor.data_layout() == DataLayout::NHWC)
575 {
576 permute(target_id, PermutationVector(2U, 0U, 1U));
577 }
578
Isabella Gottardi83be7452017-08-29 13:47:03 +0100579 if(valid_mask[element_idx] == 1)
580 {
581 // Iterate over all channels within one element
582 for(int c = 0; c < min_channels; ++c)
583 {
Giorgio Arena563494c2018-04-30 17:29:41 +0100584 const T &target_value = reinterpret_cast<const T *>(tensor(target_id))[c];
Isabella Gottardi83be7452017-08-29 13:47:03 +0100585 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
586
587 if(!compare<U>(target_value, reference_value, tolerance_value))
588 {
Michele Di Giorgioff6c2602018-02-26 15:22:16 +0000589 if(absolute_tolerance_value != 0.f)
590 {
591 const AbsoluteTolerance<float> abs_tolerance(absolute_tolerance_value);
592 if(compare<AbsoluteTolerance<float>>(target_value, reference_value, abs_tolerance))
593 {
594 continue;
595 }
596 }
Isabella Gottardi83be7452017-08-29 13:47:03 +0100597 ARM_COMPUTE_TEST_INFO("id = " << id);
598 ARM_COMPUTE_TEST_INFO("channel = " << c);
599 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
600 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
601 ARM_COMPUTE_TEST_INFO("tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance_value)));
602 framework::ARM_COMPUTE_PRINT_INFO();
603
604 ++num_mismatches;
605 }
606
607 ++num_elements;
608 }
609 }
610 else
611 {
612 ++num_elements;
613 }
614 }
615
Michalis Spyroufae513c2019-10-16 17:41:33 +0100616 if(num_elements != 0)
Isabella Gottardi83be7452017-08-29 13:47:03 +0100617 {
Michalis Spyroufae513c2019-10-16 17:41:33 +0100618 const uint64_t absolute_tolerance_number = tolerance_number * num_elements;
619 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
Isabella Gottardi83be7452017-08-29 13:47:03 +0100620
621 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
Abe Mbise1b993382017-12-19 13:51:59 +0000622 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number * 100 << "%)");
Isabella Gottardi83be7452017-08-29 13:47:03 +0100623 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
624 }
625}
626
627template <typename T, typename U>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100628bool validate(T target, T reference, U tolerance)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100629{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000630 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
631 {
632 return true;
633 }
634
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100635 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference));
636 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target));
637 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 +0100638
639 const bool equal = compare<U>(target, reference, tolerance);
640
641 ARM_COMPUTE_EXPECT(equal, framework::LogLevel::ERRORS);
642
643 return equal;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100644}
John Richardsonf89a49f2017-09-05 11:21:56 +0100645
646template <typename T, typename U>
647void validate_min_max_loc(const MinMaxLocationValues<T> &target, const MinMaxLocationValues<U> &reference)
648{
Giorgio Arena68e29da2021-02-08 16:31:10 +0000649 if(framework::Framework::get().configure_only() && framework::Framework::get().new_fixture_call())
650 {
651 return;
652 }
653
John Richardsonf89a49f2017-09-05 11:21:56 +0100654 ARM_COMPUTE_EXPECT_EQUAL(target.min, reference.min, framework::LogLevel::ERRORS);
655 ARM_COMPUTE_EXPECT_EQUAL(target.max, reference.max, framework::LogLevel::ERRORS);
656
657 ARM_COMPUTE_EXPECT_EQUAL(target.min_loc.size(), reference.min_loc.size(), framework::LogLevel::ERRORS);
658 ARM_COMPUTE_EXPECT_EQUAL(target.max_loc.size(), reference.max_loc.size(), framework::LogLevel::ERRORS);
659
660 for(uint32_t i = 0; i < target.min_loc.size(); ++i)
661 {
662 const auto same_coords = std::find_if(reference.min_loc.begin(), reference.min_loc.end(), [&target, i](Coordinates2D coord)
663 {
664 return coord.x == target.min_loc.at(i).x && coord.y == target.min_loc.at(i).y;
665 });
666
667 ARM_COMPUTE_EXPECT(same_coords != reference.min_loc.end(), framework::LogLevel::ERRORS);
668 }
669
670 for(uint32_t i = 0; i < target.max_loc.size(); ++i)
671 {
672 const auto same_coords = std::find_if(reference.max_loc.begin(), reference.max_loc.end(), [&target, i](Coordinates2D coord)
673 {
674 return coord.x == target.max_loc.at(i).x && coord.y == target.max_loc.at(i).y;
675 });
676
677 ARM_COMPUTE_EXPECT(same_coords != reference.max_loc.end(), framework::LogLevel::ERRORS);
678 }
679}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100680} // namespace validation
681} // namespace test
682} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000683#endif /* ARM_COMPUTE_TEST_REFERENCE_VALIDATION_H */