blob: 8f36345076ca969cd94a7b29867c21ede03d74e1 [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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026#include "arm_compute/core/Error.h"
Georgios Pinitas78c00902018-01-09 17:33:11 +000027#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010028#include "src/core/helpers/AutoConfiguration.h"
29#include "src/core/helpers/WindowHelpers.h"
Manuel Bottinid87aded2021-07-16 10:23:31 +010030#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000031#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000033namespace arm_compute
34{
Manuel Bottinid87aded2021-07-16 10:23:31 +010035using namespace misc::shape_calculator;
36namespace opencl
37{
38namespace kernels
39{
Georgios Pinitas78c00902018-01-09 17:33:11 +000040namespace
41{
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +010042Status validate_arguments(const ITensorInfo *input, const ITensorInfo *biases, const ITensorInfo *output, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +000043{
44 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000045 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Giorgio Arenac6aa49b2018-08-07 11:53:30 +010046 ARM_COMPUTE_RETURN_ERROR_ON(num_groups == 0);
47 ARM_COMPUTE_RETURN_ERROR_ON(input->data_layout() == DataLayout::NHWC && num_groups > 1);
48 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4 && num_groups > 1);
49 ARM_COMPUTE_RETURN_ERROR_ON((input->dimension(3) % num_groups) != 0);
Georgios Pinitas78c00902018-01-09 17:33:11 +000050
51 if(biases != nullptr)
52 {
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000053 ARM_COMPUTE_RETURN_ERROR_ON(!is_data_type_float(input->data_type()));
Georgios Pinitas78c00902018-01-09 17:33:11 +000054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, biases);
Georgios Pinitas78c00902018-01-09 17:33:11 +000055 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->num_dimensions() != 1));
56 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->num_dimensions() != 2));
57 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 4) && (biases->dimension(0) != input->tensor_shape()[3]));
58 ARM_COMPUTE_RETURN_ERROR_ON((input->num_dimensions() == 5) && (biases->dimension(0) != input->tensor_shape()[3] || biases->dimension(1) != input->tensor_shape()[4]));
59 }
60
61 // Checks performed when output is configured
62 if(output->total_size() != 0)
63 {
Giorgio Arenac6aa49b2018-08-07 11:53:30 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), compute_weights_reshaped_shape(*input, biases != nullptr, num_groups));
Georgios Pinitas78c00902018-01-09 17:33:11 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Georgios Pinitas78c00902018-01-09 17:33:11 +000066 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
67 }
68
69 return Status{};
70}
71} // namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072
Manuel Bottinid87aded2021-07-16 10:23:31 +010073ClWeightsReshapeKernel::ClWeightsReshapeKernel()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010075 _type = CLKernelType::ELEMENTWISE;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076}
77
Manuel Bottinid87aded2021-07-16 10:23:31 +010078void ClWeightsReshapeKernel::configure(const ClCompileContext &compile_context, const ITensorInfo *src, const ITensorInfo *biases, ITensorInfo *dst, unsigned int num_groups)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079{
Manuel Bottinid87aded2021-07-16 10:23:31 +010080 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010081
82 // Output tensor auto inizialitation if not yet initialized
Manuel Bottinid87aded2021-07-16 10:23:31 +010083 auto_init_if_empty(*dst, src->clone()->set_tensor_shape(compute_weights_reshaped_shape(*src, (biases != nullptr), num_groups)));
Gian Marco Iodice5cb4c422017-06-23 10:38:25 +010084
Georgios Pinitas78c00902018-01-09 17:33:11 +000085 // Perform validation step
Manuel Bottinid87aded2021-07-16 10:23:31 +010086 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, biases, dst, num_groups));
87 auto padding_info = get_padding_info({ src, biases, dst });
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088
Manuel Bottinid87aded2021-07-16 10:23:31 +010089 const DataType data_type = src->data_type();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090
91 // Create build options
Chunosov5124be52017-11-22 20:42:13 +070092 CLBuildOptions build_opts;
Sheri Zhang55c0c0c2020-04-14 21:58:37 +010093 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 +010094 build_opts.add_option("-DNUM_GROUPS=" + support::cpp11::to_string(num_groups));
Chunosov5124be52017-11-22 20:42:13 +070095 build_opts.add_option_if(biases != nullptr, "-DHAS_BIAS");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096
97 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +010098 _kernel = create_kernel(compile_context, "reshape_to_columns", build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100 // Configure window
Manuel Bottinid87aded2021-07-16 10:23:31 +0100101 Window win = calculate_max_window(*src, Steps());
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100102 ICLKernel::configure_internal(win);
Sheri Zhang11d73272020-10-28 14:01:55 +0000103
104 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105}
106
Manuel Bottinid87aded2021-07-16 10:23:31 +0100107Status ClWeightsReshapeKernel::validate(const ITensorInfo *src, const ITensorInfo *biases, const ITensorInfo *dst, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000108{
Manuel Bottinid87aded2021-07-16 10:23:31 +0100109 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, biases, dst, num_groups));
Georgios Pinitas78c00902018-01-09 17:33:11 +0000110 return Status{};
111}
112
Manuel Bottinid87aded2021-07-16 10:23:31 +0100113void ClWeightsReshapeKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100114{
115 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
116 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
117
Manuel Bottinid87aded2021-07-16 10:23:31 +0100118 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
119 auto biases = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
120 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
121
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122 Window out_window;
Manuel Bottinid87aded2021-07-16 10:23:31 +0100123 out_window.use_tensor_dimensions(dst->info()->tensor_shape());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124
125 Window in_slice = window.first_slice_window_3D();
126 Window out_slice = out_window.first_slice_window_2D();
127
128 Window biases_window;
129 Window biases_slice;
130
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100131 unsigned int idx = num_arguments_per_3D_tensor() + num_arguments_per_2D_tensor();
Manuel Bottinid87aded2021-07-16 10:23:31 +0100132 idx += (biases != nullptr) ? num_arguments_per_1D_tensor() : 0;
133 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(0));
134 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(1));
135 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(2));
136 _kernel.setArg<cl_uint>(idx++, src->info()->dimension(3));
137 _kernel.setArg<cl_uint>(idx++, dst->info()->strides_in_bytes().z());
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100138
Manuel Bottinid87aded2021-07-16 10:23:31 +0100139 if(biases != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100141 biases_window.use_tensor_dimensions(biases->info()->tensor_shape());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142 biases_slice = biases_window.first_slice_window_1D();
143 }
144
145 do
146 {
147 // Set arguments
148 unsigned idx = 0;
Manuel Bottinid87aded2021-07-16 10:23:31 +0100149 add_3D_tensor_argument(idx, src, in_slice);
150 add_2D_tensor_argument(idx, dst, out_slice);
151 if(biases != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152 {
Manuel Bottinid87aded2021-07-16 10:23:31 +0100153 add_1D_tensor_argument(idx, biases, biases_slice);
Michalis Spyrouebdde652019-07-08 11:52:46 +0100154 ARM_COMPUTE_UNUSED(biases_window.slide_window_slice_1D(biases_slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155 }
156
157 // Run kernel
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100158 enqueue(queue, *this, in_slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159 }
160 while(window.slide_window_slice_4D(in_slice) && out_window.slide_window_slice_2D(out_slice));
161}
Manuel Bottinid87aded2021-07-16 10:23:31 +0100162} // namespace kernels
163} // namespace opencl
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +0000164} // namespace arm_compute