blob: a95d711f4336e4f6bb06c9032323cae31c27e395 [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/NEON/kernels/NEDepthConcatenateLayerKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010025
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/IAccessWindow.h"
29#include "arm_compute/core/ITensor.h"
Pablo Tello54e98d92019-02-05 16:16:19 +000030#include "arm_compute/core/NEON/NEAsymm.h"
Georgios Pinitasac4e8732017-07-05 17:02:25 +010031#include "arm_compute/core/NEON/NEFixedPoint.h"
Georgios Pinitasae54e022018-07-16 15:41:27 +010032#include "arm_compute/core/NEON/wrapper/wrapper.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Utils.h"
35#include "arm_compute/core/Validate.h"
36#include "arm_compute/core/Window.h"
37
Georgios Pinitasac4e8732017-07-05 17:02:25 +010038#include <cstdint>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
Michalis Spyrouc28d4282020-03-04 15:30:41 +000040namespace arm_compute
41{
Georgios Pinitasac4e8732017-07-05 17:02:25 +010042namespace
43{
Georgios Pinitasac4e8732017-07-05 17:02:25 +010044template <typename T>
Michalis Spyrouc28d4282020-03-04 15:30:41 +000045void depth_concat(const ITensor *in, ITensor *out, unsigned int depth_offset, const Window &window)
Georgios Pinitasac4e8732017-07-05 17:02:25 +010046{
Georgios Pinitasac4e8732017-07-05 17:02:25 +010047 // Offset input
Michalis Spyroua9c44722019-04-05 17:18:36 +010048 uint8_t *input_ptr = in->buffer() + in->info()->offset_first_element_in_bytes();
Georgios Pinitasac4e8732017-07-05 17:02:25 +010049
50 // Offset output
Michalis Spyroua9c44722019-04-05 17:18:36 +010051 uint8_t *output_ptr = out->buffer() + out->info()->offset_first_element_in_bytes() + depth_offset * out->info()->strides_in_bytes()[2];
Georgios Pinitasac4e8732017-07-05 17:02:25 +010052
Michalis Spyrouc28d4282020-03-04 15:30:41 +000053 const auto window_start_x = static_cast<int>(window.x().start());
54 const auto window_end_x = static_cast<int>(window.x().end());
55 const int window_step_x = 16 / out->info()->element_size();
56
57 Window win{ window };
58 win.set(Window::DimX, Window::Dimension(0, 1, 1));
59 win.set(Window::DimZ, Window::Dimension(0, in->info()->tensor_shape().z(), 1));
60
61 Iterator input(in, win);
62 Iterator output(out, win);
Georgios Pinitasac4e8732017-07-05 17:02:25 +010063
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010064 const DataType dt = in->info()->data_type();
65 const UniformQuantizationInfo input_qinfo = in->info()->quantization_info().uniform();
66 const UniformQuantizationInfo output_qinfo = out->info()->quantization_info().uniform();
Pablo Tello54e98d92019-02-05 16:16:19 +000067 if(dt == DataType::QASYMM8 && input_qinfo != output_qinfo)
Georgios Pinitasac4e8732017-07-05 17:02:25 +010068 {
Michalis Spyrouc28d4282020-03-04 15:30:41 +000069 execute_window_loop(win, [&](const Coordinates &)
Pablo Tello54e98d92019-02-05 16:16:19 +000070 {
71 const auto in_ptr = reinterpret_cast<const uint8_t *>(input_ptr + input.offset());
72 const auto out_ptr = reinterpret_cast<uint8_t *>(output_ptr + output.offset());
Michalis Spyrouc28d4282020-03-04 15:30:41 +000073 int x = window_start_x;
74 for(; x <= (window_end_x - window_step_x); x += window_step_x)
75 {
76 wrapper::vstore(out_ptr + x, vquantize(vdequantize(wrapper::vloadq(in_ptr + x), input_qinfo), output_qinfo));
77 }
78
79 // Compute left-over elements
80 for(; x < window_end_x; ++x)
81 {
82 *(out_ptr + x) = quantize_qasymm8(dequantize_qasymm8(*(in_ptr + x), input_qinfo), output_qinfo);
83 }
Pablo Tello54e98d92019-02-05 16:16:19 +000084 },
85 input, output);
86 }
Georgios Pinitas33843562019-12-10 13:33:18 +000087 else if(dt == DataType::QASYMM8_SIGNED && input_qinfo != output_qinfo)
88 {
Michalis Spyrouc28d4282020-03-04 15:30:41 +000089 execute_window_loop(win, [&](const Coordinates &)
Georgios Pinitas33843562019-12-10 13:33:18 +000090 {
91 const auto in_ptr = reinterpret_cast<const int8_t *>(input_ptr + input.offset());
92 const auto out_ptr = reinterpret_cast<int8_t *>(output_ptr + output.offset());
Michalis Spyrouc28d4282020-03-04 15:30:41 +000093 int x = window_start_x;
94 for(; x <= (window_end_x - window_step_x); x += window_step_x)
95 {
96 wrapper::vstore(out_ptr + x, vquantize_signed(vdequantize(wrapper::vloadq(in_ptr + x), input_qinfo), output_qinfo));
97 }
98
99 // Compute left-over elements
100 for(; x < window_end_x; ++x)
101 {
102 *(out_ptr + x) = quantize_qasymm8_signed(dequantize_qasymm8_signed(*(in_ptr + x), input_qinfo), output_qinfo);
103 }
Georgios Pinitas33843562019-12-10 13:33:18 +0000104 },
105 input, output);
106 }
Pablo Tello54e98d92019-02-05 16:16:19 +0000107 else
108 {
Michalis Spyrouc28d4282020-03-04 15:30:41 +0000109 execute_window_loop(win, [&](const Coordinates &)
Pablo Tello54e98d92019-02-05 16:16:19 +0000110 {
111 const auto in_ptr = reinterpret_cast<const T *>(input_ptr + input.offset());
112 const auto out_ptr = reinterpret_cast<T *>(output_ptr + output.offset());
Michalis Spyrouc28d4282020-03-04 15:30:41 +0000113 int x = window_start_x;
114 for(; x <= (window_end_x - window_step_x); x += window_step_x)
115 {
116 wrapper::vstore(out_ptr + x, wrapper::vloadq(in_ptr + x));
117 }
118 // Compute left-over elements
119 for(; x < window_end_x; ++x)
120 {
121 *(out_ptr + x) = *(in_ptr + x);
122 }
Pablo Tello54e98d92019-02-05 16:16:19 +0000123 },
124 input, output);
125 }
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100126}
Georgios Pinitasae54e022018-07-16 15:41:27 +0100127
Georgios Pinitasae54e022018-07-16 15:41:27 +0100128Status validate_arguments(const ITensorInfo *input, unsigned int depth_offset, const ITensorInfo *output)
129{
130 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100131 //Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Georgios Pinitas33843562019-12-10 13:33:18 +0000132 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
Georgios Pinitasae54e022018-07-16 15:41:27 +0100133 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
134
Michalis Spyroua9c44722019-04-05 17:18:36 +0100135 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimX) != output->dimension(Window::DimX));
136 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) != output->dimension(Window::DimY));
Georgios Pinitasae54e022018-07-16 15:41:27 +0100137 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(2) + depth_offset > output->dimension(2));
Georgios Pinitasae54e022018-07-16 15:41:27 +0100138 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(3, input, output);
139
Georgios Pinitasae54e022018-07-16 15:41:27 +0100140 return Status{};
141}
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100142} // namespace
143
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000144NEDepthConcatenateLayerKernel::NEDepthConcatenateLayerKernel()
Michalis Spyroua9c44722019-04-05 17:18:36 +0100145 : _func(nullptr), _input(nullptr), _output(nullptr), _depth_offset(0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146{
147}
148
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000149void NEDepthConcatenateLayerKernel::configure(const ITensor *input, unsigned int depth_offset, ITensor *output)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150{
Georgios Pinitasae54e022018-07-16 15:41:27 +0100151 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
152 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), depth_offset, output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100154 _func = nullptr;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155 _input = input;
156 _output = output;
157 _depth_offset = depth_offset;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100158
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100159 switch(input->info()->data_type())
160 {
Georgios Pinitasae54e022018-07-16 15:41:27 +0100161 case DataType::QASYMM8:
162 _func = &depth_concat<uint8_t>;
163 break;
Georgios Pinitas33843562019-12-10 13:33:18 +0000164 case DataType::QASYMM8_SIGNED:
165 _func = &depth_concat<int8_t>;
166 break;
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100167 case DataType::F16:
168 _func = &depth_concat<uint16_t>;
169 break;
170 case DataType::F32:
171 _func = &depth_concat<uint32_t>;
172 break;
173 default:
174 ARM_COMPUTE_ERROR("Unsupported data type.");
175 }
176
Georgios Pinitasae54e022018-07-16 15:41:27 +0100177 // Configure kernel window
Michalis Spyrouc28d4282020-03-04 15:30:41 +0000178 Window win = calculate_max_window(*output->info(), Steps());
179 Coordinates coord;
180 coord.set_num_dimensions(output->info()->num_dimensions());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100181
Michalis Spyrouc28d4282020-03-04 15:30:41 +0000182 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
183 INEKernel::configure(win);
Georgios Pinitasae54e022018-07-16 15:41:27 +0100184}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100185
Georgios Pinitasae54e022018-07-16 15:41:27 +0100186Status NEDepthConcatenateLayerKernel::validate(const arm_compute::ITensorInfo *input,
187 unsigned int depth_offset,
188 const arm_compute::ITensorInfo *output)
189{
190 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, depth_offset, output));
Georgios Pinitasae54e022018-07-16 15:41:27 +0100191 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100192}
193
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000194void NEDepthConcatenateLayerKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100195{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100196 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100197 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
198 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100199 ARM_COMPUTE_ERROR_ON(_func == nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100200
Michalis Spyroua9c44722019-04-05 17:18:36 +0100201 (*_func)(_input, _output, _depth_offset, window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202}
Michalis Spyrouc28d4282020-03-04 15:30:41 +0000203} // namespace arm_compute