blob: 3c6f3259b2fdbe17f240a4b52a607acb35cace87 [file] [log] [blame]
John Richardson384a43e2017-12-14 15:41:13 +00001/*
Michalis Spyroufae513c2019-10-16 17:41:33 +01002 * Copyright (c) 2017-2019 ARM Limited.
John Richardson384a43e2017-12-14 15:41:13 +00003 *
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
Michalis Spyroufae513c2019-10-16 17:41:33 +010064 const uint32_t num_elements = src.num_elements();
65 for(uint32_t i = 0; i < num_elements; ++i)
John Richardson384a43e2017-12-14 15:41:13 +000066 {
67 Coordinates coord = index2coord(src.shape(), i);
68
69 if(!is_in_valid_region(valid_region, coord))
70 {
71 continue;
72 }
73
74 switch(gradient_dimension)
75 {
76 case GradientDimension::GRAD_X:
77 apply_2d_spatial_filter(coord, src, dst_x, TensorShape{ filter_size, filter_size }, derivative_3_x.data(), 1.f, border_mode,
78 constant_border_value);
79 break;
80 case GradientDimension::GRAD_Y:
81 apply_2d_spatial_filter(coord, src, dst_y, TensorShape{ filter_size, filter_size }, derivative_3_y.data(), 1.f, border_mode,
82 constant_border_value);
83 break;
84 case GradientDimension::GRAD_XY:
85 apply_2d_spatial_filter(coord, src, dst_x, TensorShape{ filter_size, filter_size }, derivative_3_x.data(), 1.f, border_mode,
86 constant_border_value);
87 apply_2d_spatial_filter(coord, src, dst_y, TensorShape{ filter_size, filter_size }, derivative_3_y.data(), 1.f, border_mode,
88 constant_border_value);
89 break;
90 default:
91 ARM_COMPUTE_ERROR("Gradient dimension not supported");
92 }
93 }
94
95 return std::make_pair(dst_x, dst_y);
96}
97
98template std::pair<SimpleTensor<int16_t>, SimpleTensor<int16_t>> derivative(const SimpleTensor<uint8_t> &src, BorderMode border_mode, uint8_t constant_border_value,
99 GradientDimension gradient_dimension);
100} // namespace reference
101} // namespace validation
102} // namespace test
103} // namespace arm_compute