blob: a9a601dc8eeb4180aa8712817588a045acaf78c1 [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 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 */
24#include "arm_compute/core/CL/kernels/CLWidthConcatenateLayerKernel.h"
25
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{
Michalis Spyrou55b3d122018-05-09 09:59:23 +010039namespace
40{
Michalis Spyrou55b3d122018-05-09 09:59:23 +010041Status validate_arguments(const ITensorInfo *input, unsigned int width_offset, const ITensorInfo *output)
42{
43 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010044 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000045 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
46
Michalis Spyrou55b3d122018-05-09 09:59:23 +010047 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010048 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) + width_offset > output->dimension(0));
49
50 for(size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
53 }
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +010054 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010055
56 return Status{};
57}
58} // namespace
59
60CLWidthConcatenateLayerKernel::CLWidthConcatenateLayerKernel()
Michalis Spyrou55b3d122018-05-09 09:59:23 +010061{
62}
63
64Status CLWidthConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int width_offset, const ITensorInfo *output)
65{
66 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, width_offset, output));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010067 return Status{};
68}
69
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010070void CLWidthConcatenateLayerKernel::configure(const CLCompileContext &compile_context, ITensorInfo *input, unsigned int width_offset, ITensorInfo *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010071{
Michalis Spyrou55b3d122018-05-09 09:59:23 +010072 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010073 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input, width_offset, output));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010074
Sheri Zhang1b50bd42020-10-27 00:24:07 +000075 auto padding_info = get_padding_info({ input, output });
76
77 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(16, input->dimension(0));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010078
Michalis Spyrou55b3d122018-05-09 09:59:23 +010079 // Add build options
80 CLBuildOptions build_opts;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010081 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->data_type()));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010082 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Sheri Zhang1b50bd42020-10-27 00:24:07 +000083 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->dimension(0) % num_elems_processed_per_iteration));
84 build_opts.add_option("-DWIDTH_OFFSET=" + support::cpp11::to_string(width_offset));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010085 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->dimension(2)));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010086
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010087 if(is_data_type_quantized_asymmetric(input->data_type()) && input->quantization_info() != output->quantization_info())
Pablo Telloeb6c88a2019-02-07 15:53:19 +000088 {
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010089 const UniformQuantizationInfo iqinfo = input->quantization_info().uniform();
90 const UniformQuantizationInfo oqinfo = output->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010091
92 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iqinfo.offset));
93 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oqinfo.offset));
94 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iqinfo.scale));
95 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oqinfo.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +000096 }
97
Michalis Spyrou55b3d122018-05-09 09:59:23 +010098 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +010099 _kernel = create_kernel(compile_context, "concatenate_width", build_opts.options());
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100100 // Configure kernel window
Sheri Zhang1b50bd42020-10-27 00:24:07 +0000101 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
102 ICLKernel::configure_internal(win.collapse(win, Window::DimZ));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100103
104 // Set output valid region
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100105 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
Sheri Zhang1b50bd42020-10-27 00:24:07 +0000106
107 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100108}
109
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100110void CLWidthConcatenateLayerKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100111{
112 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
113 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
114
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100115 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
116 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100117
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100118 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100119 add_4D_tensor_argument(idx, src, window);
120 add_4D_tensor_argument(idx, dst, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100121 enqueue(queue, *this, window, lws_hint());
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100122}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100123} // namespace arm_compute