blob: e8fb8cd6b1b08a6c27f9a54783fc5d54b1fb4247 [file] [log] [blame]
Michalis Spyroub7b31532017-11-23 12:10:21 +00001/*
Georgios Pinitasd05dce42018-01-22 16:29:17 +00002 * Copyright (c) 2017-2018 ARM Limited.
Michalis Spyroub7b31532017-11-23 12:10:21 +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 "arm_compute/core/NEON/kernels/NEDepthwiseIm2ColKernel.h"
25
Michalis Spyroub7b31532017-11-23 12:10:21 +000026#include "arm_compute/core/Coordinates.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/ITensor.h"
30#include "arm_compute/core/NEON/INEKernel.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/TensorShape.h"
33#include "arm_compute/core/Types.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36
37using namespace arm_compute;
38
Abe Mbise7784c832018-05-31 16:48:41 +010039namespace
40{
41Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, unsigned int depth_multiplier)
42{
43 ARM_COMPUTE_UNUSED(conv_info);
Anthony Barbiereaefd002018-07-20 17:49:35 +010044 //Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Abe Mbise7784c832018-05-31 16:48:41 +010045 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
46 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
47 ARM_COMPUTE_RETURN_ERROR_ON(is_data_type_quantized_asymmetric(input->data_type()) && has_bias);
48 ARM_COMPUTE_RETURN_ERROR_ON((input->dimension(2) * depth_multiplier) != output->dimension(2));
49 ARM_COMPUTE_RETURN_ERROR_ON(output->dimension(0) != (kernel_dims.width * kernel_dims.height + ((has_bias) ? 1 : 0)));
50
51 return Status{};
52}
53} // namespace
54
Georgios Pinitasd05dce42018-01-22 16:29:17 +000055template <typename T>
56void NEDepthwiseIm2ColKernel::run_generic(const Window &window)
Michalis Spyroub7b31532017-11-23 12:10:21 +000057{
Michalis Spyroub7b31532017-11-23 12:10:21 +000058 const int input_w = _input->info()->dimension(0);
59 const int input_h = _input->info()->dimension(1);
60 const int input_stride_x = _input->info()->strides_in_bytes().x();
61 const int input_stride_y = _input->info()->strides_in_bytes().y();
62 const int input_stride_z = _input->info()->strides_in_bytes().z();
63 const int stride_x = _conv_info.stride().first;
64 const int stride_y = _conv_info.stride().second;
65
66 const int pad_left = _conv_info.pad_left();
67 const int pad_right = _conv_info.pad_right();
68 const int pad_top = _conv_info.pad_top();
69
70 Window window_in(window);
71 // The first three dimensions of the input are increased by the inner loops
72 window_in.set(Window::DimX, Window::Dimension(0, 0, 0));
73 window_in.set(Window::DimY, Window::Dimension(0, 0, 0));
74 window_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
75
76 // Setup output window
77 Window window_out(window);
78 window_out.set(Window::DimX, Window::Dimension(0, _output->info()->dimension(0), _output->info()->dimension(0)));
79 window_out.set(Window::DimY, Window::Dimension(0, _output->info()->dimension(1), 1));
80 window_out.set(Window::DimZ, Window::Dimension(0, _output->info()->dimension(2), 1));
81
82 Iterator in(_input, window_in);
83 Iterator out(_output, window_out);
84
85 const int full_length = input_w + pad_left + pad_right;
86 const int max_initial_x = stride_x * (((full_length - _kernel_dims.width) / stride_x) + 1);
87
Georgios Pinitasd05dce42018-01-22 16:29:17 +000088 // Define pad value
89 auto zero = static_cast<T>(0);
90 if(std::is_same<T, uint8_t>::value)
91 {
92 zero = _input->info()->quantization_info().offset;
93 }
94
Michalis Spyroub7b31532017-11-23 12:10:21 +000095 execute_window_loop(window_out, [&](const Coordinates & id)
96 {
97 const int src_pixel_linear = id.y() * stride_x;
98
99 const int src_x = -pad_left + src_pixel_linear % max_initial_x;
100 const int src_y = -pad_top + src_pixel_linear / max_initial_x * stride_y;
101
102 // Get pointers
Giorgio Arena76572242018-04-04 17:44:26 +0100103 const uint8_t *const input_ptr = in.ptr() + id.z() / _depth_multiplier * input_stride_z;
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000104 auto output_ptr = reinterpret_cast<T *>(out.ptr());
Michalis Spyroub7b31532017-11-23 12:10:21 +0000105 const int height = src_y + _kernel_dims.height;
106 const int width = src_x + _kernel_dims.width;
107
108 for(int y = src_y; y < height; ++y)
109 {
110 for(int x = src_x; x < width; ++x, ++output_ptr)
111 {
112 if(x < 0 || x >= input_w || y < 0 || y >= input_h)
113 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000114 *output_ptr = zero;
Michalis Spyroub7b31532017-11-23 12:10:21 +0000115 }
116 else
117 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000118 *output_ptr = *(reinterpret_cast<const T *>(input_ptr + x * input_stride_x + y * input_stride_y));
Michalis Spyroub7b31532017-11-23 12:10:21 +0000119 }
120 }
121 }
122
123 if(_has_bias)
124 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000125 *output_ptr = static_cast<T>(1);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000126 }
127 },
128 in, out);
129}
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000130
131NEDepthwiseIm2ColKernel::NEDepthwiseIm2ColKernel()
Giorgio Arena76572242018-04-04 17:44:26 +0100132 : _func(nullptr), _input(nullptr), _output(nullptr), _kernel_dims(), _conv_info(), _has_bias(), _depth_multiplier(1)
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000133{
134}
135
Giorgio Arena76572242018-04-04 17:44:26 +0100136void NEDepthwiseIm2ColKernel::configure(const ITensor *input, ITensor *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, unsigned int depth_multiplier)
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000137{
Abe Mbise7784c832018-05-31 16:48:41 +0100138 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
139
140 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), kernel_dims, conv_info, has_bias, depth_multiplier));
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000141
Giorgio Arena76572242018-04-04 17:44:26 +0100142 _input = input;
143 _output = output;
144 _kernel_dims = kernel_dims;
145 _conv_info = conv_info;
146 _has_bias = has_bias;
147 _depth_multiplier = depth_multiplier;
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000148
149 // Configure kernel window
150 Window win = calculate_max_window(*input->info(), Steps());
151
152 // Set appropriate function to run
153 switch(input->info()->data_type())
154 {
155 case DataType::QASYMM8:
156 _func = &NEDepthwiseIm2ColKernel::run_generic<uint8_t>;
157 break;
158 case DataType::F16:
159 _func = &NEDepthwiseIm2ColKernel::run_generic<half>;
160 break;
161 case DataType::F32:
162 _func = &NEDepthwiseIm2ColKernel::run_generic<float>;
163 break;
164 default:
165 ARM_COMPUTE_ERROR("Unsupported data type");
166 }
167
168 // The NEDepthwiseIm2ColKernel doesn't need padding so update_window_and_padding() can be skipped
169 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
170
171 INEKernel::configure(win);
172}
173
Abe Mbise7784c832018-05-31 16:48:41 +0100174Status NEDepthwiseIm2ColKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, unsigned int depth_multiplier)
175{
176 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
177 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, kernel_dims, conv_info, has_bias, depth_multiplier));
178 return Status{};
179}
180
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000181void NEDepthwiseIm2ColKernel::run(const Window &window, const ThreadInfo &info)
182{
183 ARM_COMPUTE_UNUSED(info);
184 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
185 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
186
187 if(_func != nullptr)
188 {
189 (this->*_func)(window);
190 }
191}