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