blob: 826b265dbf412ce2987e40d0c78f57a2dfc46998 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Gian Marco05288a22017-11-21 10:57:50 +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/core/CL/kernels/CLGEMMLowpReductionKernel.h"
25
Gian Marco Iodice4b908652018-10-18 10:21:02 +010026#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco05288a22017-11-21 10:57:50 +000027#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010028#include "arm_compute/core/KernelDescriptors.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010029#include "src/core/AccessWindowStatic.h"
30#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000032#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000033
Gian Marco05288a22017-11-21 10:57:50 +000034namespace arm_compute
35{
Georgios Pinitas358ca202017-12-07 16:47:52 +000036namespace
37{
38Status validate_arguments_matrix_a_reduction(const ITensorInfo *input, const ITensorInfo *output)
39{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010040 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +010041 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8);
Georgios Pinitas358ca202017-12-07 16:47:52 +000042
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010043 if(output->total_size() > 0)
44 {
45 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
46 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(0) != input->dimension(1), "Output vector must have length equal to the number of rows of the input matrix");
47 }
Georgios Pinitas358ca202017-12-07 16:47:52 +000048 return Status{};
49}
Georgios Pinitas358ca202017-12-07 16:47:52 +000050
51Status validate_arguments_matrix_b_reduction(const ITensorInfo *input, const ITensorInfo *output)
52{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010053 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
morgolockd13931d2020-06-23 15:49:35 +010054 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::QSYMM8, DataType::QSYMM8_PER_CHANNEL);
Georgios Pinitas358ca202017-12-07 16:47:52 +000055
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010056 if(output->total_size() > 0)
57 {
58 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
59 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->dimension(0) != input->dimension(0), "Output vector must have length equal to the number of columns of the input matrix");
60 }
Georgios Pinitas358ca202017-12-07 16:47:52 +000061 return Status{};
62}
63
64std::pair<Status, Window> validate_and_configure_window_matrix_b_reduction(ITensorInfo *input, ITensorInfo *output)
65{
66 constexpr unsigned int num_elems_processed_per_iteration = 16;
67
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +010068 // Output auto initialization if not yet initialized
69 auto_init_if_empty(*output, TensorShape(input->dimension(0)), 1, DataType::S32);
70
Georgios Pinitas358ca202017-12-07 16:47:52 +000071 // Configure kernel window
72 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
73
74 AccessWindowStatic input_access(input, 0, 0, ceil_to_multiple(input->dimension(0), num_elems_processed_per_iteration), input->dimension(1));
75 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
76
77 bool window_changed = update_window_and_padding(win, input_access, output_access);
78
79 output_access.set_valid_region(win, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
80
81 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
82 return std::make_pair(err, win);
83}
84} // namespace
85
Gian Marco05288a22017-11-21 10:57:50 +000086ICLGEMMLowpReductionKernel::ICLGEMMLowpReductionKernel()
87 : _input(), _output()
88{
89}
90
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010091void CLGEMMLowpMatrixAReductionKernel::configure(const ICLTensor *mtx_a, ICLTensor *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Gian Marco05288a22017-11-21 10:57:50 +000092{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010093 configure(CLKernelLibrary::get().get_compile_context(), mtx_a, vector_sum_row, info);
94}
95
Manuel Bottini679fc962020-04-21 16:08:53 +010096void CLGEMMLowpMatrixAReductionKernel::configure(const CLCompileContext &compile_context, const ICLTensor *mtx_a, ICLTensor *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010097{
Georgios Pinitas358ca202017-12-07 16:47:52 +000098 // Perform validate step
99 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_a, vector_sum_row);
100 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_a_reduction(mtx_a->info(), vector_sum_row->info()));
Gian Marco05288a22017-11-21 10:57:50 +0000101
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +0100102 // Output auto initialization if not yet initialized
103 auto_init_if_empty(*vector_sum_row->info(), TensorShape(mtx_a->info()->dimension(1)), 1, DataType::S32);
104
Gian Marco05288a22017-11-21 10:57:50 +0000105 _input = mtx_a;
106 _output = vector_sum_row;
107
108 // Set the arguments to pass at compile time
109 CLBuildOptions build_opts;
110 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(mtx_a->info()->dimension(0)));
Manuel Bottini959c26d2019-12-02 16:22:35 +0000111 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(mtx_a->info()->data_type()));
Michele Di Giorgioe7b333e2020-01-15 10:30:51 +0000112 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(mtx_a->info()->data_type()));
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100113 build_opts.add_option_if(info.mul_by_scalar, "-DSCALAR=" + support::cpp11::to_string(info.scalar));
Gian Marco05288a22017-11-21 10:57:50 +0000114
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100115 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device());
116
117 std::string kernel_name = "gemmlowp_matrix_a_reduction" + std::string(is_dot8_supported ? "_dot8" : "");
118
Gian Marco05288a22017-11-21 10:57:50 +0000119 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100120 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000121
Gian Marco05288a22017-11-21 10:57:50 +0000122 // Configure kernel window
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100123 // This kernel does not need padding
124 Window win = calculate_max_window(*vector_sum_row->info(), Steps());
125 ICLKernel::configure_internal(win);
Gian Marco Iodice2b52add2019-06-13 15:58:32 +0100126
127 _config_id = kernel_name;
128 _config_id += "_";
129 _config_id += support::cpp11::to_string(_input->info()->dimension(0));
130 _config_id += "_";
131 _config_id += support::cpp11::to_string(_input->info()->dimension(1));
132 _config_id += "_";
133 _config_id += support::cpp11::to_string(_input->info()->dimension(2));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000134}
Gian Marco05288a22017-11-21 10:57:50 +0000135
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100136Status CLGEMMLowpMatrixAReductionKernel::validate(const ITensorInfo *mtx_a, const ITensorInfo *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000137{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100138 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000139 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_a_reduction(mtx_a, vector_sum_row));
Gian Marco05288a22017-11-21 10:57:50 +0000140
Georgios Pinitas358ca202017-12-07 16:47:52 +0000141 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000142}
143
144void CLGEMMLowpMatrixAReductionKernel::run(const Window &window, cl::CommandQueue &queue)
145{
146 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
147 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
148
149 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimY);
150 Window slice_in = collapsed.first_slice_window_2D();
151 Window slice_out = collapsed.first_slice_window_2D();
152
153 // Setup input slice. Its dimensions are increased in the cl kernel.
154 slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
155 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
156 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
157
158 do
159 {
160 unsigned int idx = 0;
161 add_3D_tensor_argument(idx, _input, slice_in);
162 add_2D_tensor_argument(idx, _output, slice_out);
Gian Marco Iodice2b52add2019-06-13 15:58:32 +0100163 enqueue(queue, *this, slice_out, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000164 }
165 while(collapsed.slide_window_slice_2D(slice_out));
166}
167
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100168void CLGEMMLowpMatrixBReductionKernel::configure(const ICLTensor *mtx_b, ICLTensor *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Gian Marco05288a22017-11-21 10:57:50 +0000169{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100170 configure(CLKernelLibrary::get().get_compile_context(), mtx_b, vector_sum_col, info);
171}
172
Manuel Bottini679fc962020-04-21 16:08:53 +0100173void CLGEMMLowpMatrixBReductionKernel::configure(const CLCompileContext &compile_context, const ICLTensor *mtx_b, ICLTensor *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100174{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000175 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_b, vector_sum_col);
176 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_b_reduction(mtx_b->info(), vector_sum_col->info()));
Gian Marco05288a22017-11-21 10:57:50 +0000177
178 _input = mtx_b;
179 _output = vector_sum_col;
180
181 // Set the arguments to pass at compile time
182 CLBuildOptions build_opts;
183 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(mtx_b->info()->dimension(0)));
184 build_opts.add_option("-DROWS_B=" + support::cpp11::to_string(mtx_b->info()->dimension(1)));
Manuel Bottini959c26d2019-12-02 16:22:35 +0000185 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(mtx_b->info()->data_type()));
Michele Di Giorgioe7b333e2020-01-15 10:30:51 +0000186 build_opts.add_option("-DACC_DATA_TYPE=" + get_cl_dot8_acc_type_from_data_type(mtx_b->info()->data_type()));
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100187 build_opts.add_option_if(info.mul_by_scalar, "-DSCALAR=" + support::cpp11::to_string(info.scalar));
Gian Marco05288a22017-11-21 10:57:50 +0000188
189 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100190 _kernel = create_kernel(compile_context, "gemmlowp_matrix_b_reduction", build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000191
Gian Marco05288a22017-11-21 10:57:50 +0000192 // Configure kernel window
Georgios Pinitas358ca202017-12-07 16:47:52 +0000193 auto win_config = validate_and_configure_window_matrix_b_reduction(_input->info(), _output->info());
194 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100195 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000196}
Gian Marco05288a22017-11-21 10:57:50 +0000197
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100198Status CLGEMMLowpMatrixBReductionKernel::validate(const ITensorInfo *mtx_b, const ITensorInfo *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000199{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100200 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000201 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_b_reduction(mtx_b, vector_sum_col));
202 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window_matrix_b_reduction(mtx_b->clone().get(), vector_sum_col->clone().get()).first);
Gian Marco05288a22017-11-21 10:57:50 +0000203
Georgios Pinitas358ca202017-12-07 16:47:52 +0000204 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000205}
206
207void CLGEMMLowpMatrixBReductionKernel::run(const Window &window, cl::CommandQueue &queue)
208{
209 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
210 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
211
212 Window collapsed = window.collapse_if_possible(IKernel::window(), Window::DimY);
213
214 Window slice_out = collapsed.first_slice_window_2D();
215 Window slice_in = slice_out;
216
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100217 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
218 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000219
220 do
221 {
222 unsigned int idx = 0;
223 add_3D_tensor_argument(idx, _input, slice_in);
224 add_2D_tensor_argument(idx, _output, slice_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100225 enqueue(queue, *this, slice_out, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000226 }
227 while(collapsed.slide_window_slice_2D(slice_out));
228}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100229} // namespace arm_compute