blob: b84dfd344c66f04b55d0eb10e765bb46d6a92ede [file] [log] [blame]
Anthony Barbier871448e2017-03-24 14:54:29 +00001/*
Anthony Barbierf45d5a92018-01-24 16:23:15 +00002 * Copyright (c) 2016, 2018 ARM Limited.
Anthony Barbier871448e2017-03-24 14:54:29 +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/runtime/NEON/functions/NEConvolution.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000027#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/NEON/kernels/NEConvolutionKernel.h"
29#include "arm_compute/core/PixelValue.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/runtime/NEON/NEScheduler.h"
34#include "arm_compute/runtime/TensorAllocator.h"
Kaizen8938bd32017-09-28 14:38:23 +010035#include "support/ToolchainSupport.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000036
37#include <array>
38#include <utility>
39
40using namespace arm_compute;
41
42void NEConvolution3x3::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
43{
Kaizen8938bd32017-09-28 14:38:23 +010044 auto k = arm_compute::support::cpp14::make_unique<NEConvolution3x3Kernel>();
Anthony Barbier871448e2017-03-24 14:54:29 +000045 k->configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
46 _kernel = std::move(k);
47 _border_handler.configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
48}
49
Anthony Barbier46d59272017-05-04 09:15:15 +010050template <unsigned int matrix_size>
Kaizen8938bd32017-09-28 14:38:23 +010051NEConvolutionSquare<matrix_size>::NEConvolutionSquare(std::shared_ptr<IMemoryManager> memory_manager)
52 : _memory_group(std::move(memory_manager)), _tmp(), _is_separable(false), _kernel_hor(), _kernel_vert(), _kernel(), _border_handler()
Anthony Barbier871448e2017-03-24 14:54:29 +000053{
54}
55
Anthony Barbier46d59272017-05-04 09:15:15 +010056template <unsigned int matrix_size>
Anthony Barbierf45d5a92018-01-24 16:23:15 +000057void NEConvolutionSquare<matrix_size>::configure(ITensor *input, ITensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode,
58 uint8_t constant_border_value)
Anthony Barbier871448e2017-03-24 14:54:29 +000059{
60 ARM_COMPUTE_ERROR_ON(conv == nullptr);
61 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
62 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8, DataType::S16);
63
Anthony Barbier46d59272017-05-04 09:15:15 +010064 std::array<int16_t, matrix_size> conv_col{ { 0 } };
65 std::array<int16_t, matrix_size> conv_row{ { 0 } };
Anthony Barbier871448e2017-03-24 14:54:29 +000066
Anthony Barbier46d59272017-05-04 09:15:15 +010067 _is_separable = separate_matrix(conv, conv_col.data(), conv_row.data(), matrix_size);
Anthony Barbier871448e2017-03-24 14:54:29 +000068
69 if(_is_separable)
70 {
71 DataType intermediate_type = DataType::UNKNOWN;
Anthony Barbier46d59272017-05-04 09:15:15 +010072 std::tie(std::ignore, intermediate_type) = data_type_for_convolution(conv_col.data(), conv_row.data(), matrix_size);
Anthony Barbier871448e2017-03-24 14:54:29 +000073
74 _tmp.allocator()->init(TensorInfo(input->info()->tensor_shape(), 1, intermediate_type));
75
Kaizen8938bd32017-09-28 14:38:23 +010076 // Manage intermediate buffers
77 _memory_group.manage(&_tmp);
78
79 // Calculate scale
Anthony Barbier871448e2017-03-24 14:54:29 +000080 if(scale == 0)
81 {
Anthony Barbier46d59272017-05-04 09:15:15 +010082 scale = calculate_matrix_scale(conv, matrix_size);
Anthony Barbier871448e2017-03-24 14:54:29 +000083 }
84
85 _kernel_hor.configure(input, &_tmp, conv_row.data(), border_mode == BorderMode::UNDEFINED);
86 _kernel_vert.configure(&_tmp, output, conv_col.data(), scale, border_mode == BorderMode::UNDEFINED);
87
88 _tmp.allocator()->allocate();
89
90 _border_handler.configure(input, _kernel_hor.border_size(), border_mode, PixelValue(constant_border_value));
91 }
92 else
93 {
94 _kernel.configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
95 _border_handler.configure(input, _kernel.border_size(), border_mode, PixelValue(constant_border_value));
96 }
97}
98
Anthony Barbier46d59272017-05-04 09:15:15 +010099template <unsigned int matrix_size>
100void NEConvolutionSquare<matrix_size>::run()
Anthony Barbier871448e2017-03-24 14:54:29 +0000101{
Kaizen8938bd32017-09-28 14:38:23 +0100102 NEScheduler::get().schedule(&_border_handler, Window::DimZ);
Anthony Barbier871448e2017-03-24 14:54:29 +0000103
104 if(_is_separable)
105 {
Kaizen8938bd32017-09-28 14:38:23 +0100106 _memory_group.acquire();
107
Anthony Barbierdbdab852017-06-23 15:42:00 +0100108 NEScheduler::get().schedule(&_kernel_hor, Window::DimY);
109 NEScheduler::get().schedule(&_kernel_vert, Window::DimY);
Kaizen8938bd32017-09-28 14:38:23 +0100110
111 _memory_group.release();
Anthony Barbier871448e2017-03-24 14:54:29 +0000112 }
113 else
114 {
Anthony Barbierdbdab852017-06-23 15:42:00 +0100115 NEScheduler::get().schedule(&_kernel, Window::DimY);
Anthony Barbier871448e2017-03-24 14:54:29 +0000116 }
117}
118
Anthony Barbier46d59272017-05-04 09:15:15 +0100119template class arm_compute::NEConvolutionSquare<5>;
120template class arm_compute::NEConvolutionSquare<7>;
121template class arm_compute::NEConvolutionSquare<9>;
Anthony Barbier871448e2017-03-24 14:54:29 +0000122
123void 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)
124{
Kaizen8938bd32017-09-28 14:38:23 +0100125 auto k = arm_compute::support::cpp14::make_unique<NEConvolutionRectangleKernel>();
Anthony Barbier871448e2017-03-24 14:54:29 +0000126 k->configure(input, output, conv, rows, cols, scale, border_mode == BorderMode::UNDEFINED);
127 _kernel = std::move(k);
128 _border_handler.configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
129}