blob: 680d8f628fcfc30804c3016391ea1254cbe93de9 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/runtime/NEON/functions/NEConvolution.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/ITensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/PixelValue.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Utils.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/runtime/NEON/NEScheduler.h"
33#include "arm_compute/runtime/TensorAllocator.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010034#include "src/core/NEON/kernels/NEConvolutionKernel.h"
35#include "src/core/NEON/kernels/NEConvolutionKernel.h"
36#include "src/core/NEON/kernels/NEFillBorderKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
38#include <array>
39#include <utility>
40
Michalis Spyrouebcebf12020-10-21 00:04:14 +010041namespace arm_compute
42{
43NEConvolution3x3::~NEConvolution3x3() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044
45void NEConvolution3x3::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
46{
Georgios Pinitas40f51a62020-11-21 03:04:18 +000047 auto k = std::make_unique<NEConvolution3x3Kernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 k->configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
49 _kernel = std::move(k);
Michalis Spyrouebcebf12020-10-21 00:04:14 +010050
Georgios Pinitas40f51a62020-11-21 03:04:18 +000051 auto b = std::make_unique<NEFillBorderKernel>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010052 b->configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
53 _border_handler = std::move(b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054}
55
56template <unsigned int matrix_size>
Michalis Spyrouebcebf12020-10-21 00:04:14 +010057NEConvolutionSquare<matrix_size>::~NEConvolutionSquare() = default;
58
59template <unsigned int matrix_size>
Georgios Pinitas658039b2017-09-15 16:30:50 +010060NEConvolutionSquare<matrix_size>::NEConvolutionSquare(std::shared_ptr<IMemoryManager> memory_manager)
61 : _memory_group(std::move(memory_manager)), _tmp(), _is_separable(false), _kernel_hor(), _kernel_vert(), _kernel(), _border_handler()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062{
63}
64
65template <unsigned int matrix_size>
Sanghoon Leed7ba5392017-12-13 11:28:50 +000066void NEConvolutionSquare<matrix_size>::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode,
67 uint8_t constant_border_value)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068{
69 ARM_COMPUTE_ERROR_ON(conv == nullptr);
70 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
71 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8, DataType::S16);
72
73 std::array<int16_t, matrix_size> conv_col{ { 0 } };
74 std::array<int16_t, matrix_size> conv_row{ { 0 } };
75
76 _is_separable = separate_matrix(conv, conv_col.data(), conv_row.data(), matrix_size);
77
Georgios Pinitas40f51a62020-11-21 03:04:18 +000078 auto b = std::make_unique<NEFillBorderKernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079 if(_is_separable)
80 {
81 DataType intermediate_type = DataType::UNKNOWN;
82 std::tie(std::ignore, intermediate_type) = data_type_for_convolution(conv_col.data(), conv_row.data(), matrix_size);
83
84 _tmp.allocator()->init(TensorInfo(input->info()->tensor_shape(), 1, intermediate_type));
85
Georgios Pinitas658039b2017-09-15 16:30:50 +010086 // Manage intermediate buffers
87 _memory_group.manage(&_tmp);
88
89 // Calculate scale
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090 if(scale == 0)
91 {
92 scale = calculate_matrix_scale(conv, matrix_size);
93 }
94
Georgios Pinitas40f51a62020-11-21 03:04:18 +000095 _kernel_hor = std::make_unique<NESeparableConvolutionHorKernel<matrix_size>>();
96 _kernel_vert = std::make_unique<NESeparableConvolutionVertKernel<matrix_size>>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010097
98 _kernel_hor->configure(input, &_tmp, conv_row.data(), border_mode == BorderMode::UNDEFINED);
99 _kernel_vert->configure(&_tmp, output, conv_col.data(), scale, border_mode == BorderMode::UNDEFINED);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100
101 _tmp.allocator()->allocate();
102
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100103 b->configure(input, _kernel_hor->border_size(), border_mode, PixelValue(constant_border_value));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104 }
105 else
106 {
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000107 _kernel = std::make_unique<NEConvolutionKernel<matrix_size>>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100108 _kernel->configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
109 b->configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110 }
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100111 _border_handler = std::move(b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112}
113
114template <unsigned int matrix_size>
115void NEConvolutionSquare<matrix_size>::run()
116{
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100117 NEScheduler::get().schedule(_border_handler.get(), Window::DimZ);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100118
119 if(_is_separable)
120 {
Georgios Pinitasda953f22019-04-02 17:27:03 +0100121 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas658039b2017-09-15 16:30:50 +0100122
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100123 NEScheduler::get().schedule(_kernel_hor.get(), Window::DimY);
124 NEScheduler::get().schedule(_kernel_vert.get(), Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125 }
126 else
127 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100128 NEScheduler::get().schedule(_kernel.get(), Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129 }
130}
131
132template class arm_compute::NEConvolutionSquare<5>;
133template class arm_compute::NEConvolutionSquare<7>;
134template class arm_compute::NEConvolutionSquare<9>;
135
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100136NEConvolutionRectangle::~NEConvolutionRectangle() = default;
137
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138void NEConvolutionRectangle::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t rows, uint32_t cols, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
139{
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000140 auto k = std::make_unique<NEConvolutionRectangleKernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141 k->configure(input, output, conv, rows, cols, scale, border_mode == BorderMode::UNDEFINED);
142 _kernel = std::move(k);
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100143
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000144 auto b = std::make_unique<NEFillBorderKernel>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100145 b->configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
146 _border_handler = std::move(b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147}
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100148} // namespace arm_compute