blob: 339049ff9ad1194485e1fd032c39646397ca6e9c [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}
Georgios Pinitas358ca202017-12-07 16:47:52 +000063} // namespace
64
Gian Marco05288a22017-11-21 10:57:50 +000065ICLGEMMLowpReductionKernel::ICLGEMMLowpReductionKernel()
66 : _input(), _output()
67{
68}
69
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010070void CLGEMMLowpMatrixAReductionKernel::configure(const ICLTensor *mtx_a, ICLTensor *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Gian Marco05288a22017-11-21 10:57:50 +000071{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010072 configure(CLKernelLibrary::get().get_compile_context(), mtx_a, vector_sum_row, info);
73}
74
Manuel Bottini679fc962020-04-21 16:08:53 +010075void CLGEMMLowpMatrixAReductionKernel::configure(const CLCompileContext &compile_context, const ICLTensor *mtx_a, ICLTensor *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010076{
Georgios Pinitas358ca202017-12-07 16:47:52 +000077 // Perform validate step
78 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_a, vector_sum_row);
79 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_a_reduction(mtx_a->info(), vector_sum_row->info()));
Gian Marco05288a22017-11-21 10:57:50 +000080
Michele Di Giorgio1c1b3aa2020-04-02 17:35:42 +010081 // Output auto initialization if not yet initialized
82 auto_init_if_empty(*vector_sum_row->info(), TensorShape(mtx_a->info()->dimension(1)), 1, DataType::S32);
83
Michele Di Giorgioaae34102020-10-19 15:31:45 +010084 auto padding_info = get_padding_info({ mtx_a, vector_sum_row });
85
Gian Marco05288a22017-11-21 10:57:50 +000086 _input = mtx_a;
87 _output = vector_sum_row;
88
89 // Set the arguments to pass at compile time
90 CLBuildOptions build_opts;
91 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(mtx_a->info()->dimension(0)));
Manuel Bottini959c26d2019-12-02 16:22:35 +000092 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 +000093 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 +010094 build_opts.add_option_if(info.mul_by_scalar, "-DSCALAR=" + support::cpp11::to_string(info.scalar));
Gian Marco05288a22017-11-21 10:57:50 +000095
Gian Marco Iodice4b908652018-10-18 10:21:02 +010096 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device());
97
98 std::string kernel_name = "gemmlowp_matrix_a_reduction" + std::string(is_dot8_supported ? "_dot8" : "");
99
Gian Marco05288a22017-11-21 10:57:50 +0000100 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100101 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000102
Gian Marco05288a22017-11-21 10:57:50 +0000103 // Configure kernel window
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100104 // This kernel does not need padding
105 Window win = calculate_max_window(*vector_sum_row->info(), Steps());
106 ICLKernel::configure_internal(win);
Gian Marco Iodice2b52add2019-06-13 15:58:32 +0100107
108 _config_id = kernel_name;
109 _config_id += "_";
110 _config_id += support::cpp11::to_string(_input->info()->dimension(0));
111 _config_id += "_";
112 _config_id += support::cpp11::to_string(_input->info()->dimension(1));
113 _config_id += "_";
114 _config_id += support::cpp11::to_string(_input->info()->dimension(2));
Michele Di Giorgioaae34102020-10-19 15:31:45 +0100115
116 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000117}
Gian Marco05288a22017-11-21 10:57:50 +0000118
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100119Status CLGEMMLowpMatrixAReductionKernel::validate(const ITensorInfo *mtx_a, const ITensorInfo *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000120{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100121 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000122 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_a_reduction(mtx_a, vector_sum_row));
Gian Marco05288a22017-11-21 10:57:50 +0000123
Georgios Pinitas358ca202017-12-07 16:47:52 +0000124 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000125}
126
127void CLGEMMLowpMatrixAReductionKernel::run(const Window &window, cl::CommandQueue &queue)
128{
129 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
130 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
131
132 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimY);
133 Window slice_in = collapsed.first_slice_window_2D();
134 Window slice_out = collapsed.first_slice_window_2D();
135
136 // Setup input slice. Its dimensions are increased in the cl kernel.
137 slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
138 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
139 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
140
141 do
142 {
143 unsigned int idx = 0;
144 add_3D_tensor_argument(idx, _input, slice_in);
145 add_2D_tensor_argument(idx, _output, slice_out);
Gian Marco Iodice2b52add2019-06-13 15:58:32 +0100146 enqueue(queue, *this, slice_out, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000147 }
148 while(collapsed.slide_window_slice_2D(slice_out));
149}
150
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100151void CLGEMMLowpMatrixBReductionKernel::configure(const ICLTensor *mtx_b, ICLTensor *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Gian Marco05288a22017-11-21 10:57:50 +0000152{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100153 configure(CLKernelLibrary::get().get_compile_context(), mtx_b, vector_sum_col, info);
154}
155
Manuel Bottini679fc962020-04-21 16:08:53 +0100156void CLGEMMLowpMatrixBReductionKernel::configure(const CLCompileContext &compile_context, const ICLTensor *mtx_b, ICLTensor *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100157{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000158 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_b, vector_sum_col);
159 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_b_reduction(mtx_b->info(), vector_sum_col->info()));
Gian Marco05288a22017-11-21 10:57:50 +0000160
161 _input = mtx_b;
162 _output = vector_sum_col;
163
Michele Di Giorgioaae34102020-10-19 15:31:45 +0100164 // Output auto initialization if not yet initialized
165 auto_init_if_empty(*_output->info(), TensorShape(mtx_b->info()->dimension(0)), 1, DataType::S32);
166
167 auto padding_info = get_padding_info({ mtx_b, vector_sum_col });
168
169 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(16, mtx_b->info()->dimension(0));
170
Gian Marco05288a22017-11-21 10:57:50 +0000171 // Set the arguments to pass at compile time
172 CLBuildOptions build_opts;
Michele Di Giorgioaae34102020-10-19 15:31:45 +0100173 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
174 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(mtx_b->info()->dimension(0) % num_elems_processed_per_iteration));
Gian Marco05288a22017-11-21 10:57:50 +0000175 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(mtx_b->info()->dimension(0)));
176 build_opts.add_option("-DROWS_B=" + support::cpp11::to_string(mtx_b->info()->dimension(1)));
Manuel Bottini959c26d2019-12-02 16:22:35 +0000177 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 +0000178 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 +0100179 build_opts.add_option_if(info.mul_by_scalar, "-DSCALAR=" + support::cpp11::to_string(info.scalar));
Gian Marco05288a22017-11-21 10:57:50 +0000180
181 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100182 _kernel = create_kernel(compile_context, "gemmlowp_matrix_b_reduction", build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000183
Gian Marco05288a22017-11-21 10:57:50 +0000184 // Configure kernel window
Michele Di Giorgioaae34102020-10-19 15:31:45 +0100185 Window win = calculate_max_window(*_output->info(), Steps(num_elems_processed_per_iteration));
186 ICLKernel::configure_internal(win);
187
188 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000189}
Gian Marco05288a22017-11-21 10:57:50 +0000190
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100191Status CLGEMMLowpMatrixBReductionKernel::validate(const ITensorInfo *mtx_b, const ITensorInfo *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000192{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100193 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000194 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_b_reduction(mtx_b, vector_sum_col));
Gian Marco05288a22017-11-21 10:57:50 +0000195
Georgios Pinitas358ca202017-12-07 16:47:52 +0000196 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000197}
198
199void CLGEMMLowpMatrixBReductionKernel::run(const Window &window, cl::CommandQueue &queue)
200{
201 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
202 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
203
204 Window collapsed = window.collapse_if_possible(IKernel::window(), Window::DimY);
205
206 Window slice_out = collapsed.first_slice_window_2D();
207 Window slice_in = slice_out;
208
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100209 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
210 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000211
212 do
213 {
214 unsigned int idx = 0;
215 add_3D_tensor_argument(idx, _input, slice_in);
216 add_2D_tensor_argument(idx, _output, slice_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100217 enqueue(queue, *this, slice_out, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000218 }
219 while(collapsed.slide_window_slice_2D(slice_out));
220}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100221} // namespace arm_compute