blob: 22b2cfcbc586a833fb395c1b99e205c370885a87 [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"
28#include "arm_compute/core/CL/CLValidate.h"
29#include "arm_compute/core/CL/ICLTensor.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000030#include "arm_compute/core/Helpers.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000031#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/Window.h"
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010033#include "arm_compute/core/utils/misc/Cast.h"
Pablo Tello6a14adb2019-03-05 17:33:08 +000034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
35
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{
Georgios Pinitasebfb2f82020-06-08 13:44:49 +010042std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, unsigned int &num_elems_processed_per_iteration)
Pablo Tello6a14adb2019-03-05 17:33:08 +000043{
44 num_elems_processed_per_iteration = 4;
45 // The window needs to be based on input as we copy all the heights of input
46 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
47 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Georgios Pinitasebfb2f82020-06-08 13:44:49 +010048 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
Pablo Tello6a14adb2019-03-05 17:33:08 +000049 bool window_changed = update_window_and_padding(win, input_access, output_access);
50
51 Window win_collapsed = win.collapse(win, Window::DimZ);
52
53 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
54 return std::make_pair(err, win_collapsed);
55}
56Status validate_arguments(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
57{
58 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini8481d832019-12-10 15:28:40 +000059 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Pablo Tello6a14adb2019-03-05 17:33:08 +000060 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
61 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) + height_offset > output->dimension(Window::DimY));
62
63 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != output->dimension(0));
64 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
65 {
66 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
67 }
68 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
69
70 return Status{};
71}
72} // namespace
73
74CLHeightConcatenateLayerKernel::CLHeightConcatenateLayerKernel()
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010075 : _height_offset(0), _num_elems_processed_per_iteration()
Pablo Tello6a14adb2019-03-05 17:33:08 +000076{
77}
78
79Status CLHeightConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
80{
81 unsigned int num_elems_processed_per_iteration;
82 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, height_offset, output));
Georgios Pinitasebfb2f82020-06-08 13:44:49 +010083 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), num_elems_processed_per_iteration).first);
Pablo Tello6a14adb2019-03-05 17:33:08 +000084 return Status{};
85}
86
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010087void CLHeightConcatenateLayerKernel::configure(const CLCompileContext &compile_context, ITensorInfo *input, unsigned int height_offset, ITensorInfo *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010088{
Pablo Tello6a14adb2019-03-05 17:33:08 +000089 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010090 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input, height_offset, output));
Pablo Tello6a14adb2019-03-05 17:33:08 +000091
Pablo Tello6a14adb2019-03-05 17:33:08 +000092 _height_offset = height_offset;
93
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010094 auto win_config = validate_and_configure_window(input, output, _num_elems_processed_per_iteration);
Pablo Tello6a14adb2019-03-05 17:33:08 +000095
96 // Add build options
97 CLBuildOptions build_opts;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010098 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->element_size()));
Pablo Tello6a14adb2019-03-05 17:33:08 +000099 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(_num_elems_processed_per_iteration));
100 build_opts.add_option("-DHEIGHT_OFFSET=" + support::cpp11::to_string(_height_offset));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100101 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->dimension(2)));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000102
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100103 if(is_data_type_quantized_asymmetric(input->data_type()) && input->quantization_info() != output->quantization_info())
Pablo Tello6a14adb2019-03-05 17:33:08 +0000104 {
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100105 const UniformQuantizationInfo iq_info = input->quantization_info().uniform();
106 const UniformQuantizationInfo oq_info = output->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100107
108 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
109 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
110 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
111 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000112 }
113
114 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100115 _kernel = create_kernel(compile_context, "concatenate_height", build_opts.options());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000116 // Configure kernel window
117
118 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
119
120 ICLKernel::configure_internal(std::get<1>(win_config));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100121
122 // Set output valid region
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100123 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000124}
125
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100126void CLHeightConcatenateLayerKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Pablo Tello6a14adb2019-03-05 17:33:08 +0000127{
128 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
129 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
130
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100131 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
132 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100133
Pablo Tello6a14adb2019-03-05 17:33:08 +0000134 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100135 add_4D_tensor_argument(idx, src, window);
136 add_4D_tensor_argument(idx, dst, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100137 enqueue(queue, *this, window, lws_hint());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000138}
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100139} // namespace arm_compute