blob: c83c6ea4b3f0933320a55521fc50ae3f8bca9797 [file] [log] [blame]
Giorgio Arena93a690e2017-08-01 16:09:33 +01001/*
Giorgio Arena669d17d2021-02-21 10:15:12 +00002 * Copyright (c) 2017-2021 Arm Limited.
Giorgio Arena93a690e2017-08-01 16:09:33 +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_UTILS_H
25#define ARM_COMPUTE_TEST_VALIDATION_UTILS_H
Giorgio Arena93a690e2017-08-01 16:09:33 +010026
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010027#include "arm_compute/core/Types.h"
28#include "tests/Globals.h"
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010029#include "tests/Types.h"
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010030
31#include <array>
32#include <random>
33#include <type_traits>
34#include <utility>
35#include <vector>
Giorgio Arena93a690e2017-08-01 16:09:33 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
Daniil Efremov7a49c792017-11-14 21:25:34 +070043/** Checks if a pixel has valid coordinates
44 *
45 * @param x X coordinate
46 * @param y Y coordinate
47 * @param width Width of the image
48 * @param height Height of the image
49 * @param border_size Border size
50 *
51 * @return True if pixel is valid else false
52 */
53inline bool is_valid_pixel_index(int x, int y, int width, int height, int border_size)
54{
55 return ((x >= -border_size) && (y >= -border_size) && (x < (width + border_size)) && (y < height + border_size));
56}
57
Giorgio Arena669d17d2021-02-21 10:15:12 +000058#pragma GCC diagnostic push
59#pragma GCC diagnostic ignored "-Wstrict-overflow"
60
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010061// Return a tensor element at a specified coordinate with different border modes
Giorgio Arena93a690e2017-08-01 16:09:33 +010062template <typename T>
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010063T tensor_elem_at(const SimpleTensor<T> &src, Coordinates coord, BorderMode border_mode, T constant_border_value)
64{
65 const int x = coord.x();
66 const int y = coord.y();
Pablo Tello764b1af2018-04-23 16:11:45 +010067 const int z = coord.z();
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010068 const int width = src.shape().x();
69 const int height = src.shape().y();
Pablo Tello764b1af2018-04-23 16:11:45 +010070 const int depth = src.shape().z();
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010071
72 // If coordinates beyond range of tensor's width or height
Pablo Tello764b1af2018-04-23 16:11:45 +010073 if(x < 0 || y < 0 || z < 0 || x >= width || y >= height || z >= depth)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010074 {
75 if(border_mode == BorderMode::REPLICATE)
76 {
77 coord.set(0, std::max(0, std::min(x, width - 1)));
78 coord.set(1, std::max(0, std::min(y, height - 1)));
79 }
80 else
81 {
82 return constant_border_value;
83 }
84 }
85
86 return src[coord2index(src.shape(), coord)];
87}
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010088
Giorgio Arena669d17d2021-02-21 10:15:12 +000089#pragma GCC diagnostic pop
90
Isabella Gottardi1fab09f2017-07-13 15:55:57 +010091template <typename T>
Georgios Pinitas583137c2017-08-31 18:12:42 +010092T bilinear_policy(const SimpleTensor<T> &in, Coordinates id, float xn, float yn, BorderMode border_mode, T constant_border_value);
Abe Mbise3f0ab6e2017-09-01 16:43:47 +010093
Moritz Pflanzer7655a672017-09-23 11:57:33 +010094/* Apply 2D spatial filter on a single element of @p in at coordinates @p coord
95 *
96 * - filter sizes have to be odd number
97 * - Row major order of filter assumed
98 * - TO_ZERO rounding policy assumed
99 * - SATURATE convert policy assumed
100 */
101template <typename T, typename U, typename V>
102void apply_2d_spatial_filter(Coordinates coord, const SimpleTensor<T> &src, SimpleTensor<U> &dst, const TensorShape &filter_shape, const V *filter_itr, double scale, BorderMode border_mode,
103 T constant_border_value = T(0))
104{
105 double val = 0.;
106 const int x = coord.x();
107 const int y = coord.y();
108 for(int j = y - static_cast<int>(filter_shape[1] / 2); j <= y + static_cast<int>(filter_shape[1] / 2); ++j)
109 {
110 for(int i = x - static_cast<int>(filter_shape[0] / 2); i <= x + static_cast<int>(filter_shape[0] / 2); ++i)
111 {
112 coord.set(0, i);
113 coord.set(1, j);
114 val += static_cast<double>(*filter_itr) * tensor_elem_at(src, coord, border_mode, constant_border_value);
115 ++filter_itr;
116 }
117 }
118 coord.set(0, x);
119 coord.set(1, y);
120 dst[coord2index(src.shape(), coord)] = saturate_cast<U>(support::cpp11::trunc(val * scale));
121}
Moritz Pflanzercde1e8a2017-09-08 09:53:14 +0100122
123RawTensor transpose(const RawTensor &src, int chunk_width = 1);
Isabella Gottardi83be7452017-08-29 13:47:03 +0100124
Abe Mbise31bbce12017-09-19 16:19:13 +0100125bool valid_bilinear_policy(float xn, float yn, int width, int height, BorderMode border_mode);
Giorgio Arena93a690e2017-08-01 16:09:33 +0100126} // namespace validation
127} // namespace test
128} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000129#endif /* ARM_COMPUTE_TEST_VALIDATION_UTILS_H */