blob: 98e4d62dba0291143df188beb14601e777351a79 [file] [log] [blame]
John Richardson1c529922017-11-01 10:57:48 +00001/*
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 */
24#include "Scharr.h"
25
26#include "Utils.h"
27#include "tests/validation/Helpers.h"
28
29#include <array>
30#include <map>
31#include <utility>
32
33namespace arm_compute
34{
35namespace test
36{
37namespace validation
38{
39namespace reference
40{
41namespace
42{
43const std::array<int8_t, 9> scharr_3_x{ { -3, 0, 3, -10, 0, 10, -3, 0, 3 } };
44const std::array<int8_t, 9> scharr_3_y{ { -3, -10, -3, 0, 0, 0, 3, 10, 3 } };
45
46const std::map<int, std::pair<const int8_t *, const int8_t *>> masks
47{
48 { 3, { scharr_3_x.data(), scharr_3_y.data() } }
49};
50
51template <typename T>
52struct data_type;
53
54template <>
55struct data_type<int16_t>
56{
57 const static DataType value = DataType::S16;
58};
59} // namespace
60
61template <typename T, typename U>
62std::pair<SimpleTensor<T>, SimpleTensor<T>> scharr(const SimpleTensor<U> &src, int filter_size, BorderMode border_mode, uint8_t constant_border_value, GradientDimension gradient_dimension)
63{
64 const auto shape_size = static_cast<unsigned int>(filter_size);
65
66 SimpleTensor<T> dst_x(src.shape(), data_type<T>::value, src.num_channels());
67 SimpleTensor<T> dst_y(src.shape(), data_type<T>::value, src.num_channels());
68
69 ValidRegion valid_region = shape_to_valid_region(src.shape(), border_mode == BorderMode::UNDEFINED, BorderSize(filter_size / 2));
70
71 for(int i = 0; i < src.num_elements(); ++i)
72 {
73 Coordinates coord = index2coord(src.shape(), i);
74
75 if(!is_in_valid_region(valid_region, coord))
76 {
77 continue;
78 }
79
80 switch(gradient_dimension)
81 {
82 case GradientDimension::GRAD_X:
83 apply_2d_spatial_filter(coord, src, dst_x, TensorShape{ shape_size, shape_size }, masks.at(filter_size).first, 1.f, border_mode, constant_border_value);
84 break;
85 case GradientDimension::GRAD_Y:
86 apply_2d_spatial_filter(coord, src, dst_y, TensorShape{ shape_size, shape_size }, masks.at(filter_size).second, 1.f, border_mode, constant_border_value);
87 break;
88 case GradientDimension::GRAD_XY:
89 apply_2d_spatial_filter(coord, src, dst_x, TensorShape{ shape_size, shape_size }, masks.at(filter_size).first, 1.f, border_mode, constant_border_value);
90 apply_2d_spatial_filter(coord, src, dst_y, TensorShape{ shape_size, shape_size }, masks.at(filter_size).second, 1.f, border_mode, constant_border_value);
91 break;
92 default:
93 ARM_COMPUTE_ERROR("Gradient dimension not supported");
94 }
95 }
96
97 return std::make_pair(dst_x, dst_y);
98}
99
100template std::pair<SimpleTensor<int16_t>, SimpleTensor<int16_t>> scharr(const SimpleTensor<uint8_t> &src, int filter_size, BorderMode border_mode, uint8_t constant_border_value,
101 GradientDimension gradient_dimension);
102} // namespace reference
103} // namespace validation
104} // namespace test
105} // namespace arm_compute