blob: 88b5a5e334ee1f79da4262150bb412904fd8fdb9 [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001/*
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou55b3d122018-05-09 09:59: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/ClWidthConcatenateKernel.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010029#include "arm_compute/core/Helpers.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010030#include "arm_compute/core/Utils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/WindowHelpers.h"
33#include "support/Cast.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010034
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010036
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010037namespace arm_compute
38{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000039namespace opencl
40{
41namespace kernels
42{
Michalis Spyrou55b3d122018-05-09 09:59:23 +010043namespace
44{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000045Status validate_arguments(const ITensorInfo *src, unsigned int width_offset, const ITensorInfo *dst)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010046{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000047 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst);
48 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(src);
49 ARM_COMPUTE_RETURN_ERROR_ON(src->data_type() == DataType::UNKNOWN);
Manuel Bottini8481d832019-12-10 15:28:40 +000050
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000051 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(src, dst);
52 ARM_COMPUTE_RETURN_ERROR_ON(src->dimension(0) + width_offset > dst->dimension(0));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010053
54 for(size_t i = 1; 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));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010057 }
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000058 ARM_COMPUTE_RETURN_ERROR_ON(src->num_dimensions() > 4);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010059
60 return Status{};
61}
62} // namespace
63
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000064ClWidthConcatenateKernel::ClWidthConcatenateKernel()
Michalis Spyrou55b3d122018-05-09 09:59:23 +010065{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010066 _type = CLKernelType::ELEMENTWISE;
Michalis Spyrou55b3d122018-05-09 09:59:23 +010067}
68
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000069Status ClWidthConcatenateKernel::validate(const ITensorInfo *src, unsigned int width_offset, const ITensorInfo *dst)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010070{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000071 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, width_offset, dst));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010072 return Status{};
73}
74
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000075void ClWidthConcatenateKernel::configure(const CLCompileContext &compile_context, ITensorInfo *src, unsigned int width_offset, ITensorInfo *dst)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010076{
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000077 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
78 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, width_offset, dst));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010079
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000080 auto padding_info = get_padding_info({ src, dst });
Sheri Zhang1b50bd42020-10-27 00:24:07 +000081
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000082 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(16, src->dimension(0));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010083
Michalis Spyrou55b3d122018-05-09 09:59:23 +010084 // Add build options
85 CLBuildOptions build_opts;
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000086 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010087 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000088 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(src->dimension(0) % num_elems_processed_per_iteration));
Sheri Zhang1b50bd42020-10-27 00:24:07 +000089 build_opts.add_option("-DWIDTH_OFFSET=" + support::cpp11::to_string(width_offset));
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000090 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(src->dimension(2)));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010091
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000092 if(is_data_type_quantized_asymmetric(src->data_type()) && src->quantization_info() != dst->quantization_info())
Pablo Telloeb6c88a2019-02-07 15:53:19 +000093 {
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +000094 const UniformQuantizationInfo iqinfo = src->quantization_info().uniform();
95 const UniformQuantizationInfo oqinfo = dst->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010096
97 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iqinfo.offset));
98 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oqinfo.offset));
99 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iqinfo.scale));
100 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oqinfo.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000101 }
102
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100103 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100104 _kernel = create_kernel(compile_context, "concatenate_width", build_opts.options());
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100105 // Configure kernel window
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000106 Window win = calculate_max_window(*src, Steps(num_elems_processed_per_iteration));
Sheri Zhang1b50bd42020-10-27 00:24:07 +0000107 ICLKernel::configure_internal(win.collapse(win, Window::DimZ));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100108
Sheri Zhang1b50bd42020-10-27 00:24:07 +0000109 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100110}
111
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000112void ClWidthConcatenateKernel::run_op(ITensorPack &tensors, const Window &window, ::cl::CommandQueue &queue)
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100113{
114 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
115 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
116
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100117 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
118 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100119
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100120 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100121 add_4D_tensor_argument(idx, src, window);
122 add_4D_tensor_argument(idx, dst, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100123 enqueue(queue, *this, window, lws_hint());
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100124}
Michele Di Giorgio7d61ff02021-01-18 21:15:59 +0000125} // namespace kernels
126} // namespace opencl
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100127} // namespace arm_compute