blob: c9c70d6500243b41a4f1a8300cb705c4cbbf5867 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Pablo Tello54e98d92019-02-05 16:16:19 +00002 * Copyright (c) 2017-2019 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
40using namespace arm_compute;
41
Georgios Pinitasac4e8732017-07-05 17:02:25 +010042namespace
43{
Georgios Pinitasac4e8732017-07-05 17:02:25 +010044template <typename T>
Michalis Spyroua9c44722019-04-05 17:18:36 +010045void depth_concat(const ITensor *in, ITensor *out, 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
53 Iterator input(in, window);
54 Iterator output(out, window);
55
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010056 const DataType dt = in->info()->data_type();
57 const UniformQuantizationInfo input_qinfo = in->info()->quantization_info().uniform();
58 const UniformQuantizationInfo output_qinfo = out->info()->quantization_info().uniform();
Pablo Tello54e98d92019-02-05 16:16:19 +000059 if(dt == DataType::QASYMM8 && input_qinfo != output_qinfo)
Georgios Pinitasac4e8732017-07-05 17:02:25 +010060 {
Pablo Tello54e98d92019-02-05 16:16:19 +000061 execute_window_loop(window, [&](const Coordinates &)
62 {
63 const auto in_ptr = reinterpret_cast<const uint8_t *>(input_ptr + input.offset());
64 const auto out_ptr = reinterpret_cast<uint8_t *>(output_ptr + output.offset());
65 vst1q_u8(out_ptr, vquantize(vdequantize(vld1q_u8(in_ptr), input_qinfo), output_qinfo));
66 },
67 input, output);
68 }
69 else
70 {
71 execute_window_loop(window, [&](const Coordinates &)
72 {
73 const auto in_ptr = reinterpret_cast<const T *>(input_ptr + input.offset());
74 const auto out_ptr = reinterpret_cast<T *>(output_ptr + output.offset());
Georgios Pinitasac4e8732017-07-05 17:02:25 +010075
Pablo Tello54e98d92019-02-05 16:16:19 +000076 wrapper::vstore(out_ptr, wrapper::vloadq(in_ptr));
77 },
78 input, output);
79 }
Georgios Pinitasac4e8732017-07-05 17:02:25 +010080}
Georgios Pinitasae54e022018-07-16 15:41:27 +010081
82std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, unsigned int depth_offset, ITensorInfo *output)
83{
84 ARM_COMPUTE_UNUSED(depth_offset);
85
Georgios Pinitasae54e022018-07-16 15:41:27 +010086 const unsigned int num_elems_processed_per_iteration = 16 / input->element_size();
Georgios Pinitasae54e022018-07-16 15:41:27 +010087
88 // The window needs to be based on input as we copy all the depths of input
89 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
90 win.set(Window::DimZ, Window::Dimension(0, input->tensor_shape().z(), 1));
91
Michalis Spyroua9c44722019-04-05 17:18:36 +010092 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
Georgios Pinitasae54e022018-07-16 15:41:27 +010093 AccessWindowHorizontal output_access(output, 0, num_elems_processed_per_iteration);
94 bool window_changed = update_window_and_padding(win, input_access, output_access);
95 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
96
97 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
98 return std::make_pair(err, win);
99}
100
101Status validate_arguments(const ITensorInfo *input, unsigned int depth_offset, const ITensorInfo *output)
102{
103 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anthony Barbiereaefd002018-07-20 17:49:35 +0100104 //Note: ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(input) is not needed here as this kernel doesn't use NEON FP16 instructions.
Georgios Pinitasae54e022018-07-16 15:41:27 +0100105 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
106 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
107
Michalis Spyroua9c44722019-04-05 17:18:36 +0100108 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimX) != output->dimension(Window::DimX));
109 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) != output->dimension(Window::DimY));
Georgios Pinitasae54e022018-07-16 15:41:27 +0100110 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(2) + depth_offset > output->dimension(2));
Georgios Pinitasae54e022018-07-16 15:41:27 +0100111 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(3, input, output);
112
Georgios Pinitasae54e022018-07-16 15:41:27 +0100113 return Status{};
114}
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100115} // namespace
116
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000117NEDepthConcatenateLayerKernel::NEDepthConcatenateLayerKernel()
Michalis Spyroua9c44722019-04-05 17:18:36 +0100118 : _func(nullptr), _input(nullptr), _output(nullptr), _depth_offset(0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119{
120}
121
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000122void NEDepthConcatenateLayerKernel::configure(const ITensor *input, unsigned int depth_offset, ITensor *output)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123{
Georgios Pinitasae54e022018-07-16 15:41:27 +0100124 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
125 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), depth_offset, output->info()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100127 _func = nullptr;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128 _input = input;
129 _output = output;
130 _depth_offset = depth_offset;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100132 switch(input->info()->data_type())
133 {
Georgios Pinitasae54e022018-07-16 15:41:27 +0100134 case DataType::QASYMM8:
135 _func = &depth_concat<uint8_t>;
136 break;
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100137 case DataType::F16:
138 _func = &depth_concat<uint16_t>;
139 break;
140 case DataType::F32:
141 _func = &depth_concat<uint32_t>;
142 break;
143 default:
144 ARM_COMPUTE_ERROR("Unsupported data type.");
145 }
146
Georgios Pinitasae54e022018-07-16 15:41:27 +0100147 // Configure kernel window
148 auto win_config = validate_and_configure_window(input->info(), depth_offset, output->info());
149 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150
Georgios Pinitasae54e022018-07-16 15:41:27 +0100151 INEKernel::configure(std::get<1>(win_config));
152}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153
Georgios Pinitasae54e022018-07-16 15:41:27 +0100154Status NEDepthConcatenateLayerKernel::validate(const arm_compute::ITensorInfo *input,
155 unsigned int depth_offset,
156 const arm_compute::ITensorInfo *output)
157{
158 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, depth_offset, output));
159 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), depth_offset, output->clone().get()).first);
160 return Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161}
162
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000163void NEDepthConcatenateLayerKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100164{
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100165 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
167 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
Georgios Pinitasac4e8732017-07-05 17:02:25 +0100168 ARM_COMPUTE_ERROR_ON(_func == nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169
Michalis Spyroua9c44722019-04-05 17:18:36 +0100170 (*_func)(_input, _output, _depth_offset, window);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100171}