blob: 07ac8bd42b8ce70e1f47119cb8b2c5604da34b9c [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"
Matthew Bentham92046462020-03-07 22:15:55 +000037#include "support/MemorySupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39#include <array>
40#include <utility>
41
Michalis Spyrouebcebf12020-10-21 00:04:14 +010042namespace arm_compute
43{
44NEConvolution3x3::~NEConvolution3x3() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
46void NEConvolution3x3::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
47{
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010048 auto k = arm_compute::support::cpp14::make_unique<NEConvolution3x3Kernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 k->configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
50 _kernel = std::move(k);
Michalis Spyrouebcebf12020-10-21 00:04:14 +010051
52 auto b = arm_compute::support::cpp14::make_unique<NEFillBorderKernel>();
53 b->configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
54 _border_handler = std::move(b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055}
56
57template <unsigned int matrix_size>
Michalis Spyrouebcebf12020-10-21 00:04:14 +010058NEConvolutionSquare<matrix_size>::~NEConvolutionSquare() = default;
59
60template <unsigned int matrix_size>
Georgios Pinitas658039b2017-09-15 16:30:50 +010061NEConvolutionSquare<matrix_size>::NEConvolutionSquare(std::shared_ptr<IMemoryManager> memory_manager)
62 : _memory_group(std::move(memory_manager)), _tmp(), _is_separable(false), _kernel_hor(), _kernel_vert(), _kernel(), _border_handler()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063{
64}
65
66template <unsigned int matrix_size>
Sanghoon Leed7ba5392017-12-13 11:28:50 +000067void NEConvolutionSquare<matrix_size>::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode,
68 uint8_t constant_border_value)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069{
70 ARM_COMPUTE_ERROR_ON(conv == nullptr);
71 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
72 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8, DataType::S16);
73
74 std::array<int16_t, matrix_size> conv_col{ { 0 } };
75 std::array<int16_t, matrix_size> conv_row{ { 0 } };
76
77 _is_separable = separate_matrix(conv, conv_col.data(), conv_row.data(), matrix_size);
78
Michalis Spyrouebcebf12020-10-21 00:04:14 +010079 auto b = arm_compute::support::cpp14::make_unique<NEFillBorderKernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080 if(_is_separable)
81 {
82 DataType intermediate_type = DataType::UNKNOWN;
83 std::tie(std::ignore, intermediate_type) = data_type_for_convolution(conv_col.data(), conv_row.data(), matrix_size);
84
85 _tmp.allocator()->init(TensorInfo(input->info()->tensor_shape(), 1, intermediate_type));
86
Georgios Pinitas658039b2017-09-15 16:30:50 +010087 // Manage intermediate buffers
88 _memory_group.manage(&_tmp);
89
90 // Calculate scale
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091 if(scale == 0)
92 {
93 scale = calculate_matrix_scale(conv, matrix_size);
94 }
95
Michalis Spyrouebcebf12020-10-21 00:04:14 +010096 _kernel_hor = arm_compute::support::cpp14::make_unique<NESeparableConvolutionHorKernel<matrix_size>>();
97 _kernel_vert = arm_compute::support::cpp14::make_unique<NESeparableConvolutionVertKernel<matrix_size>>();
98
99 _kernel_hor->configure(input, &_tmp, conv_row.data(), border_mode == BorderMode::UNDEFINED);
100 _kernel_vert->configure(&_tmp, output, conv_col.data(), scale, border_mode == BorderMode::UNDEFINED);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101
102 _tmp.allocator()->allocate();
103
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100104 b->configure(input, _kernel_hor->border_size(), border_mode, PixelValue(constant_border_value));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105 }
106 else
107 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100108 _kernel = arm_compute::support::cpp14::make_unique<NEConvolutionKernel<matrix_size>>();
109 _kernel->configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
110 b->configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111 }
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100112 _border_handler = std::move(b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113}
114
115template <unsigned int matrix_size>
116void NEConvolutionSquare<matrix_size>::run()
117{
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100118 NEScheduler::get().schedule(_border_handler.get(), Window::DimZ);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119
120 if(_is_separable)
121 {
Georgios Pinitasda953f22019-04-02 17:27:03 +0100122 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas658039b2017-09-15 16:30:50 +0100123
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100124 NEScheduler::get().schedule(_kernel_hor.get(), Window::DimY);
125 NEScheduler::get().schedule(_kernel_vert.get(), Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126 }
127 else
128 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100129 NEScheduler::get().schedule(_kernel.get(), Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130 }
131}
132
133template class arm_compute::NEConvolutionSquare<5>;
134template class arm_compute::NEConvolutionSquare<7>;
135template class arm_compute::NEConvolutionSquare<9>;
136
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100137NEConvolutionRectangle::~NEConvolutionRectangle() = default;
138
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139void 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)
140{
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100141 auto k = arm_compute::support::cpp14::make_unique<NEConvolutionRectangleKernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142 k->configure(input, output, conv, rows, cols, scale, border_mode == BorderMode::UNDEFINED);
143 _kernel = std::move(k);
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100144
145 auto b = arm_compute::support::cpp14::make_unique<NEFillBorderKernel>();
146 b->configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
147 _border_handler = std::move(b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100148}
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100149} // namespace arm_compute