blob: 78adfd202fef49b71f0bd8340ee9a3a690e309b0 [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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/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"
28#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Helpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/Utils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/WindowHelpers.h"
33#include "support/Cast.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
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{
Georgios Pinitase29acf12018-07-16 14:40:09 +010041Status validate_arguments(const ITensorInfo *input, unsigned int depth_offset, const ITensorInfo *output)
42{
43 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
44 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000045 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 +010046 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
47
Michalis Spyroua9c44722019-04-05 17:18:36 +010048 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimX) != output->dimension(Window::DimX));
49 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) != output->dimension(Window::DimY));
Georgios Pinitase29acf12018-07-16 14:40:09 +010050 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(2) + depth_offset > output->dimension(2));
Georgios Pinitase29acf12018-07-16 14:40:09 +010051 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(3, input, output);
52
Georgios Pinitase29acf12018-07-16 14:40:09 +010053 return Status{};
54}
55} // namespace
56
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000057CLDepthConcatenateLayerKernel::CLDepthConcatenateLayerKernel()
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010058 : _depth_offset(0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059{
60}
61
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010062void CLDepthConcatenateLayerKernel::configure(const CLCompileContext &compile_context, ITensorInfo *input, unsigned int depth_offset, ITensorInfo *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010063{
Georgios Pinitase29acf12018-07-16 14:40:09 +010064 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010065 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input, depth_offset, output));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066
Gian Marco Iodice906443f2017-09-06 15:09:54 +010067 _depth_offset = depth_offset;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068
Giorgio Arena53048842020-10-07 16:03:43 +010069 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(16 / input->element_size(), input->dimension(0));
Georgios Pinitase29acf12018-07-16 14:40:09 +010070
Georgios Pinitasac4e8732017-07-05 17:02:25 +010071 // Add build options
Georgios Pinitase29acf12018-07-16 14:40:09 +010072 CLBuildOptions build_opts;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010073 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->data_type()));
Georgios Pinitase29acf12018-07-16 14:40:09 +010074 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Giorgio Arena53048842020-10-07 16:03:43 +010075 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(input->dimension(0) % num_elems_processed_per_iteration));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010076 if(is_data_type_quantized_asymmetric(input->data_type()) && input->quantization_info() != output->quantization_info())
Pablo Telloeb6c88a2019-02-07 15:53:19 +000077 {
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010078 const UniformQuantizationInfo iq_info = input->quantization_info().uniform();
79 const UniformQuantizationInfo oq_info = output->quantization_info().uniform();
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010080
81 build_opts.add_option("-DOFFSET_IN1=" + float_to_string_with_full_precision(iq_info.offset));
82 build_opts.add_option("-DOFFSET_OUT=" + float_to_string_with_full_precision(oq_info.offset));
83 build_opts.add_option("-DSCALE_IN1=" + float_to_string_with_full_precision(iq_info.scale));
84 build_opts.add_option("-DSCALE_OUT=" + float_to_string_with_full_precision(oq_info.scale));
Pablo Telloeb6c88a2019-02-07 15:53:19 +000085 }
Georgios Pinitasac4e8732017-07-05 17:02:25 +010086
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +010088 _kernel = create_kernel(compile_context, "concatenate", build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089
90 // Configure kernel window
Giorgio Arena53048842020-10-07 16:03:43 +010091 auto win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
92 win.set(Window::DimZ, Window::Dimension(0, input->tensor_shape().z(), 1));
93 ICLKernel::configure_internal(win);
Isabella Gottardif59b16f2019-07-25 12:03:39 +010094
95 // Set output valid region
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010096 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
Georgios Pinitase29acf12018-07-16 14:40:09 +010097}
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
Georgios Pinitase29acf12018-07-16 14:40:09 +010099Status CLDepthConcatenateLayerKernel::validate(const arm_compute::ITensorInfo *input,
100 unsigned int depth_offset,
101 const arm_compute::ITensorInfo *output)
102{
103 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, depth_offset, output));
Georgios Pinitase29acf12018-07-16 14:40:09 +0100104 return Status{};
Gian Marco Iodice906443f2017-09-06 15:09:54 +0100105}
106
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100107void CLDepthConcatenateLayerKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco Iodice906443f2017-09-06 15:09:54 +0100108{
109 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
110 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
111
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100112 const auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
113 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100114
Gian Marco Iodice906443f2017-09-06 15:09:54 +0100115 Window slice = window.first_slice_window_3D();
116
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100117 const int offset_to_first_elements_in_bytes = _depth_offset * dst->info()->strides_in_bytes()[2];
Gian Marco Iodice906443f2017-09-06 15:09:54 +0100118
Michalis Spyroua9c44722019-04-05 17:18:36 +0100119 unsigned int idx = 2 * num_arguments_per_3D_tensor(); // Skip the input and output parameters
120 _kernel.setArg<cl_int>(idx, offset_to_first_elements_in_bytes);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122 do
123 {
124 unsigned int idx = 0;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +0100125 add_3D_tensor_argument(idx, src, slice);
126 add_3D_tensor_argument(idx, dst, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100127 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128 }
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100129 while(window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130}
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100131} // namespace arm_compute