blob: 688308098ae3839556fefb323361b445c26a31ee [file] [log] [blame]
Pablo Tello6a14adb2019-03-05 17:33:08 +00001/*
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00002 * Copyright (c) 2019-2021 Arm Limited.
Pablo Tello6a14adb2019-03-05 17:33:08 +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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClHeightConcatenateKernel.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000028#include "arm_compute/core/CL/ICLTensor.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000029#include "arm_compute/core/Helpers.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000030#include "arm_compute/core/Utils.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000031#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/CL/CLValidate.h"
33#include "src/core/helpers/WindowHelpers.h"
34#include "support/Cast.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000035
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000037
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010038namespace arm_compute
39{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000040namespace opencl
41{
42namespace kernels
43{
Pablo Tello6a14adb2019-03-05 17:33:08 +000044namespace
45{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000046Status validate_arguments(const ITensorInfo *src, unsigned int height_offset, const ITensorInfo *dst)
Pablo Tello6a14adb2019-03-05 17:33:08 +000047{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000048 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
49 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
50 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
51 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(Window::DimY) + height_offset > dst->dimension(Window::DimY));
Pablo Tello6a14adb2019-03-05 17:33:08 +000052
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000053 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(0) != dst->dimension(0));
Pablo Tello6a14adb2019-03-05 17:33:08 +000054 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
55 {
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000056 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(i) != dst->dimension(i));
Pablo Tello6a14adb2019-03-05 17:33:08 +000057 }
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000058 ARM_COMPUTE_RETURN_ERROR_ON(src->num_dimensions() > 4);
Pablo Tello6a14adb2019-03-05 17:33:08 +000059
60 return Status{};
61}
62} // namespace
63
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000064ClHeightConcatenateKernel::ClHeightConcatenateKernel()
Giorgio Arena4112eed2020-10-23 14:24:26 +010065 : _height_offset(0)
Pablo Tello6a14adb2019-03-05 17:33:08 +000066{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010067 _type = CLKernelType::ELEMENTWISE;
Pablo Tello6a14adb2019-03-05 17:33:08 +000068}
69
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000070Status ClHeightConcatenateKernel::validate(const ITensorInfo *src, unsigned int height_offset, const ITensorInfo *dst)
Pablo Tello6a14adb2019-03-05 17:33:08 +000071{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000072 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, height_offset, dst));
Pablo Tello6a14adb2019-03-05 17:33:08 +000073 return Status{};
74}
75
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000076void ClHeightConcatenateKernel::configure(const CLCompileContext &compile_context, ITensorInfo *src, unsigned int height_offset, ITensorInfo *dst)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010077{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000078 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
79 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, height_offset, dst));
Pablo Tello6a14adb2019-03-05 17:33:08 +000080
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000081 auto padding_info = get_padding_info({ src, dst });
Giorgio Arena4112eed2020-10-23 14:24:26 +010082
Pablo Tello6a14adb2019-03-05 17:33:08 +000083 _height_offset = height_offset;
84
Pablo Tello6a14adb2019-03-05 17:33:08 +000085 // Add build options
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000086 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, src->dimension(0));
Giorgio Arena4112eed2020-10-23 14:24:26 +010087
Pablo Tello6a14adb2019-03-05 17:33:08 +000088 CLBuildOptions build_opts;
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000089 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(src->element_size()));
Giorgio Arena4112eed2020-10-23 14:24:26 +010090 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Pablo Tello6a14adb2019-03-05 17:33:08 +000091 build_opts.add_option("-DHEIGHT_OFFSET=" + support::cpp11::to_string(_height_offset));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000092 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(src->dimension(2)));
93 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(src->dimension(0) % num_elems_processed_per_iteration));
Pablo Tello6a14adb2019-03-05 17:33:08 +000094
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000095 if(is_data_type_quantized_asymmetric(src->data_type()) && src->quantization_info() != dst->quantization_info())
Pablo Tello6a14adb2019-03-05 17:33:08 +000096 {
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000097 const UniformQuantizationInfo iq_info = src->quantization_info().uniform();
98 const UniformQuantizationInfo oq_info = dst->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010099
100 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
101 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
102 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
103 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000104 }
105
106 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100107 _kernel = create_kernel(compile_context, "concatenate_height", build_opts.options());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000108 // Configure kernel window
109
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000110 // The window needs to be based on src as we copy all the heights of src
111 Window win = calculate_max_window(*src, Steps(num_elems_processed_per_iteration));
Giorgio Arena4112eed2020-10-23 14:24:26 +0100112 ICLKernel::configure_internal(win.collapse(win, Window::DimZ));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100113
Giorgio Arena4112eed2020-10-23 14:24:26 +0100114 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000115}
116
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000117void ClHeightConcatenateKernel::run_op(ITensorPack &tensors, const Window &window, ::cl::CommandQueue &queue)
Pablo Tello6a14adb2019-03-05 17:33:08 +0000118{
119 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
120 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
121
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100122 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
123 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100124
Pablo Tello6a14adb2019-03-05 17:33:08 +0000125 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100126 add_4D_tensor_argument(idx, src, window);
127 add_4D_tensor_argument(idx, dst, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100128 enqueue(queue, *this, window, lws_hint());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000129}
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000130} // namespace kernels
131} // namespace opencl
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100132} // namespace arm_compute