blob: a9b086773cb3fa9bf97a844288367746ed9fe23d [file] [log] [blame]
Anthony Barbier871448e2017-03-24 14:54:29 +00001/*
2 * Copyright (c) 2016, 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 */
24#include "arm_compute/runtime/CL/functions/CLConvolution.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/CL/kernels/CLConvolutionKernel.h"
28#include "arm_compute/core/Error.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000029#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/CL/CLScheduler.h"
34#include "arm_compute/runtime/ITensorAllocator.h"
Kaizen8938bd32017-09-28 14:38:23 +010035#include "support/ToolchainSupport.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000036
37#include <utility>
38
39using namespace arm_compute;
40
41void CLConvolution3x3::configure(ICLTensor *input, ICLTensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
42{
Kaizen8938bd32017-09-28 14:38:23 +010043 auto k = arm_compute::support::cpp14::make_unique<CLConvolution3x3Kernel>();
Anthony Barbier871448e2017-03-24 14:54:29 +000044 k->configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
45 _kernel = std::move(k);
46 _border_handler.configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
47}
48
49template <unsigned int matrix_size>
Kaizen8938bd32017-09-28 14:38:23 +010050CLConvolutionSquare<matrix_size>::CLConvolutionSquare(std::shared_ptr<IMemoryManager> memory_manager)
51 : _memory_group(std::move(memory_manager)), _tmp(), _is_separable(false), _kernel_hor(), _kernel_vert(), _kernel(), _border_handler()
Anthony Barbier871448e2017-03-24 14:54:29 +000052{
53}
54
55template <unsigned int matrix_size>
56void CLConvolutionSquare<matrix_size>::configure(ICLTensor *input, ICLTensor *output, const int16_t *conv, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
57{
58 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
59 ARM_COMPUTE_ERROR_ON(conv == nullptr);
60 int16_t conv_col[matrix_size];
61 int16_t conv_row[matrix_size];
62 _is_separable = separate_matrix(conv, conv_col, conv_row, matrix_size);
63
64 if(_is_separable)
65 {
66 std::pair<DataType, DataType> type_pair = data_type_for_convolution(conv_col, conv_row, matrix_size);
67 _tmp.allocator()->init(TensorInfo(input->info()->tensor_shape(), 1, type_pair.first));
68
Kaizen8938bd32017-09-28 14:38:23 +010069 // Manage intermediate buffers
70 _memory_group.manage(&_tmp);
71
Anthony Barbier871448e2017-03-24 14:54:29 +000072 if(scale == 0)
73 {
74 scale = calculate_matrix_scale(conv, matrix_size);
75 }
76
77 _kernel_hor.configure(input, &_tmp, conv_row, border_mode == BorderMode::UNDEFINED);
78 _kernel_vert.configure(&_tmp, output, conv_col, scale, border_mode == BorderMode::UNDEFINED, type_pair.second);
79 _border_handler.configure(input, _kernel_hor.border_size(), border_mode, PixelValue(constant_border_value));
80
81 // Allocate intermediate buffer
82 _tmp.allocator()->allocate();
83 }
84 else
85 {
86 _kernel.configure(input, output, conv, scale, border_mode == BorderMode::UNDEFINED);
87 _border_handler.configure(input, _kernel.border_size(), border_mode, PixelValue(constant_border_value));
88 }
89}
90
91template <unsigned int matrix_size>
92void CLConvolutionSquare<matrix_size>::run()
93{
94 CLScheduler::get().enqueue(_border_handler);
95
96 if(_is_separable)
97 {
Kaizen8938bd32017-09-28 14:38:23 +010098 _memory_group.acquire();
99
Anthony Barbier871448e2017-03-24 14:54:29 +0000100 CLScheduler::get().enqueue(_kernel_hor, false);
101 CLScheduler::get().enqueue(_kernel_vert);
Kaizen8938bd32017-09-28 14:38:23 +0100102
103 _memory_group.release();
Anthony Barbier871448e2017-03-24 14:54:29 +0000104 }
105 else
106 {
107 CLScheduler::get().enqueue(_kernel);
108 }
109}
110
111template class arm_compute::CLConvolutionSquare<5>;
112template class arm_compute::CLConvolutionSquare<7>;
113template class arm_compute::CLConvolutionSquare<9>;
114
115void CLConvolutionRectangle::configure(ICLTensor *input, ICLTensor *output, const int16_t *conv, uint32_t rows, uint32_t cols, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
116{
Kaizen8938bd32017-09-28 14:38:23 +0100117 auto k = arm_compute::support::cpp14::make_unique<CLConvolutionRectangleKernel>();
Anthony Barbier871448e2017-03-24 14:54:29 +0000118 k->configure(input, output, conv, rows, cols, scale, border_mode == BorderMode::UNDEFINED);
119 _kernel = std::move(k);
120 _border_handler.configure(input, _kernel->border_size(), border_mode, PixelValue(constant_border_value));
121}