blob: 832e6281f4b01293ecd924d9c95449684b78a544 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Manuel Bottini959c26d2019-12-02 16:22:35 +00002 * 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
26#include "arm_compute/core/AccessWindowStatic.h"
Gian Marco Iodice4b908652018-10-18 10:21:02 +010027#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco05288a22017-11-21 10:57:50 +000028#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010029#include "arm_compute/core/KernelDescriptors.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000030#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000031
Gian Marco05288a22017-11-21 10:57:50 +000032namespace arm_compute
33{
Georgios Pinitas358ca202017-12-07 16:47:52 +000034namespace
35{
36Status validate_arguments_matrix_a_reduction(const ITensorInfo *input, const ITensorInfo *output)
37{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010038 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini959c26d2019-12-02 16:22:35 +000039 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Georgios Pinitas358ca202017-12-07 16:47:52 +000040
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010041 if(output->total_size() > 0)
42 {
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
44 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");
45 }
Georgios Pinitas358ca202017-12-07 16:47:52 +000046 return Status{};
47}
Georgios Pinitas358ca202017-12-07 16:47:52 +000048
49Status validate_arguments_matrix_b_reduction(const ITensorInfo *input, const ITensorInfo *output)
50{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010051 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini959c26d2019-12-02 16:22:35 +000052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Georgios Pinitas358ca202017-12-07 16:47:52 +000053
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010054 if(output->total_size() > 0)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
57 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");
58 }
Georgios Pinitas358ca202017-12-07 16:47:52 +000059 return Status{};
60}
61
62std::pair<Status, Window> validate_and_configure_window_matrix_b_reduction(ITensorInfo *input, ITensorInfo *output)
63{
64 constexpr unsigned int num_elems_processed_per_iteration = 16;
65
66 // Configure kernel window
67 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
68
69 AccessWindowStatic input_access(input, 0, 0, ceil_to_multiple(input->dimension(0), num_elems_processed_per_iteration), input->dimension(1));
70 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
71
72 bool window_changed = update_window_and_padding(win, input_access, output_access);
73
74 output_access.set_valid_region(win, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
75
76 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
77 return std::make_pair(err, win);
78}
79} // namespace
80
Gian Marco05288a22017-11-21 10:57:50 +000081ICLGEMMLowpReductionKernel::ICLGEMMLowpReductionKernel()
82 : _input(), _output()
83{
84}
85
Michele Di Giorgiof64d3362020-04-03 12:40:10 +010086void CLGEMMLowpMatrixAReductionKernel::configure(const ICLTensor *mtx_a, ICLTensor *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Gian Marco05288a22017-11-21 10:57:50 +000087{
Georgios Pinitas358ca202017-12-07 16:47:52 +000088 // Perform validate step
89 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_a, vector_sum_row);
90 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_a_reduction(mtx_a->info(), vector_sum_row->info()));
Gian Marco05288a22017-11-21 10:57:50 +000091
92 _input = mtx_a;
93 _output = vector_sum_row;
94
95 // Set the arguments to pass at compile time
96 CLBuildOptions build_opts;
97 build_opts.add_option("-DCOLS_A=" + support::cpp11::to_string(mtx_a->info()->dimension(0)));
Manuel Bottini959c26d2019-12-02 16:22:35 +000098 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 +000099 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 +0100100 build_opts.add_option_if(info.mul_by_scalar, "-DSCALAR=" + support::cpp11::to_string(info.scalar));
Gian Marco05288a22017-11-21 10:57:50 +0000101
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100102 const bool is_dot8_supported = dot8_supported(CLKernelLibrary::get().get_device());
103
104 std::string kernel_name = "gemmlowp_matrix_a_reduction" + std::string(is_dot8_supported ? "_dot8" : "");
105
Gian Marco05288a22017-11-21 10:57:50 +0000106 // Create kernel
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100107 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(kernel_name, build_opts.options()));
Gian Marco05288a22017-11-21 10:57:50 +0000108
Gian Marco05288a22017-11-21 10:57:50 +0000109 // Configure kernel window
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100110 // This kernel does not need padding
111 Window win = calculate_max_window(*vector_sum_row->info(), Steps());
112 ICLKernel::configure_internal(win);
Gian Marco Iodice2b52add2019-06-13 15:58:32 +0100113
114 _config_id = kernel_name;
115 _config_id += "_";
116 _config_id += support::cpp11::to_string(_input->info()->dimension(0));
117 _config_id += "_";
118 _config_id += support::cpp11::to_string(_input->info()->dimension(1));
119 _config_id += "_";
120 _config_id += support::cpp11::to_string(_input->info()->dimension(2));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000121}
Gian Marco05288a22017-11-21 10:57:50 +0000122
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100123Status CLGEMMLowpMatrixAReductionKernel::validate(const ITensorInfo *mtx_a, const ITensorInfo *vector_sum_row, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000124{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100125 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000126 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_a_reduction(mtx_a, vector_sum_row));
Gian Marco05288a22017-11-21 10:57:50 +0000127
Georgios Pinitas358ca202017-12-07 16:47:52 +0000128 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000129}
130
131void CLGEMMLowpMatrixAReductionKernel::run(const Window &window, cl::CommandQueue &queue)
132{
133 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
134 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
135
136 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimY);
137 Window slice_in = collapsed.first_slice_window_2D();
138 Window slice_out = collapsed.first_slice_window_2D();
139
140 // Setup input slice. Its dimensions are increased in the cl kernel.
141 slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
142 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
143 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
144
145 do
146 {
147 unsigned int idx = 0;
148 add_3D_tensor_argument(idx, _input, slice_in);
149 add_2D_tensor_argument(idx, _output, slice_out);
Gian Marco Iodice2b52add2019-06-13 15:58:32 +0100150 enqueue(queue, *this, slice_out, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000151 }
152 while(collapsed.slide_window_slice_2D(slice_out));
153}
154
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100155void CLGEMMLowpMatrixBReductionKernel::configure(const ICLTensor *mtx_b, ICLTensor *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Gian Marco05288a22017-11-21 10:57:50 +0000156{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000157 ARM_COMPUTE_ERROR_ON_NULLPTR(mtx_b, vector_sum_col);
158 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_matrix_b_reduction(mtx_b->info(), vector_sum_col->info()));
Gian Marco05288a22017-11-21 10:57:50 +0000159
160 _input = mtx_b;
161 _output = vector_sum_col;
162
163 // Set the arguments to pass at compile time
164 CLBuildOptions build_opts;
165 build_opts.add_option("-DCOLS_B=" + support::cpp11::to_string(mtx_b->info()->dimension(0)));
166 build_opts.add_option("-DROWS_B=" + support::cpp11::to_string(mtx_b->info()->dimension(1)));
Manuel Bottini959c26d2019-12-02 16:22:35 +0000167 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 +0000168 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 +0100169 build_opts.add_option_if(info.mul_by_scalar, "-DSCALAR=" + support::cpp11::to_string(info.scalar));
Gian Marco05288a22017-11-21 10:57:50 +0000170
171 // Create kernel
172 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_matrix_b_reduction", build_opts.options()));
173
Gian Marco05288a22017-11-21 10:57:50 +0000174 // Configure kernel window
Georgios Pinitas358ca202017-12-07 16:47:52 +0000175 auto win_config = validate_and_configure_window_matrix_b_reduction(_input->info(), _output->info());
176 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100177 ICLKernel::configure_internal(win_config.second);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000178}
Gian Marco05288a22017-11-21 10:57:50 +0000179
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100180Status CLGEMMLowpMatrixBReductionKernel::validate(const ITensorInfo *mtx_b, const ITensorInfo *vector_sum_col, const GEMMLowpReductionKernelInfo &info)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000181{
Michele Di Giorgiof64d3362020-04-03 12:40:10 +0100182 ARM_COMPUTE_UNUSED(info);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000183 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_matrix_b_reduction(mtx_b, vector_sum_col));
184 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 +0000185
Georgios Pinitas358ca202017-12-07 16:47:52 +0000186 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000187}
188
189void CLGEMMLowpMatrixBReductionKernel::run(const Window &window, cl::CommandQueue &queue)
190{
191 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
192 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
193
194 Window collapsed = window.collapse_if_possible(IKernel::window(), Window::DimY);
195
196 Window slice_out = collapsed.first_slice_window_2D();
197 Window slice_in = slice_out;
198
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100199 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
200 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000201
202 do
203 {
204 unsigned int idx = 0;
205 add_3D_tensor_argument(idx, _input, slice_in);
206 add_2D_tensor_argument(idx, _output, slice_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100207 enqueue(queue, *this, slice_out, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000208 }
209 while(collapsed.slide_window_slice_2D(slice_out));
210}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100211} // namespace arm_compute