blob: af80c4d7968dd68730aadd0527d8d5a377bdd18c [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrou702dc0c2021-03-19 15:06:07 +00002 * Copyright (c) 2017-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClWeightsReshapeKernel.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010025
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/Error.h"
Georgios Pinitas78c00902018-01-09 17:33:11 +000028#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010030#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Manuel Bottinid87aded2021-07-16 10:23:31 +010032#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000033#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000035namespace arm_compute
36{
Manuel Bottinid87aded2021-07-16 10:23:31 +010037using namespace misc::shape_calculator;
38namespace opencl
39{
40namespace kernels
41{
Georgios Pinitas78c00902018-01-09 17:33:11 +000042namespace
43{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010044Status validate_arguments(const ITensorInfo *input,
45 const ITensorInfo *biases,
46 const ITensorInfo *output,
47 unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +000048{
49 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000050 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Giorgio Arenac6aa49b2018-08-07 11:53:30 +010051 ARM_COMPUTE_RETURN_ERROR_ON(num_groups == 0);
52 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() == DataLayout::NHWC && num_groups > 1);
53 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4 && num_groups > 1);
54 ARM_COMPUTE_RETURN_ERROR_ON((input->dimension(3) % num_groups) != 0);
Georgios Pinitas78c00902018-01-09 17:33:11 +000055
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010056 if (biases != nullptr)
Georgios Pinitas78c00902018-01-09 17:33:11 +000057 {
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000058 ARM_COMPUTE_RETURN_ERROR_ON(!is_data_type_float(input->data_type()));
Georgios Pinitas78c00902018-01-09 17:33:11 +000059 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
Georgios Pinitas78c00902018-01-09 17:33:11 +000060 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->num_dimensions() != 1));
61 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->num_dimensions() != 2));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) &&
63 (biases->dimension(0) != input->tensor_shape()[3]));
64 ARM_COMPUTE_RETURN_ERROR_ON(
65 (input->num_dimensions() == 5) &&
66 (biases->dimension(0) != input->tensor_shape()[3] || biases->dimension(1) != input->tensor_shape()[4]));
Georgios Pinitas78c00902018-01-09 17:33:11 +000067 }
68
69 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010070 if (output->total_size() != 0)
Georgios Pinitas78c00902018-01-09 17:33:11 +000071 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010072 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(
73 output->tensor_shape(), compute_weights_reshaped_shape(*input, biases != nullptr, num_groups));
Georgios Pinitas78c00902018-01-09 17:33:11 +000074 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Georgios Pinitas78c00902018-01-09 17:33:11 +000075 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
76 }
77
78 return Status{};
79}
80} // namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
Manuel Bottinid87aded2021-07-16 10:23:31 +010082ClWeightsReshapeKernel::ClWeightsReshapeKernel()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010084 _type = CLKernelType::ELEMENTWISE;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085}
86
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010087void ClWeightsReshapeKernel::configure(const ClCompileContext &compile_context,
88 const ITensorInfo *src,
89 const ITensorInfo *biases,
90 ITensorInfo *dst,
91 unsigned int num_groups)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010092{
Manuel Bottinid87aded2021-07-16 10:23:31 +010093 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010094
95 // Output tensor auto inizialitation if not yet initialized
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010096 auto_init_if_empty(
97 *dst, src->clone()->set_tensor_shape(compute_weights_reshaped_shape(*src, (biases != nullptr), num_groups)));
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010098
Georgios Pinitas78c00902018-01-09 17:33:11 +000099 // Perform validation step
Manuel Bottinid87aded2021-07-16 10:23:31 +0100100 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, biases, dst, num_groups));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100101 auto padding_info = get_padding_info({src, biases, dst});
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102
Manuel Bottinid87aded2021-07-16 10:23:31 +0100103 const DataType data_type = src->data_type();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
105 // Create build options
Chunosov5124be52017-11-22 20:42:13 +0700106 CLBuildOptions build_opts;
Sheri Zhang55c0c0c2020-04-14 21:58:37 +0100107 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(data_size_from_type(data_type)));
Giorgio Arenac6aa49b2018-08-07 11:53:30 +0100108 build_opts.add_option("-DNUM_GROUPS=" + support::cpp11::to_string(num_groups));
Chunosov5124be52017-11-22 20:42:13 +0700109 build_opts.add_option_if(biases != nullptr, "-DHAS_BIAS");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
111 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100112 _kernel = create_kernel(compile_context, "reshape_to_columns", build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100114 // Configure window
Manuel Bottinid87aded2021-07-16 10:23:31 +0100115 Window win = calculate_max_window(*src, Steps());
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100116 ICLKernel::configure_internal(win);
Sheri Zhang11d73272020-10-28 14:01:55 +0000117
118 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119}
120
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100121Status ClWeightsReshapeKernel::validate(const ITensorInfo *src,
122 const ITensorInfo *biases,
123 const ITensorInfo *dst,
124 unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000125{
Manuel Bottinid87aded2021-07-16 10:23:31 +0100126 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, biases, dst, num_groups));
Georgios Pinitas78c00902018-01-09 17:33:11 +0000127 return Status{};
128}
129
Manuel Bottinid87aded2021-07-16 10:23:31 +0100130void ClWeightsReshapeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131{
132 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
133 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
134
Manuel Bottinid87aded2021-07-16 10:23:31 +0100135 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
136 auto biases = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
137 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
138
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 Window out_window;
Manuel Bottinid87aded2021-07-16 10:23:31 +0100140 out_window.use_tensor_dimensions(dst->info()->tensor_shape());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141
142 Window in_slice = window.first_slice_window_3D();
143 Window out_slice = out_window.first_slice_window_2D();
144
145 Window biases_window;
146 Window biases_slice;
147
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100148 unsigned int idx = num_arguments_per_3D_tensor() + num_arguments_per_2D_tensor();
Manuel Bottinid87aded2021-07-16 10:23:31 +0100149 idx += (biases != nullptr) ? num_arguments_per_1D_tensor() : 0;
150 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(0));
151 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(1));
152 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(2));
153 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(3));
154 _kernel.setArg<cl_uint>(idx++, dst->info()->strides_in_bytes().z());
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100155
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100156 if (biases != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100157 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100158 biases_window.use_tensor_dimensions(biases->info()->tensor_shape());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159 biases_slice = biases_window.first_slice_window_1D();
160 }
161
162 do
163 {
164 // Set arguments
165 unsigned idx = 0;
Manuel Bottinid87aded2021-07-16 10:23:31 +0100166 add_3D_tensor_argument(idx, src, in_slice);
167 add_2D_tensor_argument(idx, dst, out_slice);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100168 if (biases != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100170 add_1D_tensor_argument(idx, biases, biases_slice);
Michalis Spyrouebdde652019-07-08 11:52:46 +0100171 ARM_COMPUTE_UNUSED(biases_window.slide_window_slice_1D(biases_slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100172 }
173
174 // Run kernel
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100175 enqueue(queue, *this, in_slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100176 } while (window.slide_window_slice_4D(in_slice) && out_window.slide_window_slice_2D(out_slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100177}
Manuel Bottinid87aded2021-07-16 10:23:31 +0100178} // namespace kernels
179} // namespace opencl
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000180} // namespace arm_compute