blob: aeab6d75769c053632ad73603fed4cb3c0b744f3 [file] [log] [blame]
Pablo Tello6a14adb2019-03-05 17:33:08 +00001/*
Manuel Bottini8481d832019-12-10 15:28:40 +00002 * 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"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/IAccessWindow.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Window.h"
37#include "arm_compute/core/utils/misc/ShapeCalculator.h"
38
39#include "support/ToolchainSupport.h"
40
41#include <map>
42
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010043namespace arm_compute
44{
Pablo Tello6a14adb2019-03-05 17:33:08 +000045namespace
46{
47std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, unsigned int height_offset, ITensorInfo *output, unsigned int &num_elems_processed_per_iteration)
48{
49 num_elems_processed_per_iteration = 4;
50 // The window needs to be based on input as we copy all the heights of input
51 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
52 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
53 AccessWindowHorizontal output_access(output, height_offset, num_elems_processed_per_iteration);
54 bool window_changed = update_window_and_padding(win, input_access, output_access);
55
56 Window win_collapsed = win.collapse(win, Window::DimZ);
57
58 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
59 return std::make_pair(err, win_collapsed);
60}
61Status validate_arguments(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
62{
63 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini8481d832019-12-10 15:28:40 +000064 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Pablo Tello6a14adb2019-03-05 17:33:08 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
66 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) + height_offset > output->dimension(Window::DimY));
67
68 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != output->dimension(0));
69 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
70 {
71 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
72 }
73 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
74
75 return Status{};
76}
77} // namespace
78
79CLHeightConcatenateLayerKernel::CLHeightConcatenateLayerKernel()
80 : _input(nullptr), _output(nullptr), _height_offset(0), _num_elems_processed_per_iteration()
81{
82}
83
84Status CLHeightConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
85{
86 unsigned int num_elems_processed_per_iteration;
87 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, height_offset, output));
88 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), height_offset, output->clone().get(), num_elems_processed_per_iteration).first);
89 return Status{};
90}
91
92void CLHeightConcatenateLayerKernel::configure(const ICLTensor *input, unsigned int height_offset, ICLTensor *output)
93{
94 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
95 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), height_offset, output->info()));
96
97 _input = input;
98 _output = output;
99 _height_offset = height_offset;
100
101 auto win_config = validate_and_configure_window(input->info(), height_offset, output->info(), _num_elems_processed_per_iteration);
102
103 // Add build options
104 CLBuildOptions build_opts;
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100105 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->info()->element_size()));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000106 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(_num_elems_processed_per_iteration));
107 build_opts.add_option("-DHEIGHT_OFFSET=" + support::cpp11::to_string(_height_offset));
108 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
109
110 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info())
111 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100112 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
113 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
114
115 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
116 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
117 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
118 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000119 }
120
121 // Create kernel
122 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("concatenate_height", build_opts.options()));
123 // Configure kernel window
124
125 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
126
127 ICLKernel::configure_internal(std::get<1>(win_config));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100128
129 // Set output valid region
130 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000131}
132
133void CLHeightConcatenateLayerKernel::run(const Window &window, cl::CommandQueue &queue)
134{
135 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
136 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
137
138 unsigned int idx = 0;
139 add_4D_tensor_argument(idx, _input, window);
140 add_4D_tensor_argument(idx, _output, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100141 enqueue(queue, *this, window, lws_hint());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000142}
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100143} // namespace arm_compute