blob: 10aa615c6f0255ca6f4d083e13cbe5ebdeb1c0f2 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44: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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/core/CL/kernels/CLDepthConcatenateLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/Helpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/core/Window.h"
34
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Georgios Pinitasac4e8732017-07-05 17:02:25 +010036
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010037namespace arm_compute
38{
Georgios Pinitase29acf12018-07-16 14:40:09 +010039namespace
40{
41std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, unsigned int depth_offset, ITensorInfo *output)
42{
43 ARM_COMPUTE_UNUSED(depth_offset);
44
Georgios Pinitase29acf12018-07-16 14:40:09 +010045 const unsigned int num_elems_processed_per_iteration = 16 / input->element_size();
Georgios Pinitase29acf12018-07-16 14:40:09 +010046
47 // The window needs to be based on input as we copy all the depths of input
48 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
49 win.set(Window::DimZ, Window::Dimension(0, input->tensor_shape().z(), 1));
50
Michalis Spyroua9c44722019-04-05 17:18:36 +010051 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Georgios Pinitase29acf12018-07-16 14:40:09 +010052 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
53 bool window_changed = update_window_and_padding(win, input_access, output_access);
54 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
55
56 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
57 return std::make_pair(err, win);
58}
59Status validate_arguments(const ITensorInfo *input, unsigned int depth_offset, const ITensorInfo *output)
60{
61 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
62 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000063 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
Georgios Pinitase29acf12018-07-16 14:40:09 +010064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
65
Michalis Spyroua9c44722019-04-05 17:18:36 +010066 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimX) != output->dimension(Window::DimX));
67 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) != output->dimension(Window::DimY));
Georgios Pinitase29acf12018-07-16 14:40:09 +010068 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(2) + depth_offset > output->dimension(2));
Georgios Pinitase29acf12018-07-16 14:40:09 +010069 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(3, input, output);
70
Georgios Pinitase29acf12018-07-16 14:40:09 +010071 return Status{};
72}
73} // namespace
74
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000075CLDepthConcatenateLayerKernel::CLDepthConcatenateLayerKernel()
Michalis Spyroua9c44722019-04-05 17:18:36 +010076 : _input(nullptr), _output(nullptr), _depth_offset(0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077{
78}
79
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000080void CLDepthConcatenateLayerKernel::configure(const ICLTensor *input, unsigned int depth_offset, ICLTensor *output)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010082 configure(CLKernelLibrary::get().get_compile_context(), input, depth_offset, output);
83}
84
Manuel Bottini256c0b92020-04-21 13:29:30 +010085void CLDepthConcatenateLayerKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, unsigned int depth_offset, ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010086{
Georgios Pinitase29acf12018-07-16 14:40:09 +010087 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
88 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), depth_offset, output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089
Gian Marco Iodice906443f2017-09-06 15:09:54 +010090 _input = input;
91 _output = output;
92 _depth_offset = depth_offset;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093
Georgios Pinitase29acf12018-07-16 14:40:09 +010094 const unsigned int num_elems_processed_per_iteration = 16 / input->info()->element_size();
95
Georgios Pinitasac4e8732017-07-05 17:02:25 +010096 // Add build options
Georgios Pinitase29acf12018-07-16 14:40:09 +010097 CLBuildOptions build_opts;
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010098 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Georgios Pinitase29acf12018-07-16 14:40:09 +010099 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000100 if(is_data_type_quantized_asymmetric(input->info()->data_type()) && input->info()->quantization_info() != output->info()->quantization_info())
101 {
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100102 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
103 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
104
105 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
106 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
107 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
108 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +0000109 }
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100110
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100112 _kernel = create_kernel(compile_context, "concatenate", build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113
114 // Configure kernel window
Georgios Pinitase29acf12018-07-16 14:40:09 +0100115 auto win_config = validate_and_configure_window(input->info(), depth_offset, output->info());
116 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100118 ICLKernel::configure_internal(std::get<1>(win_config));
Isabella Gottardif59b16f2019-07-25 12:03:39 +0100119
120 // Set output valid region
121 output->info()->set_valid_region(ValidRegion(Coordinates(), output->info()->tensor_shape()));
Georgios Pinitase29acf12018-07-16 14:40:09 +0100122}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123
Georgios Pinitase29acf12018-07-16 14:40:09 +0100124Status CLDepthConcatenateLayerKernel::validate(const arm_compute::ITensorInfo *input,
125 unsigned int depth_offset,
126 const arm_compute::ITensorInfo *output)
127{
128 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, depth_offset, output));
129 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), depth_offset, output->clone().get()).first);
130 return Status{};
Gian Marco Iodice906443f2017-09-06 15:09:54 +0100131}
132
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000133void CLDepthConcatenateLayerKernel::run(const Window &window, cl::CommandQueue &queue)
Gian Marco Iodice906443f2017-09-06 15:09:54 +0100134{
135 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
136 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
137
138 Window slice = window.first_slice_window_3D();
139
140 const int offset_to_first_elements_in_bytes = _depth_offset * _output->info()->strides_in_bytes()[2];
141
Michalis Spyroua9c44722019-04-05 17:18:36 +0100142 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the input and output parameters
143 _kernel.setArg<cl_int>(idx, offset_to_first_elements_in_bytes);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100144
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145 do
146 {
147 unsigned int idx = 0;
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100148 add_3D_tensor_argument(idx, _input, slice);
149 add_3D_tensor_argument(idx, _output, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100150 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 }
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100152 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153}
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100154} // namespace arm_compute