blob: 54ef33ec36add02dc33dd05590c062df6fc4bbd3 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 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 "arm_compute/core/NEON/kernels/NEMedian3x3Kernel.h"
25
26#include "arm_compute/core/Coordinates.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/IAccessWindow.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/NEON/INEKernel.h"
31#include "arm_compute/core/Validate.h"
32
33#include <arm_neon.h>
34#include <utility>
35
36using namespace arm_compute;
37
38namespace
39{
40inline void sort(uint8x8_t &a, uint8x8_t &b)
41{
42 const uint8x8_t min = vmin_u8(a, b);
43 const uint8x8_t max = vmax_u8(a, b);
44 a = min;
45 b = max;
46}
47} // namespace
48
49BorderSize NEMedian3x3Kernel::border_size() const
50{
51 return BorderSize(1);
52}
53
54void NEMedian3x3Kernel::configure(const ITensor *input, ITensor *output, bool border_undefined)
55{
56 _input = input;
57 _output = output;
58
59 // Configure kernel window
60 constexpr unsigned int num_elems_processed_per_iteration = 8;
61 constexpr unsigned int num_elems_read_per_iteration = 16;
62 constexpr unsigned int num_elems_written_per_iteration = 8;
63 constexpr unsigned int num_rows_read_per_iteration = 3;
64 constexpr int rect_offset_xy = -1;
65
66 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration), border_undefined, border_size());
67 AccessWindowHorizontal output_access(output->info(), 0, num_elems_written_per_iteration);
68
69 update_window_and_padding(win,
70 AccessWindowRectangle(input->info(), rect_offset_xy, rect_offset_xy, num_elems_read_per_iteration, num_rows_read_per_iteration),
71 output_access);
72
73 output_access.set_valid_region(win, input->info()->valid_region(), border_undefined, border_size());
74
75 INEKernel::configure(win);
76}
77
Moritz Pflanzerc186b572017-09-07 09:48:04 +010078void NEMedian3x3Kernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010080 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
82 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INESimpleKernel::window(), window);
83
84 const unsigned char *input_bot_ptr = _input->ptr_to_element(Coordinates(-1, -1));
85 const unsigned char *input_mid_ptr = _input->ptr_to_element(Coordinates(-1, 0));
86 const unsigned char *input_top_ptr = _input->ptr_to_element(Coordinates(-1, +1));
87
88 Iterator input(_input, window);
89 Iterator output(_output, window);
90
91 execute_window_loop(window, [&](const Coordinates & id)
92 {
93 const uint8x16_t top_data = vld1q_u8(input_top_ptr + input.offset());
94 const uint8x16_t mid_data = vld1q_u8(input_mid_ptr + input.offset());
95 const uint8x16_t bot_data = vld1q_u8(input_bot_ptr + input.offset());
96
97 uint8x8_t p0 = vget_low_u8(top_data);
98 uint8x8_t p1 = vext_u8(vget_low_u8(top_data), vget_high_u8(top_data), 1);
99 uint8x8_t p2 = vext_u8(vget_low_u8(top_data), vget_high_u8(top_data), 2);
100 uint8x8_t p3 = vget_low_u8(mid_data);
101 uint8x8_t p4 = vext_u8(vget_low_u8(mid_data), vget_high_u8(mid_data), 1);
102 uint8x8_t p5 = vext_u8(vget_low_u8(mid_data), vget_high_u8(mid_data), 2);
103 uint8x8_t p6 = vget_low_u8(bot_data);
104 uint8x8_t p7 = vext_u8(vget_low_u8(bot_data), vget_high_u8(bot_data), 1);
105 uint8x8_t p8 = vext_u8(vget_low_u8(bot_data), vget_high_u8(bot_data), 2);
106
107 sort(p1, p2);
108 sort(p4, p5);
109 sort(p7, p8);
110
111 sort(p0, p1);
112 sort(p3, p4);
113 sort(p6, p7);
114
115 sort(p1, p2);
116 sort(p4, p5);
117 sort(p7, p8);
118
119 sort(p0, p3);
120 sort(p5, p8);
121 sort(p4, p7);
122
123 sort(p3, p6);
124 sort(p1, p4);
125 sort(p2, p5);
126
127 sort(p4, p7);
128 sort(p4, p2);
129 sort(p6, p4);
130
131 sort(p4, p2);
132
133 vst1_u8(output.ptr(), p4);
134 },
135 input, output);
136}