blob: 3f5e91e5a1f3c30c3731754ba02d7ec4c6abfeab [file] [log] [blame]
Pablo Tello6a14adb2019-03-05 17:33:08 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 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 */
24#include "arm_compute/core/CL/kernels/CLHeightConcatenateLayerKernel.h"
25
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{
Pablo Tello6a14adb2019-03-05 17:33:08 +000040namespace
41{
Pablo Tello6a14adb2019-03-05 17:33:08 +000042Status validate_arguments(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
43{
44 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini8481d832019-12-10 15:28:40 +000045 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Pablo Tello6a14adb2019-03-05 17:33:08 +000046 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
47 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) + height_offset > output->dimension(Window::DimY));
48
49 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != output->dimension(0));
50 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
53 }
54 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
55
56 return Status{};
57}
58} // namespace
59
60CLHeightConcatenateLayerKernel::CLHeightConcatenateLayerKernel()
Giorgio Arena4112eed2020-10-23 14:24:26 +010061 : _height_offset(0)
Pablo Tello6a14adb2019-03-05 17:33:08 +000062{
63}
64
65Status CLHeightConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
66{
Pablo Tello6a14adb2019-03-05 17:33:08 +000067 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, height_offset, output));
Pablo Tello6a14adb2019-03-05 17:33:08 +000068 return Status{};
69}
70
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010071void CLHeightConcatenateLayerKernel::configure(const CLCompileContext &compile_context, ITensorInfo *input, unsigned int height_offset, ITensorInfo *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010072{
Pablo Tello6a14adb2019-03-05 17:33:08 +000073 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010074 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input, height_offset, output));
Pablo Tello6a14adb2019-03-05 17:33:08 +000075
Giorgio Arena4112eed2020-10-23 14:24:26 +010076 auto padding_info = get_padding_info({ input, output });
77
Pablo Tello6a14adb2019-03-05 17:33:08 +000078 _height_offset = height_offset;
79
Pablo Tello6a14adb2019-03-05 17:33:08 +000080 // Add build options
Giorgio Arena4112eed2020-10-23 14:24:26 +010081 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, input->dimension(0));
82
Pablo Tello6a14adb2019-03-05 17:33:08 +000083 CLBuildOptions build_opts;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010084 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->element_size()));
Giorgio Arena4112eed2020-10-23 14:24:26 +010085 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Pablo Tello6a14adb2019-03-05 17:33:08 +000086 build_opts.add_option("-DHEIGHT_OFFSET=" + support::cpp11::to_string(_height_offset));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010087 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->dimension(2)));
Giorgio Arena4112eed2020-10-23 14:24:26 +010088 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->dimension(0) % num_elems_processed_per_iteration));
Pablo Tello6a14adb2019-03-05 17:33:08 +000089
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010090 if(is_data_type_quantized_asymmetric(input->data_type()) && input->quantization_info() != output->quantization_info())
Pablo Tello6a14adb2019-03-05 17:33:08 +000091 {
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010092 const UniformQuantizationInfo iq_info = input->quantization_info().uniform();
93 const UniformQuantizationInfo oq_info = output->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010094
95 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
96 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
97 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
98 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Tello6a14adb2019-03-05 17:33:08 +000099 }
100
101 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100102 _kernel = create_kernel(compile_context, "concatenate_height", build_opts.options());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000103 // Configure kernel window
104
Giorgio Arena4112eed2020-10-23 14:24:26 +0100105 // The window needs to be based on input as we copy all the heights of input
106 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
107 ICLKernel::configure_internal(win.collapse(win, Window::DimZ));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100108
109 // Set output valid region
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100110 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
Giorgio Arena4112eed2020-10-23 14:24:26 +0100111
112 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000113}
114
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100115void CLHeightConcatenateLayerKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Pablo Tello6a14adb2019-03-05 17:33:08 +0000116{
117 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
118 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
119
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100120 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
121 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100122
Pablo Tello6a14adb2019-03-05 17:33:08 +0000123 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100124 add_4D_tensor_argument(idx, src, window);
125 add_4D_tensor_argument(idx, dst, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100126 enqueue(queue, *this, window, lws_hint());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000127}
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100128} // namespace arm_compute