blob: 11c454ea67cff34964a11873f5ff40bd7658672e [file] [log] [blame]
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +01001/*
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +00002 * Copyright (c) 2017-2018 ARM Limited.
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +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 */
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010024#include "tests/validation/Helpers.h"
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010025
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000026#include <algorithm>
27#include <cmath>
28
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010029namespace arm_compute
30{
31namespace test
32{
33namespace validation
34{
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010035void fill_mask_from_pattern(uint8_t *mask, int cols, int rows, MatrixPattern pattern)
36{
37 unsigned int v = 0;
38 std::mt19937 gen(library->seed());
39 std::bernoulli_distribution dist(0.5);
40
41 for(int r = 0; r < rows; ++r)
42 {
43 for(int c = 0; c < cols; ++c, ++v)
44 {
45 uint8_t val = 0;
46
47 switch(pattern)
48 {
49 case MatrixPattern::BOX:
50 val = 255;
51 break;
52 case MatrixPattern::CROSS:
53 val = ((r == (rows / 2)) || (c == (cols / 2))) ? 255 : 0;
54 break;
55 case MatrixPattern::DISK:
56 val = (((r - rows / 2.0f + 0.5f) * (r - rows / 2.0f + 0.5f)) / ((rows / 2.0f) * (rows / 2.0f)) + ((c - cols / 2.0f + 0.5f) * (c - cols / 2.0f + 0.5f)) / ((cols / 2.0f) *
57 (cols / 2.0f))) <= 1.0f ? 255 : 0;
58 break;
59 case MatrixPattern::OTHER:
60 val = (dist(gen) ? 0 : 255);
61 break;
62 default:
63 return;
64 }
65
66 mask[v] = val;
67 }
68 }
69
70 if(pattern == MatrixPattern::OTHER)
71 {
72 std::uniform_int_distribution<uint8_t> distribution_u8(0, ((cols * rows) - 1));
73 mask[distribution_u8(gen)] = 255;
74 }
75}
76
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +010077TensorShape calculate_depth_concatenate_shape(const std::vector<TensorShape> &input_shapes)
78{
79 ARM_COMPUTE_ERROR_ON(input_shapes.empty());
80
81 TensorShape out_shape = input_shapes[0];
82
83 size_t max_x = 0;
84 size_t max_y = 0;
85 size_t depth = 0;
86
87 for(const auto &shape : input_shapes)
88 {
89 max_x = std::max(shape.x(), max_x);
90 max_y = std::max(shape.y(), max_y);
91 depth += shape.z();
92 }
93
94 out_shape.set(0, max_x);
95 out_shape.set(1, max_y);
96 out_shape.set(2, depth);
97
98 return out_shape;
99}
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100100
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100101TensorShape calculate_width_concatenate_shape(const std::vector<TensorShape> &input_shapes)
102{
103 ARM_COMPUTE_ERROR_ON(input_shapes.empty());
104
105 TensorShape out_shape = input_shapes[0];
106
107 int width = std::accumulate(input_shapes.begin(), input_shapes.end(), 0, [](int sum, const TensorShape & shape)
108 {
109 return sum + shape.x();
110 });
111 out_shape.set(0, width);
112
113 return out_shape;
114}
115
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100116HarrisCornersParameters harris_corners_parameters()
117{
118 HarrisCornersParameters params;
119
120 std::mt19937 gen(library->seed());
Vidhya Sudhan Loganathan851a3222018-05-11 14:26:51 +0100121 std::uniform_real_distribution<float> threshold_dist(0.f, 0.001f);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100122 std::uniform_real_distribution<float> sensitivity(0.04f, 0.15f);
123 std::uniform_real_distribution<float> euclidean_distance(0.f, 30.f);
124 std::uniform_int_distribution<uint8_t> int_dist(0, 255);
125
126 params.threshold = threshold_dist(gen);
127 params.sensitivity = sensitivity(gen);
128 params.min_dist = euclidean_distance(gen);
129 params.constant_border_value = int_dist(gen);
130
131 return params;
132}
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000133
Abe Mbise1b993382017-12-19 13:51:59 +0000134CannyEdgeParameters canny_edge_parameters()
135{
136 CannyEdgeParameters params;
137
138 std::mt19937 gen(library->seed());
139 std::uniform_int_distribution<uint8_t> int_dist(0, 255);
Michele Di Giorgioef915162018-07-30 12:01:44 +0100140 std::uniform_int_distribution<uint8_t> threshold_dist(2, 255);
Abe Mbise1b993382017-12-19 13:51:59 +0000141
142 params.constant_border_value = int_dist(gen);
Michele Di Giorgioef915162018-07-30 12:01:44 +0100143 params.upper_thresh = threshold_dist(gen); // upper_threshold >= 2
Michele Di Giorgiobb71fe52018-06-20 11:45:35 +0100144 threshold_dist = std::uniform_int_distribution<uint8_t>(1, params.upper_thresh - 1);
Michele Di Giorgioef915162018-07-30 12:01:44 +0100145 params.lower_thresh = threshold_dist(gen); // lower_threshold >= 1 && lower_threshold < upper_threshold
Abe Mbise1b993382017-12-19 13:51:59 +0000146
147 return params;
148}
149
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000150SimpleTensor<float> convert_from_asymmetric(const SimpleTensor<uint8_t> &src)
151{
152 const QuantizationInfo &quantization_info = src.quantization_info();
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100153 SimpleTensor<float> dst{ src.shape(), DataType::F32, 1, QuantizationInfo(), src.data_layout() };
Michalis Spyrou57dac842018-03-01 16:03:50 +0000154
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000155 for(int i = 0; i < src.num_elements(); ++i)
156 {
157 dst[i] = quantization_info.dequantize(src[i]);
158 }
159 return dst;
160}
161
162SimpleTensor<uint8_t> convert_to_asymmetric(const SimpleTensor<float> &src, const QuantizationInfo &quantization_info)
163{
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100164 SimpleTensor<uint8_t> dst{ src.shape(), DataType::QASYMM8, 1, quantization_info };
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000165 for(int i = 0; i < src.num_elements(); ++i)
166 {
Jaroslaw Rzepecki0a878ae2017-11-22 17:16:39 +0000167 dst[i] = quantization_info.quantize(src[i], RoundingPolicy::TO_NEAREST_UP);
Anton Lokhmotovaf6204c2017-11-08 09:34:19 +0000168 }
169 return dst;
170}
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000171
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100172template <typename T>
173void matrix_multiply(const SimpleTensor<T> &a, const SimpleTensor<T> &b, SimpleTensor<T> &out)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000174{
175 ARM_COMPUTE_ERROR_ON(a.shape()[0] != b.shape()[1]);
176 ARM_COMPUTE_ERROR_ON(a.shape()[1] != out.shape()[1]);
177 ARM_COMPUTE_ERROR_ON(b.shape()[0] != out.shape()[0]);
178
179 const int M = a.shape()[1]; // Rows
180 const int N = b.shape()[0]; // Cols
181 const int K = b.shape()[1];
182
183 for(int y = 0; y < M; ++y)
184 {
185 for(int x = 0; x < N; ++x)
186 {
187 float acc = 0.0f;
188 for(int k = 0; k < K; ++k)
189 {
190 acc += a[y * K + k] * b[x + k * N];
191 }
192
193 out[x + y * N] = acc;
194 }
195 }
196}
197
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100198template <typename T>
199void transpose_matrix(const SimpleTensor<T> &in, SimpleTensor<T> &out)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000200{
201 ARM_COMPUTE_ERROR_ON((in.shape()[0] != out.shape()[1]) || (in.shape()[1] != out.shape()[0]));
202
203 const int width = in.shape()[0];
204 const int height = in.shape()[1];
205
206 for(int y = 0; y < height; ++y)
207 {
208 for(int x = 0; x < width; ++x)
209 {
Gian Marco Iodice5ba5e092018-12-06 17:13:09 +0000210 const T val = in[x + y * width];
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000211
212 out[x * height + y] = val;
213 }
214 }
215}
216
217template <typename T>
218void get_tile(const SimpleTensor<T> &in, SimpleTensor<T> &tile, const Coordinates &coord)
219{
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100220 ARM_COMPUTE_ERROR_ON(tile.shape().num_dimensions() > 2);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000221
222 const int w_tile = tile.shape()[0];
223 const int h_tile = tile.shape()[1];
224
225 // Fill the tile with zeros
226 std::fill(tile.data() + 0, (tile.data() + (w_tile * h_tile)), static_cast<T>(0));
227
228 // Check if with the dimensions greater than 2 we could have out-of-bound reads
229 for(size_t d = 2; d < Coordinates::num_max_dimensions; ++d)
230 {
231 if(coord[d] < 0 || coord[d] >= static_cast<int>(in.shape()[d]))
232 {
233 ARM_COMPUTE_ERROR("coord[d] < 0 || coord[d] >= in.shape()[d] with d >= 2");
234 }
235 }
236
237 // Since we could have out-of-bound reads along the X and Y dimensions,
238 // we start calculating the input address with x = 0 and y = 0
239 Coordinates start_coord = coord;
240 start_coord[0] = 0;
241 start_coord[1] = 0;
242
243 // Get input and roi pointers
244 auto in_ptr = static_cast<const T *>(in(start_coord));
245 auto roi_ptr = static_cast<T *>(tile.data());
246
247 const int x_in_start = std::max(0, coord[0]);
248 const int y_in_start = std::max(0, coord[1]);
249 const int x_in_end = std::min(static_cast<int>(in.shape()[0]), coord[0] + w_tile);
250 const int y_in_end = std::min(static_cast<int>(in.shape()[1]), coord[1] + h_tile);
251
252 // Number of elements to copy per row
253 const int n = x_in_end - x_in_start;
254
255 // Starting coordinates for the ROI
256 const int x_tile_start = coord[0] > 0 ? 0 : std::abs(coord[0]);
257 const int y_tile_start = coord[1] > 0 ? 0 : std::abs(coord[1]);
258
259 // Update input pointer
260 in_ptr += x_in_start;
261 in_ptr += (y_in_start * in.shape()[0]);
262
263 // Update ROI pointer
264 roi_ptr += x_tile_start;
265 roi_ptr += (y_tile_start * tile.shape()[0]);
266
267 for(int y = y_in_start; y < y_in_end; ++y)
268 {
269 // Copy per row
270 std::copy(in_ptr, in_ptr + n, roi_ptr);
271
272 in_ptr += in.shape()[0];
273 roi_ptr += tile.shape()[0];
274 }
275}
276
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100277template <typename T>
278void zeros(SimpleTensor<T> &in, const Coordinates &anchor, const TensorShape &shape)
279{
280 ARM_COMPUTE_ERROR_ON(anchor.num_dimensions() != shape.num_dimensions());
281 ARM_COMPUTE_ERROR_ON(in.shape().num_dimensions() > 2);
282 ARM_COMPUTE_ERROR_ON(shape.num_dimensions() > 2);
283
284 // Check if with the dimensions greater than 2 we could have out-of-bound reads
285 for(size_t d = 0; d < Coordinates::num_max_dimensions; ++d)
286 {
287 if(anchor[d] < 0 || ((anchor[d] + shape[d]) > in.shape()[d]))
288 {
289 ARM_COMPUTE_ERROR("anchor[d] < 0 || (anchor[d] + shape[d]) > in.shape()[d]");
290 }
291 }
292
293 // Get input pointer
294 auto in_ptr = static_cast<T *>(in(anchor[0] + anchor[1] * in.shape()[0]));
295
296 const unsigned int n = in.shape()[0];
297
298 for(unsigned int y = 0; y < shape[1]; ++y)
299 {
300 std::fill(in_ptr, in_ptr + shape[0], 0);
301 in_ptr += n;
302 }
303}
304
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100305std::pair<int, int> get_quantized_bounds(const QuantizationInfo &quant_info, float min, float max)
306{
307 ARM_COMPUTE_ERROR_ON_MSG(min > max, "min must be lower equal than max");
308
309 const int min_bound = quant_info.quantize(min, RoundingPolicy::TO_NEAREST_UP);
310 const int max_bound = quant_info.quantize(max, RoundingPolicy::TO_NEAREST_UP);
311 return std::pair<int, int>(min_bound, max_bound);
312}
313
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000314template void get_tile(const SimpleTensor<float> &in, SimpleTensor<float> &roi, const Coordinates &coord);
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100315template void get_tile(const SimpleTensor<half> &in, SimpleTensor<half> &roi, const Coordinates &coord);
Gian Marco Iodice5ba5e092018-12-06 17:13:09 +0000316template void get_tile(const SimpleTensor<int> &in, SimpleTensor<int> &roi, const Coordinates &coord);
317template void get_tile(const SimpleTensor<short> &in, SimpleTensor<short> &roi, const Coordinates &coord);
318template void get_tile(const SimpleTensor<char> &in, SimpleTensor<char> &roi, const Coordinates &coord);
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100319template void zeros(SimpleTensor<float> &in, const Coordinates &anchor, const TensorShape &shape);
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100320template void zeros(SimpleTensor<half> &in, const Coordinates &anchor, const TensorShape &shape);
321template void transpose_matrix(const SimpleTensor<float> &in, SimpleTensor<float> &out);
322template void transpose_matrix(const SimpleTensor<half> &in, SimpleTensor<half> &out);
Gian Marco Iodice5ba5e092018-12-06 17:13:09 +0000323template void transpose_matrix(const SimpleTensor<int> &in, SimpleTensor<int> &out);
324template void transpose_matrix(const SimpleTensor<short> &in, SimpleTensor<short> &out);
325template void transpose_matrix(const SimpleTensor<char> &in, SimpleTensor<char> &out);
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100326template void matrix_multiply(const SimpleTensor<float> &a, const SimpleTensor<float> &b, SimpleTensor<float> &out);
327template void matrix_multiply(const SimpleTensor<half> &a, const SimpleTensor<half> &b, SimpleTensor<half> &out);
328
Moritz Pflanzer3ce3ff42017-07-21 17:41:02 +0100329} // namespace validation
330} // namespace test
331} // namespace arm_compute