blob: 62373e348b8e9d90f4f63f252627ab587a6bbede [file] [log] [blame]
Michalis Spyroub7b31532017-11-23 12:10:21 +00001/*
Isabella Gottardi0a1090a2019-02-14 18:07:36 +00002 * Copyright (c) 2017-2019 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)));
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000050 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Abe Mbise7784c832018-05-31 16:48:41 +010051
52 return Status{};
53}
54} // namespace
55
Georgios Pinitasd05dce42018-01-22 16:29:17 +000056template <typename T>
57void NEDepthwiseIm2ColKernel::run_generic(const Window &window)
Michalis Spyroub7b31532017-11-23 12:10:21 +000058{
Michalis Spyroub7b31532017-11-23 12:10:21 +000059 const int input_w = _input->info()->dimension(0);
60 const int input_h = _input->info()->dimension(1);
61 const int input_stride_x = _input->info()->strides_in_bytes().x();
62 const int input_stride_y = _input->info()->strides_in_bytes().y();
63 const int input_stride_z = _input->info()->strides_in_bytes().z();
64 const int stride_x = _conv_info.stride().first;
65 const int stride_y = _conv_info.stride().second;
66
67 const int pad_left = _conv_info.pad_left();
68 const int pad_right = _conv_info.pad_right();
69 const int pad_top = _conv_info.pad_top();
70
71 Window window_in(window);
72 // The first three dimensions of the input are increased by the inner loops
73 window_in.set(Window::DimX, Window::Dimension(0, 0, 0));
74 window_in.set(Window::DimY, Window::Dimension(0, 0, 0));
75 window_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
76
77 // Setup output window
78 Window window_out(window);
79 window_out.set(Window::DimX, Window::Dimension(0, _output->info()->dimension(0), _output->info()->dimension(0)));
80 window_out.set(Window::DimY, Window::Dimension(0, _output->info()->dimension(1), 1));
81 window_out.set(Window::DimZ, Window::Dimension(0, _output->info()->dimension(2), 1));
82
83 Iterator in(_input, window_in);
84 Iterator out(_output, window_out);
85
86 const int full_length = input_w + pad_left + pad_right;
87 const int max_initial_x = stride_x * (((full_length - _kernel_dims.width) / stride_x) + 1);
88
Georgios Pinitasd05dce42018-01-22 16:29:17 +000089 // Define pad value
90 auto zero = static_cast<T>(0);
91 if(std::is_same<T, uint8_t>::value)
92 {
93 zero = _input->info()->quantization_info().offset;
94 }
95
Michalis Spyroub7b31532017-11-23 12:10:21 +000096 execute_window_loop(window_out, [&](const Coordinates & id)
97 {
98 const int src_pixel_linear = id.y() * stride_x;
99
100 const int src_x = -pad_left + src_pixel_linear % max_initial_x;
101 const int src_y = -pad_top + src_pixel_linear / max_initial_x * stride_y;
102
103 // Get pointers
Giorgio Arena76572242018-04-04 17:44:26 +0100104 const uint8_t *const input_ptr = in.ptr() + id.z() / _depth_multiplier * input_stride_z;
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000105 auto output_ptr = reinterpret_cast<T *>(out.ptr());
Michalis Spyroub7b31532017-11-23 12:10:21 +0000106 const int height = src_y + _kernel_dims.height;
107 const int width = src_x + _kernel_dims.width;
108
109 for(int y = src_y; y < height; ++y)
110 {
111 for(int x = src_x; x < width; ++x, ++output_ptr)
112 {
113 if(x < 0 || x >= input_w || y < 0 || y >= input_h)
114 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000115 *output_ptr = zero;
Michalis Spyroub7b31532017-11-23 12:10:21 +0000116 }
117 else
118 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000119 *output_ptr = *(reinterpret_cast<const T *>(input_ptr + x * input_stride_x + y * input_stride_y));
Michalis Spyroub7b31532017-11-23 12:10:21 +0000120 }
121 }
122 }
123
124 if(_has_bias)
125 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000126 *output_ptr = static_cast<T>(1);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000127 }
128 },
129 in, out);
130}
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000131
132NEDepthwiseIm2ColKernel::NEDepthwiseIm2ColKernel()
Giorgio Arena76572242018-04-04 17:44:26 +0100133 : _func(nullptr), _input(nullptr), _output(nullptr), _kernel_dims(), _conv_info(), _has_bias(), _depth_multiplier(1)
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000134{
135}
136
Giorgio Arena76572242018-04-04 17:44:26 +0100137void 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 +0000138{
Abe Mbise7784c832018-05-31 16:48:41 +0100139 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
140
141 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 +0000142
Giorgio Arena76572242018-04-04 17:44:26 +0100143 _input = input;
144 _output = output;
145 _kernel_dims = kernel_dims;
146 _conv_info = conv_info;
147 _has_bias = has_bias;
148 _depth_multiplier = depth_multiplier;
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000149
150 // Configure kernel window
151 Window win = calculate_max_window(*input->info(), Steps());
152
153 // Set appropriate function to run
154 switch(input->info()->data_type())
155 {
156 case DataType::QASYMM8:
157 _func = &NEDepthwiseIm2ColKernel::run_generic<uint8_t>;
158 break;
159 case DataType::F16:
160 _func = &NEDepthwiseIm2ColKernel::run_generic<half>;
161 break;
162 case DataType::F32:
163 _func = &NEDepthwiseIm2ColKernel::run_generic<float>;
164 break;
165 default:
166 ARM_COMPUTE_ERROR("Unsupported data type");
167 }
168
169 // The NEDepthwiseIm2ColKernel doesn't need padding so update_window_and_padding() can be skipped
170 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
171
172 INEKernel::configure(win);
173}
174
Abe Mbise7784c832018-05-31 16:48:41 +0100175Status NEDepthwiseIm2ColKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, unsigned int depth_multiplier)
176{
177 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
178 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, kernel_dims, conv_info, has_bias, depth_multiplier));
179 return Status{};
180}
181
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000182void NEDepthwiseIm2ColKernel::run(const Window &window, const ThreadInfo &info)
183{
184 ARM_COMPUTE_UNUSED(info);
185 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
186 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
187
188 if(_func != nullptr)
189 {
190 (this->*_func)(window);
191 }
192}