blob: 1f81d38acdd821cf8c0773e8a94c7b37310f2dff [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010024#ifndef __ARM_COMPUTE_TEST_VALIDATION_H__
25#define __ARM_COMPUTE_TEST_VALIDATION_H__
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010027#include "arm_compute/core/FixedPoint.h"
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010028#include "arm_compute/core/IArray.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Types.h"
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +010030#include "support/ToolchainSupport.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/IAccessor.h"
32#include "tests/SimpleTensor.h"
John Richardsonf89a49f2017-09-05 11:21:56 +010033#include "tests/Types.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010034#include "tests/Utils.h"
35#include "tests/framework/Asserts.h"
36#include "tests/framework/Exceptions.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010037#include "utils/TypePrinter.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010039#include <iomanip>
40#include <ios>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041#include <vector>
42
43namespace arm_compute
44{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045namespace test
46{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047namespace validation
48{
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010049/** Class reprensenting an absolute tolerance value. */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010050template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010051class AbsoluteTolerance
52{
53public:
54 /** Underlying type. */
55 using value_type = T;
56
57 /* Default constructor.
58 *
59 * Initialises the tolerance to 0.
60 */
61 AbsoluteTolerance() = default;
62
63 /** Constructor.
64 *
65 * @param[in] value Absolute tolerance value.
66 */
67 explicit constexpr AbsoluteTolerance(T value)
68 : _value{ value }
69 {
70 }
71
72 /** Implicit conversion to the underlying type. */
73 constexpr operator T() const
74 {
75 return _value;
76 }
77
78private:
79 T _value{ std::numeric_limits<T>::epsilon() };
80};
81
82/** Class reprensenting a relative tolerance value. */
steniu013e05e4e2017-08-25 17:18:01 +010083template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010084class RelativeTolerance
85{
86public:
87 /** Underlying type. */
steniu013e05e4e2017-08-25 17:18:01 +010088 using value_type = T;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010089
90 /* Default constructor.
91 *
92 * Initialises the tolerance to 0.
93 */
94 RelativeTolerance() = default;
95
96 /** Constructor.
97 *
98 * @param[in] value Relative tolerance value.
99 */
100 explicit constexpr RelativeTolerance(value_type value)
101 : _value{ value }
102 {
103 }
104
105 /** Implicit conversion to the underlying type. */
106 constexpr operator value_type() const
107 {
108 return _value;
109 }
110
111private:
steniu013e05e4e2017-08-25 17:18:01 +0100112 value_type _value{ std::numeric_limits<T>::epsilon() };
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100113};
114
115/** Print AbsoluteTolerance type. */
116template <typename T>
117inline ::std::ostream &operator<<(::std::ostream &os, const AbsoluteTolerance<T> &tolerance)
118{
119 os << static_cast<typename AbsoluteTolerance<T>::value_type>(tolerance);
120
121 return os;
122}
123
124/** Print RelativeTolerance type. */
steniu013e05e4e2017-08-25 17:18:01 +0100125template <typename T>
126inline ::std::ostream &operator<<(::std::ostream &os, const RelativeTolerance<T> &tolerance)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100127{
steniu013e05e4e2017-08-25 17:18:01 +0100128 os << static_cast<typename RelativeTolerance<T>::value_type>(tolerance);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100129
130 return os;
131}
132
133template <typename T>
134bool compare_dimensions(const Dimensions<T> &dimensions1, const Dimensions<T> &dimensions2)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135{
136 if(dimensions1.num_dimensions() != dimensions2.num_dimensions())
137 {
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100138 return false;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 }
140
141 for(unsigned int i = 0; i < dimensions1.num_dimensions(); ++i)
142 {
143 if(dimensions1[i] != dimensions2[i])
144 {
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100145 return false;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146 }
147 }
148
149 return true;
150}
151
152/** Validate valid regions.
153 *
154 * - Dimensionality has to be the same.
155 * - Anchors have to match.
156 * - Shapes have to match.
157 */
158void validate(const arm_compute::ValidRegion &region, const arm_compute::ValidRegion &reference);
159
160/** Validate padding.
161 *
162 * Padding on all sides has to be the same.
163 */
164void validate(const arm_compute::PaddingSize &padding, const arm_compute::PaddingSize &reference);
165
166/** Validate tensors.
167 *
168 * - Dimensionality has to be the same.
169 * - All values have to match.
170 *
171 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
172 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
173 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
174 * other test cases.
175 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100176template <typename T, typename U = AbsoluteTolerance<T>>
177void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value = U(), float tolerance_number = 0.f);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178
179/** Validate tensors with valid region.
180 *
181 * - Dimensionality has to be the same.
182 * - All values have to match.
183 *
184 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
185 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
186 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
187 * other test cases.
188 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100189template <typename T, typename U = AbsoluteTolerance<T>>
190void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value = U(), float tolerance_number = 0.f);
Isabella Gottardi62031532017-07-04 11:21:28 +0100191
Isabella Gottardi83be7452017-08-29 13:47:03 +0100192/** Validate tensors with valid mask.
193 *
194 * - Dimensionality has to be the same.
195 * - All values have to match.
196 *
197 * @note: wrap_range allows cases where reference tensor rounds up to the wrapping point, causing it to wrap around to
198 * zero while the test tensor stays at wrapping point to pass. This may permit true erroneous cases (difference between
199 * reference tensor and test tensor is multiple of wrap_range), but such errors would be detected by
200 * other test cases.
201 */
202template <typename T, typename U = AbsoluteTolerance<T>>
203void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const SimpleTensor<T> &valid_mask, U tolerance_value = U(), float tolerance_number = 0.f);
204
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205/** Validate tensors against constant value.
206 *
207 * - All values have to match.
208 */
209void validate(const IAccessor &tensor, const void *reference_value);
210
211/** Validate border against a constant value.
212 *
213 * - All border values have to match the specified value if mode is CONSTANT.
214 * - All border values have to be replicated if mode is REPLICATE.
215 * - Nothing is validated for mode UNDEFINED.
216 */
217void validate(const IAccessor &tensor, BorderSize border_size, const BorderMode &border_mode, const void *border_value);
218
219/** Validate classified labels against expected ones.
220 *
221 * - All values should match
222 */
223void validate(std::vector<unsigned int> classified_labels, std::vector<unsigned int> expected_labels);
steniu01960b0842017-06-23 11:44:34 +0100224
225/** Validate float value.
226 *
227 * - All values should match
228 */
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100229template <typename T, typename U = AbsoluteTolerance<T>>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100230bool validate(T target, T reference, U tolerance = AbsoluteTolerance<T>());
231
232/** Validate key points. */
233template <typename T, typename U, typename V = AbsoluteTolerance<float>>
Georgios Pinitas5962f132017-12-11 16:59:29 +0000234void validate_keypoints(T target_first, T target_last, U reference_first, U reference_last, V tolerance = AbsoluteTolerance<float>(),
235 float allowed_missing_percentage = 5.f, float allowed_mismatch_percentage = 5.f);
steniu01960b0842017-06-23 11:44:34 +0100236
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100237template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100238struct compare_base
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100239{
John Richardson9c450cc2017-11-22 12:00:41 +0000240 compare_base(typename T::value_type target, typename T::value_type reference, T tolerance = T(0))
241 : _target{ target }, _reference{ reference }, _tolerance{ tolerance }
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100242 {
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100243 }
244
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100245 typename T::value_type _target{};
246 typename T::value_type _reference{};
247 T _tolerance{};
248};
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100249
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100250template <typename T>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100251struct compare;
252
253template <typename U>
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100254struct compare<AbsoluteTolerance<U>> : public compare_base<AbsoluteTolerance<U>>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100255{
256 using compare_base<AbsoluteTolerance<U>>::compare_base;
257
258 operator bool() const
259 {
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100260 if(!support::cpp11::isfinite(this->_target) || !support::cpp11::isfinite(this->_reference))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100261 {
262 return false;
263 }
264 else if(this->_target == this->_reference)
265 {
266 return true;
267 }
268
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100269 using comparison_type = typename std::conditional<std::is_integral<U>::value, int64_t, U>::type;
270
271 const comparison_type abs_difference(std::abs(static_cast<comparison_type>(this->_target) - static_cast<comparison_type>(this->_reference)));
272
273 return abs_difference <= static_cast<comparison_type>(this->_tolerance);
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100274 }
275};
276
277template <typename U>
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100278struct compare<RelativeTolerance<U>> : public compare_base<RelativeTolerance<U>>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100279{
steniu013e05e4e2017-08-25 17:18:01 +0100280 using compare_base<RelativeTolerance<U>>::compare_base;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100281
282 operator bool() const
283 {
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100284 if(!support::cpp11::isfinite(this->_target) || !support::cpp11::isfinite(this->_reference))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100285 {
286 return false;
287 }
steniu013e05e4e2017-08-25 17:18:01 +0100288 else if(this->_target == this->_reference)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100289 {
290 return true;
291 }
292
Moritz Pflanzerff1c3602017-09-22 12:41:25 +0100293 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 +0100294
steniu013e05e4e2017-08-25 17:18:01 +0100295 if(std::abs(static_cast<double>(this->_reference) - static_cast<double>(this->_target)) <= epsilon)
296 {
297 return true;
298 }
299 else
300 {
301 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
302 {
303 return false;
304 }
305
306 const double relative_change = std::abs(static_cast<double>(this->_target) - static_cast<double>(this->_reference)) / this->_reference;
307
308 return relative_change <= static_cast<U>(this->_tolerance);
309 }
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100310 }
311};
312
313template <typename T, typename U>
314void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value, float tolerance_number)
315{
316 // Validate with valid region covering the entire shape
317 validate(tensor, reference, shape_to_valid_region(tensor.shape()), tolerance_value, tolerance_number);
318}
319
John Richardson9c450cc2017-11-22 12:00:41 +0000320template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type>
John Richardsondd715f22017-09-18 16:10:48 +0100321void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, U tolerance_value, float tolerance_number)
322{
323 // Validate with valid region covering the entire shape
324 validate_wrap(tensor, reference, shape_to_valid_region(tensor.shape()), tolerance_value, tolerance_number);
325}
326
327template <typename T, typename U>
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100328void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value, float tolerance_number)
329{
330 int64_t num_mismatches = 0;
331 int64_t num_elements = 0;
332
333 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
334 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
335
336 if(reference.format() != Format::UNKNOWN)
337 {
338 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
339 }
340
341 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
342 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape()), framework::LogLevel::ERRORS);
343
344 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
345 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
346
347 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
348 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
349 {
350 const Coordinates id = index2coord(reference.shape(), element_idx);
351
352 if(is_in_valid_region(valid_region, id))
353 {
354 // Iterate over all channels within one element
355 for(int c = 0; c < min_channels; ++c)
356 {
357 const T &target_value = reinterpret_cast<const T *>(tensor(id))[c];
358 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
359
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100360 if(!compare<U>(target_value, reference_value, tolerance_value))
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100361 {
362 ARM_COMPUTE_TEST_INFO("id = " << id);
363 ARM_COMPUTE_TEST_INFO("channel = " << c);
364 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
365 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
366 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 +0100367 framework::ARM_COMPUTE_PRINT_INFO();
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100368
369 ++num_mismatches;
370 }
371
372 ++num_elements;
373 }
374 }
375 }
376
377 if(num_elements > 0)
378 {
379 const int64_t absolute_tolerance_number = tolerance_number * num_elements;
380 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
381
382 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
383 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number << "%)");
384 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +0100385 }
386}
Giorgio Arenafc2817d2017-06-27 17:26:37 +0100387
John Richardson9c450cc2017-11-22 12:00:41 +0000388template <typename T, typename U, typename = typename std::enable_if<std::is_integral<T>::value>::type>
John Richardsondd715f22017-09-18 16:10:48 +0100389void validate_wrap(const IAccessor &tensor, const SimpleTensor<T> &reference, const ValidRegion &valid_region, U tolerance_value, float tolerance_number)
390{
391 int64_t num_mismatches = 0;
392 int64_t num_elements = 0;
393
394 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
395 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
396
397 if(reference.format() != Format::UNKNOWN)
398 {
399 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
400 }
401
402 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
403 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape()), framework::LogLevel::ERRORS);
404
405 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
406 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
407
408 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
409 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
410 {
411 const Coordinates id = index2coord(reference.shape(), element_idx);
412
413 if(is_in_valid_region(valid_region, id))
414 {
415 // Iterate over all channels within one element
416 for(int c = 0; c < min_channels; ++c)
417 {
418 const T &target_value = reinterpret_cast<const T *>(tensor(id))[c];
419 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
420
421 bool equal = compare<U>(target_value, reference_value, tolerance_value);
422
John Richardson9c450cc2017-11-22 12:00:41 +0000423 // check for wrapping
John Richardsondd715f22017-09-18 16:10:48 +0100424 if(!equal)
425 {
John Richardson9c450cc2017-11-22 12:00:41 +0000426 if(!support::cpp11::isfinite(target_value) || !support::cpp11::isfinite(reference_value))
427 {
428 equal = false;
429 }
430 else
431 {
432 using limits_type = typename std::make_unsigned<T>::type;
433
434 uint64_t max = std::numeric_limits<limits_type>::max();
435 uint64_t abs_sum = std::abs(static_cast<int64_t>(target_value)) + std::abs(static_cast<int64_t>(reference_value));
436 uint64_t wrap_difference = max - abs_sum;
437
438 equal = wrap_difference < static_cast<uint64_t>(tolerance_value);
439 }
John Richardsondd715f22017-09-18 16:10:48 +0100440 }
441
442 if(!equal)
443 {
444 ARM_COMPUTE_TEST_INFO("id = " << id);
445 ARM_COMPUTE_TEST_INFO("channel = " << c);
446 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
447 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
John Richardson9c450cc2017-11-22 12:00:41 +0000448 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 +0100449 framework::ARM_COMPUTE_PRINT_INFO();
450
451 ++num_mismatches;
452 }
453
454 ++num_elements;
455 }
456 }
457 }
458
459 if(num_elements > 0)
460 {
461 const int64_t absolute_tolerance_number = tolerance_number * num_elements;
462 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
463
464 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
465 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number << "%)");
466 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
467 }
468}
469
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100470/** Check which keypoints from [first1, last1) are missing in [first2, last2) */
471template <typename T, typename U, typename V>
472std::pair<int64_t, int64_t> compare_keypoints(T first1, T last1, U first2, U last2, V tolerance)
473{
474 int64_t num_missing = 0;
475 int64_t num_mismatches = 0;
476
477 while(first1 != last1)
478 {
479 const auto point = std::find_if(first2, last2, [&](KeyPoint point)
480 {
481 return point.x == first1->x && point.y == first1->y;
482 });
483
484 if(point == last2)
485 {
486 ++num_missing;
Georgios Pinitas5962f132017-12-11 16:59:29 +0000487 ARM_COMPUTE_TEST_INFO("Key point not found" << *first1)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100488 ARM_COMPUTE_TEST_INFO("keypoint1 = " << *first1)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100489 }
490 else if(!validate(point->tracking_status, first1->tracking_status) || !validate(point->strength, first1->strength, tolerance) || !validate(point->scale, first1->scale)
491 || !validate(point->orientation, first1->orientation) || !validate(point->error, first1->error))
492 {
493 ++num_mismatches;
Georgios Pinitas5962f132017-12-11 16:59:29 +0000494 ARM_COMPUTE_TEST_INFO("Mismatching keypoint")
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100495 ARM_COMPUTE_TEST_INFO("keypoint1 = " << *first1)
496 ARM_COMPUTE_TEST_INFO("keypoint2 = " << *point)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100497 }
498
499 ++first1;
500 }
501
502 return std::make_pair(num_missing, num_mismatches);
503}
504
505template <typename T, typename U, typename V>
Georgios Pinitas5962f132017-12-11 16:59:29 +0000506void validate_keypoints(T target_first, T target_last, U reference_first, U reference_last, V tolerance,
507 float allowed_missing_percentage, float allowed_mismatch_percentage)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100508{
509 const int64_t num_elements_target = std::distance(target_first, target_last);
510 const int64_t num_elements_reference = std::distance(reference_first, reference_last);
511
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100512 int64_t num_missing = 0;
513 int64_t num_mismatches = 0;
514
515 if(num_elements_reference > 0)
516 {
517 std::tie(num_missing, num_mismatches) = compare_keypoints(reference_first, reference_last, target_first, target_last, tolerance);
518
519 const float percent_missing = static_cast<float>(num_missing) / num_elements_reference * 100.f;
520 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements_reference * 100.f;
521
522 ARM_COMPUTE_TEST_INFO(num_missing << " keypoints (" << std::fixed << std::setprecision(2) << percent_missing << "%) are missing in target");
Georgios Pinitas5962f132017-12-11 16:59:29 +0000523 ARM_COMPUTE_EXPECT(percent_missing <= allowed_missing_percentage, framework::LogLevel::ERRORS);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100524
525 ARM_COMPUTE_TEST_INFO(num_mismatches << " keypoints (" << std::fixed << std::setprecision(2) << percent_mismatches << "%) mismatched");
Georgios Pinitas5962f132017-12-11 16:59:29 +0000526 ARM_COMPUTE_EXPECT(percent_mismatches <= allowed_mismatch_percentage, framework::LogLevel::ERRORS);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100527 }
528
529 if(num_elements_target > 0)
530 {
531 std::tie(num_missing, num_mismatches) = compare_keypoints(target_first, target_last, reference_first, reference_last, tolerance);
532
533 const float percent_missing = static_cast<float>(num_missing) / num_elements_target * 100.f;
534
535 ARM_COMPUTE_TEST_INFO(num_missing << " keypoints (" << std::fixed << std::setprecision(2) << percent_missing << "%) are not part of target");
Georgios Pinitas5962f132017-12-11 16:59:29 +0000536 ARM_COMPUTE_EXPECT(percent_missing <= allowed_missing_percentage, framework::LogLevel::ERRORS);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100537 }
538}
539
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100540template <typename T, typename U>
Isabella Gottardi83be7452017-08-29 13:47:03 +0100541void validate(const IAccessor &tensor, const SimpleTensor<T> &reference, const SimpleTensor<T> &valid_mask, U tolerance_value, float tolerance_number)
542{
543 int64_t num_mismatches = 0;
544 int64_t num_elements = 0;
545
546 ARM_COMPUTE_EXPECT_EQUAL(tensor.element_size(), reference.element_size(), framework::LogLevel::ERRORS);
547 ARM_COMPUTE_EXPECT_EQUAL(tensor.data_type(), reference.data_type(), framework::LogLevel::ERRORS);
548
549 if(reference.format() != Format::UNKNOWN)
550 {
551 ARM_COMPUTE_EXPECT_EQUAL(tensor.format(), reference.format(), framework::LogLevel::ERRORS);
552 }
553
554 ARM_COMPUTE_EXPECT_EQUAL(tensor.num_channels(), reference.num_channels(), framework::LogLevel::ERRORS);
555 ARM_COMPUTE_EXPECT(compare_dimensions(tensor.shape(), reference.shape()), framework::LogLevel::ERRORS);
556
557 const int min_elements = std::min(tensor.num_elements(), reference.num_elements());
558 const int min_channels = std::min(tensor.num_channels(), reference.num_channels());
559
560 // Iterate over all elements within valid region, e.g. U8, S16, RGB888, ...
561 for(int element_idx = 0; element_idx < min_elements; ++element_idx)
562 {
563 const Coordinates id = index2coord(reference.shape(), element_idx);
564
565 if(valid_mask[element_idx] == 1)
566 {
567 // Iterate over all channels within one element
568 for(int c = 0; c < min_channels; ++c)
569 {
570 const T &target_value = reinterpret_cast<const T *>(tensor(id))[c];
571 const T &reference_value = reinterpret_cast<const T *>(reference(id))[c];
572
573 if(!compare<U>(target_value, reference_value, tolerance_value))
574 {
575 ARM_COMPUTE_TEST_INFO("id = " << id);
576 ARM_COMPUTE_TEST_INFO("channel = " << c);
577 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target_value));
578 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference_value));
579 ARM_COMPUTE_TEST_INFO("tolerance = " << std::setprecision(5) << framework::make_printable(static_cast<typename U::value_type>(tolerance_value)));
580 framework::ARM_COMPUTE_PRINT_INFO();
581
582 ++num_mismatches;
583 }
584
585 ++num_elements;
586 }
587 }
588 else
589 {
590 ++num_elements;
591 }
592 }
593
594 if(num_elements > 0)
595 {
596 const int64_t absolute_tolerance_number = tolerance_number * num_elements;
597 const float percent_mismatches = static_cast<float>(num_mismatches) / num_elements * 100.f;
598
599 ARM_COMPUTE_TEST_INFO(num_mismatches << " values (" << std::fixed << std::setprecision(2) << percent_mismatches
600 << "%) mismatched (maximum tolerated " << std::setprecision(2) << tolerance_number << "%)");
601 ARM_COMPUTE_EXPECT(num_mismatches <= absolute_tolerance_number, framework::LogLevel::ERRORS);
602 }
603}
604
605template <typename T, typename U>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100606bool validate(T target, T reference, U tolerance)
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100607{
608 ARM_COMPUTE_TEST_INFO("reference = " << std::setprecision(5) << framework::make_printable(reference));
609 ARM_COMPUTE_TEST_INFO("target = " << std::setprecision(5) << framework::make_printable(target));
610 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 +0100611
612 const bool equal = compare<U>(target, reference, tolerance);
613
614 ARM_COMPUTE_EXPECT(equal, framework::LogLevel::ERRORS);
615
616 return equal;
Moritz Pflanzera09de0c2017-09-01 20:41:12 +0100617}
John Richardsonf89a49f2017-09-05 11:21:56 +0100618
619template <typename T, typename U>
620void validate_min_max_loc(const MinMaxLocationValues<T> &target, const MinMaxLocationValues<U> &reference)
621{
622 ARM_COMPUTE_EXPECT_EQUAL(target.min, reference.min, framework::LogLevel::ERRORS);
623 ARM_COMPUTE_EXPECT_EQUAL(target.max, reference.max, framework::LogLevel::ERRORS);
624
625 ARM_COMPUTE_EXPECT_EQUAL(target.min_loc.size(), reference.min_loc.size(), framework::LogLevel::ERRORS);
626 ARM_COMPUTE_EXPECT_EQUAL(target.max_loc.size(), reference.max_loc.size(), framework::LogLevel::ERRORS);
627
628 for(uint32_t i = 0; i < target.min_loc.size(); ++i)
629 {
630 const auto same_coords = std::find_if(reference.min_loc.begin(), reference.min_loc.end(), [&target, i](Coordinates2D coord)
631 {
632 return coord.x == target.min_loc.at(i).x && coord.y == target.min_loc.at(i).y;
633 });
634
635 ARM_COMPUTE_EXPECT(same_coords != reference.min_loc.end(), framework::LogLevel::ERRORS);
636 }
637
638 for(uint32_t i = 0; i < target.max_loc.size(); ++i)
639 {
640 const auto same_coords = std::find_if(reference.max_loc.begin(), reference.max_loc.end(), [&target, i](Coordinates2D coord)
641 {
642 return coord.x == target.max_loc.at(i).x && coord.y == target.max_loc.at(i).y;
643 });
644
645 ARM_COMPUTE_EXPECT(same_coords != reference.max_loc.end(), framework::LogLevel::ERRORS);
646 }
647}
648
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100649} // namespace validation
650} // namespace test
651} // namespace arm_compute
Anthony Barbierac69aa12017-07-03 17:39:37 +0100652#endif /* __ARM_COMPUTE_TEST_REFERENCE_VALIDATION_H__ */