blob: b924d9f8bd3223a01a392bb0e10eaa0efb3e5fee [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
26#include "arm_compute/core/AccessWindowTranspose.h"
27#include "arm_compute/core/Coordinates.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/ITensor.h"
31#include "arm_compute/core/NEON/INEKernel.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/TensorShape.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Validate.h"
36#include "arm_compute/core/Window.h"
37
38using namespace arm_compute;
39
Georgios Pinitasd05dce42018-01-22 16:29:17 +000040template <typename T>
41void NEDepthwiseIm2ColKernel::run_generic(const Window &window)
Michalis Spyroub7b31532017-11-23 12:10:21 +000042{
Michalis Spyroub7b31532017-11-23 12:10:21 +000043 const int input_w = _input->info()->dimension(0);
44 const int input_h = _input->info()->dimension(1);
45 const int input_stride_x = _input->info()->strides_in_bytes().x();
46 const int input_stride_y = _input->info()->strides_in_bytes().y();
47 const int input_stride_z = _input->info()->strides_in_bytes().z();
48 const int stride_x = _conv_info.stride().first;
49 const int stride_y = _conv_info.stride().second;
50
51 const int pad_left = _conv_info.pad_left();
52 const int pad_right = _conv_info.pad_right();
53 const int pad_top = _conv_info.pad_top();
54
55 Window window_in(window);
56 // The first three dimensions of the input are increased by the inner loops
57 window_in.set(Window::DimX, Window::Dimension(0, 0, 0));
58 window_in.set(Window::DimY, Window::Dimension(0, 0, 0));
59 window_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
60
61 // Setup output window
62 Window window_out(window);
63 window_out.set(Window::DimX, Window::Dimension(0, _output->info()->dimension(0), _output->info()->dimension(0)));
64 window_out.set(Window::DimY, Window::Dimension(0, _output->info()->dimension(1), 1));
65 window_out.set(Window::DimZ, Window::Dimension(0, _output->info()->dimension(2), 1));
66
67 Iterator in(_input, window_in);
68 Iterator out(_output, window_out);
69
70 const int full_length = input_w + pad_left + pad_right;
71 const int max_initial_x = stride_x * (((full_length - _kernel_dims.width) / stride_x) + 1);
72
Georgios Pinitasd05dce42018-01-22 16:29:17 +000073 // Define pad value
74 auto zero = static_cast<T>(0);
75 if(std::is_same<T, uint8_t>::value)
76 {
77 zero = _input->info()->quantization_info().offset;
78 }
79
Michalis Spyroub7b31532017-11-23 12:10:21 +000080 execute_window_loop(window_out, [&](const Coordinates & id)
81 {
82 const int src_pixel_linear = id.y() * stride_x;
83
84 const int src_x = -pad_left + src_pixel_linear % max_initial_x;
85 const int src_y = -pad_top + src_pixel_linear / max_initial_x * stride_y;
86
87 // Get pointers
88 const uint8_t *const input_ptr = in.ptr() + id.z() * input_stride_z;
Georgios Pinitasd05dce42018-01-22 16:29:17 +000089 auto output_ptr = reinterpret_cast<T *>(out.ptr());
Michalis Spyroub7b31532017-11-23 12:10:21 +000090 const int height = src_y + _kernel_dims.height;
91 const int width = src_x + _kernel_dims.width;
92
93 for(int y = src_y; y < height; ++y)
94 {
95 for(int x = src_x; x < width; ++x, ++output_ptr)
96 {
97 if(x < 0 || x >= input_w || y < 0 || y >= input_h)
98 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +000099 *output_ptr = zero;
Michalis Spyroub7b31532017-11-23 12:10:21 +0000100 }
101 else
102 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000103 *output_ptr = *(reinterpret_cast<const T *>(input_ptr + x * input_stride_x + y * input_stride_y));
Michalis Spyroub7b31532017-11-23 12:10:21 +0000104 }
105 }
106 }
107
108 if(_has_bias)
109 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000110 *output_ptr = static_cast<T>(1);
Michalis Spyroub7b31532017-11-23 12:10:21 +0000111 }
112 },
113 in, out);
114}
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000115
116NEDepthwiseIm2ColKernel::NEDepthwiseIm2ColKernel()
117 : _func(nullptr), _input(nullptr), _output(nullptr), _kernel_dims(), _conv_info(), _has_bias()
118{
119}
120
121void NEDepthwiseIm2ColKernel::configure(const ITensor *input, ITensor *output, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias)
122{
123 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
124 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
125 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
126 ARM_COMPUTE_ERROR_ON(is_data_type_quantized_asymmetric(input->info()->data_type()) && has_bias);
127 ARM_COMPUTE_ERROR_ON(input->info()->dimension(2) != output->info()->dimension(2));
128 ARM_COMPUTE_ERROR_ON(output->info()->dimension(0) != (kernel_dims.width * kernel_dims.height + ((has_bias) ? 1 : 0)));
129
130 _input = input;
131 _output = output;
132 _kernel_dims = kernel_dims;
133 _conv_info = conv_info;
134 _has_bias = has_bias;
135
136 // Configure kernel window
137 Window win = calculate_max_window(*input->info(), Steps());
138
139 // Set appropriate function to run
140 switch(input->info()->data_type())
141 {
142 case DataType::QASYMM8:
143 _func = &NEDepthwiseIm2ColKernel::run_generic<uint8_t>;
144 break;
145 case DataType::F16:
146 _func = &NEDepthwiseIm2ColKernel::run_generic<half>;
147 break;
148 case DataType::F32:
149 _func = &NEDepthwiseIm2ColKernel::run_generic<float>;
150 break;
151 default:
152 ARM_COMPUTE_ERROR("Unsupported data type");
153 }
154
155 // The NEDepthwiseIm2ColKernel doesn't need padding so update_window_and_padding() can be skipped
156 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
157
158 INEKernel::configure(win);
159}
160
161void NEDepthwiseIm2ColKernel::run(const Window &window, const ThreadInfo &info)
162{
163 ARM_COMPUTE_UNUSED(info);
164 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
165 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
166
167 if(_func != nullptr)
168 {
169 (this->*_func)(window);
170 }
171}