blob: 85917d38dd4a37c3c1dffd7f5cd540b4f59bdc53 [file] [log] [blame]
Pablo Tello6a14adb2019-03-05 17:33:08 +00001/*
2 * Copyright (c) 2019 ARM Limited.
3 *
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);
64 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8, DataType::U16, DataType::S16, DataType::F16, DataType::U32,
65 DataType::F32);
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
67 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) + height_offset > output->dimension(Window::DimY));
68
69 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) != output->dimension(0));
70 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
71 {
72 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
73 }
74 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
75
76 return Status{};
77}
78} // namespace
79
80CLHeightConcatenateLayerKernel::CLHeightConcatenateLayerKernel()
81 : _input(nullptr), _output(nullptr), _height_offset(0), _num_elems_processed_per_iteration()
82{
83}
84
85Status CLHeightConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
86{
87 unsigned int num_elems_processed_per_iteration;
88 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, height_offset, output));
89 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), height_offset, output->clone().get(), num_elems_processed_per_iteration).first);
90 return Status{};
91}
92
93void CLHeightConcatenateLayerKernel::configure(const ICLTensor *input, unsigned int height_offset, ICLTensor *output)
94{
95 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
96 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), height_offset, output->info()));
97
98 _input = input;
99 _output = output;
100 _height_offset = height_offset;
101
102 auto win_config = validate_and_configure_window(input->info(), height_offset, output->info(), _num_elems_processed_per_iteration);
103
104 // Add build options
105 CLBuildOptions build_opts;
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100106 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->info()->element_size()));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000107 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(_num_elems_processed_per_iteration));
108 build_opts.add_option("-DHEIGHT_OFFSET=" + support::cpp11::to_string(_height_offset));
109 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
110
111 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info())
112 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100113 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
114 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
115
116 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
117 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
118 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
119 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000120 }
121
122 // Create kernel
123 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("concatenate_height", build_opts.options()));
124 // Configure kernel window
125
126 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
127
128 ICLKernel::configure_internal(std::get<1>(win_config));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100129
130 // Set output valid region
131 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
Pablo Tello6a14adb2019-03-05 17:33:08 +0000132}
133
134void CLHeightConcatenateLayerKernel::run(const Window &window, cl::CommandQueue &queue)
135{
136 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
137 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
138
139 unsigned int idx = 0;
140 add_4D_tensor_argument(idx, _input, window);
141 add_4D_tensor_argument(idx, _output, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100142 enqueue(queue, *this, window, lws_hint());
Pablo Tello6a14adb2019-03-05 17:33:08 +0000143}
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100144} // namespace arm_compute