blob: eaefe666f259f29d5047c575a2328dc0fa60bec2 [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001/*
Manuel Bottini8481d832019-12-10 15:28:40 +00002 * 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"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010028#include "arm_compute/core/CL/CLValidate.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010029#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"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010036#include "arm_compute/core/Window.h"
37#include "arm_compute/core/utils/misc/ShapeCalculator.h"
38
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010040
41#include <map>
42
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010043namespace arm_compute
44{
Michalis Spyrou55b3d122018-05-09 09:59:23 +010045namespace
46{
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010047constexpr unsigned int num_elems_processed_per_iteration = 16;
48
Michalis Spyrou55b3d122018-05-09 09:59:23 +010049std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, unsigned int width_offset, ITensorInfo *output)
50{
Michalis Spyrou55b3d122018-05-09 09:59:23 +010051 // The window needs to be based on input as we copy all the widths of input
52 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
53 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
54 AccessWindowHorizontal output_access(output, width_offset, num_elems_processed_per_iteration);
55 bool window_changed = update_window_and_padding(win, input_access, output_access);
56
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +010057 Window win_collapsed = win.collapse(win, Window::DimZ);
58
Michalis Spyrou55b3d122018-05-09 09:59:23 +010059 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +010060 return std::make_pair(err, win_collapsed);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010061}
62Status validate_arguments(const ITensorInfo *input, unsigned int width_offset, const ITensorInfo *output)
63{
64 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010065 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000066 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
67
Michalis Spyrou55b3d122018-05-09 09:59:23 +010068 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010069 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(0) + width_offset > output->dimension(0));
70
71 for(size_t i = 1; i < Coordinates::num_max_dimensions; ++i)
72 {
73 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
74 }
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +010075 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010076
77 return Status{};
78}
79} // namespace
80
81CLWidthConcatenateLayerKernel::CLWidthConcatenateLayerKernel()
82 : _input(nullptr), _output(nullptr), _width_offset(0)
83{
84}
85
86Status CLWidthConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int width_offset, const ITensorInfo *output)
87{
88 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, width_offset, output));
89 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), width_offset, output->clone().get()).first);
90 return Status{};
91}
92
93void CLWidthConcatenateLayerKernel::configure(const ICLTensor *input, unsigned int width_offset, ICLTensor *output)
94{
95 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
96 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), width_offset, output->info()));
97
98 _input = input;
99 _output = output;
100 _width_offset = width_offset;
101
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100102 // Add build options
103 CLBuildOptions build_opts;
104 build_opts.add_option("-DDATA_TYPE=" + get_underlying_cl_type_from_data_type(input->info()->data_type()));
105 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Gian Marco Iodice1d1f32c2018-08-10 09:34:11 +0100106 build_opts.add_option("-DWIDTH_OFFSET=" + support::cpp11::to_string(_width_offset));
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100107 build_opts.add_option("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100108
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000109 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info())
110 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100111 const UniformQuantizationInfo iqinfo = input->info()->quantization_info().uniform();
112 const UniformQuantizationInfo oqinfo = output->info()->quantization_info().uniform();
113
114 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iqinfo.offset));
115 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oqinfo.offset));
116 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iqinfo.scale));
117 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oqinfo.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000118 }
119
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100120 // Create kernel
121 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("concatenate_width", build_opts.options()));
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100122 // Configure kernel window
123 auto win_config = validate_and_configure_window(input->info(), width_offset, output->info());
124 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
125
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100126 ICLKernel::configure_internal(std::get<1>(win_config));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100127
128 // Set output valid region
129 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100130}
131
132void CLWidthConcatenateLayerKernel::run(const Window &window, cl::CommandQueue &queue)
133{
134 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
135 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
136
Michele Di Giorgioe6dbde02018-10-19 15:46:19 +0100137 unsigned int idx = 0;
138 add_4D_tensor_argument(idx, _input, window);
139 add_4D_tensor_argument(idx, _output, window);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100140 enqueue(queue, *this, window, lws_hint());
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100141}
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +0100142} // namespace arm_compute