blob: 4575c7af9d39c61ecfb431adb92b8397e22a97e4 [file] [log] [blame]
Michalis Spyrou7362f0d2017-10-18 17:58:22 +01001/*
2 * Copyright (c) 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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h"
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010025
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/PixelValue.h"
29#include "arm_compute/runtime/NEON/NEScheduler.h"
30#include "support/ToolchainSupport.h"
31
32using namespace arm_compute;
33
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000034NEDepthwiseConvolutionLayer3x3::NEDepthwiseConvolutionLayer3x3()
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010035 : _kernel(), _bias_kernel(), _border_handler(), _has_bias(false)
36{
37}
38
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000039void NEDepthwiseConvolutionLayer3x3::configure(ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info)
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010040{
41 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000042 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010043
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000044 // Configure kernels
Giorgio Arena82afedf2017-11-15 13:36:15 +000045 _kernel.configure(input, weights, output, conv_info);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010046 _border_handler.configure(input, _kernel.border_size(), BorderMode::CONSTANT, PixelValue(static_cast<float>(0.f)));
47 if(biases != nullptr)
48 {
49 _bias_kernel.configure(output, biases);
50 _has_bias = true;
51 }
52}
53
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000054void NEDepthwiseConvolutionLayer3x3::run()
Michalis Spyrou7362f0d2017-10-18 17:58:22 +010055{
56 NEScheduler::get().schedule(&_border_handler, Window::DimX);
57 NEScheduler::get().schedule(&_kernel, Window::DimX);
58 if(_has_bias)
59 {
60 NEScheduler::get().schedule(&_bias_kernel, Window::DimX);
61 }
Michalis Spyroub7b31532017-11-23 12:10:21 +000062}
63
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000064NEDepthwiseConvolutionLayer::NEDepthwiseConvolutionLayer()
Michalis Spyroub7b31532017-11-23 12:10:21 +000065 : _im2col_kernel(), _weights_reshape_kernel(), _v2mm_kernel(), _vector_to_tensor_kernel(), _input_reshaped(), _weights_reshaped(), _v2mm_output()
66{
67}
68
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000069void NEDepthwiseConvolutionLayer::configure(ITensor *input, const ITensor *weights, const ITensor *biases, ITensor *output, const PadStrideInfo &conv_info)
Michalis Spyroub7b31532017-11-23 12:10:21 +000070{
71 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
72 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights);
73 ARM_COMPUTE_ERROR_ON(input->info()->dimension(2) != weights->info()->dimension(2));
74
75 const size_t weights_w = weights->info()->dimension(0);
76 const size_t weights_h = weights->info()->dimension(1);
77 const size_t weights_z = weights->info()->dimension(2);
78
79 bool has_bias = (biases != nullptr);
80
81 unsigned int conv_w = 0;
82 unsigned int conv_h = 0;
83 std::tie(conv_w, conv_h) = scaled_dimensions(input->info()->dimension(0), input->info()->dimension(1), weights_w, weights_h, conv_info);
84
85 // Set up intermediate tensors
86 const size_t patch_size = weights_w * weights_h + ((has_bias) ? 1 : 0);
87 const size_t conv_size = conv_w * conv_h;
88
89 // Im2Col configuration
90 TensorShape shape_im2col = input->info()->tensor_shape();
91 shape_im2col.set(0, patch_size);
92 shape_im2col.set(1, conv_size);
93 shape_im2col.set(2, weights_z);
94 const TensorInfo info_im2col(shape_im2col, 1, input->info()->data_type(), input->info()->fixed_point_position());
95 _input_reshaped.allocator()->init(info_im2col);
96 _im2col_kernel.configure(input, &_input_reshaped, Size2D(weights_w, weights_h), conv_info, has_bias);
97
98 // Weights reshape configuration
99 const TensorShape shape_weights_reshape(patch_size, weights_z);
100 const TensorInfo info_weights_reshape(shape_weights_reshape, 1, weights->info()->data_type(), weights->info()->fixed_point_position());
101 _weights_reshaped.allocator()->init(info_weights_reshape);
102 _weights_reshape_kernel.configure(weights, &_weights_reshaped, biases);
103
104 // GEMV configuration
105 TensorShape shape_v2mm_out = input->info()->tensor_shape();
106 shape_v2mm_out.set(0, conv_size * weights_z);
107 shape_v2mm_out.set(1, 1);
108 shape_v2mm_out.set(2, 1);
109 const TensorInfo info_v2mm_out(shape_v2mm_out, 1, input->info()->data_type(), input->info()->fixed_point_position());
110 _v2mm_output.allocator()->init(info_v2mm_out);
111 _v2mm_kernel.configure(&_input_reshaped, &_weights_reshaped, &_v2mm_output);
112 _vector_to_tensor_kernel.configure(&_v2mm_output, output, conv_w, conv_h);
113
114 // Allocate intermediate tensors
115 _input_reshaped.allocator()->allocate();
116 _weights_reshaped.allocator()->allocate();
117 _v2mm_output.allocator()->allocate();
118}
119
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000120void NEDepthwiseConvolutionLayer::run()
Michalis Spyroub7b31532017-11-23 12:10:21 +0000121{
122 NEScheduler::get().schedule(&_im2col_kernel, Window::DimX);
123 NEScheduler::get().schedule(&_weights_reshape_kernel, Window::DimX);
124 NEScheduler::get().schedule(&_v2mm_kernel, Window::DimX);
125 NEScheduler::get().schedule(&_vector_to_tensor_kernel, Window::DimX);
Michalis Spyrou7362f0d2017-10-18 17:58:22 +0100126}