blob: 8a671bfa235d5b53ac5976e4654bc5b6c6154953 [file] [log] [blame]
Pablo Tello3dd5b682019-03-04 14:14:02 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
Pablo Tello3dd5b682019-03-04 14:14:02 +00003 *
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/NEON/kernels/NEHeightConcatenateLayerKernel.h"
25
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"
30#include "arm_compute/core/NEON/NEAsymm.h"
31#include "arm_compute/core/NEON/wrapper/wrapper.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36
37#include <cstdint>
38
Georgios Pinitas33843562019-12-10 13:33:18 +000039namespace arm_compute
40{
Pablo Tello3dd5b682019-03-04 14:14:02 +000041namespace
42{
Pablo Tello3dd5b682019-03-04 14:14:02 +000043Status validate_arguments(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
44{
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
46 // 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 +000047 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Pablo Tello3dd5b682019-03-04 14:14:02 +000048 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
49 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimX) != output->dimension(Window::DimX));
50 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(Window::DimY) + height_offset > output->dimension(Window::DimY));
51 for(size_t i = 2; i < Coordinates::num_max_dimensions; ++i)
52 {
53 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(i) != output->dimension(i));
54 }
55
56 return Status{};
57}
58} // namespace
59
60NEHeightConcatenateLayerKernel::NEHeightConcatenateLayerKernel()
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010061 : _height_offset(0)
Pablo Tello3dd5b682019-03-04 14:14:02 +000062{
63}
64
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010065void NEHeightConcatenateLayerKernel::configure(const ITensorInfo *input, unsigned int height_offset, ITensorInfo *output)
Pablo Tello3dd5b682019-03-04 14:14:02 +000066{
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010067 ARM_COMPUTE_UNUSED(input);
Pablo Tello3dd5b682019-03-04 14:14:02 +000068 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010069 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input, height_offset, output));
Pablo Tello3dd5b682019-03-04 14:14:02 +000070
Pablo Tello3dd5b682019-03-04 14:14:02 +000071 _height_offset = height_offset;
72
73 // Configure kernel window
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010074 Window win = calculate_max_window(*output, Steps());
Michalis Spyrou61b17082020-03-04 17:34:20 +000075 Coordinates coord;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010076 coord.set_num_dimensions(output->num_dimensions());
77 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
Michalis Spyrou61b17082020-03-04 17:34:20 +000078 INEKernel::configure(win);
Pablo Tello3dd5b682019-03-04 14:14:02 +000079}
80
81Status NEHeightConcatenateLayerKernel::validate(const ITensorInfo *input, unsigned int height_offset, const ITensorInfo *output)
82{
83 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, height_offset, output));
Pablo Tello3dd5b682019-03-04 14:14:02 +000084 return Status{};
85}
86
Georgios Pinitas0499dff2020-07-31 22:21:38 +010087void NEHeightConcatenateLayerKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info)
Pablo Tello3dd5b682019-03-04 14:14:02 +000088{
89 ARM_COMPUTE_UNUSED(info);
90 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
91 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
92
Georgios Pinitas0499dff2020-07-31 22:21:38 +010093 const auto src = tensors.get_const_tensor(TensorType::ACL_SRC);
94 auto dst = tensors.get_tensor(TensorType::ACL_DST);
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010095
Pablo Tello3dd5b682019-03-04 14:14:02 +000096 // Offset output pointer to the correct position
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010097 uint8_t *output_ptr = dst->buffer() + dst->info()->offset_first_element_in_bytes() + _height_offset * dst->info()->strides_in_bytes()[Window::DimY];
Pablo Tello3dd5b682019-03-04 14:14:02 +000098
Michalis Spyrou61b17082020-03-04 17:34:20 +000099 const auto window_start_x = static_cast<int>(window.x().start());
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100100 const auto window_end_x = static_cast<int>(window.x().end()) * static_cast<int>(dst->info()->element_size());
101 const int window_step_x = 16;
Michalis Spyrou61b17082020-03-04 17:34:20 +0000102
103 Window win{ window };
104 win.set(Window::DimX, Window::Dimension(0, 1, 1));
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100105 win.set(Window::DimY, Window::Dimension(0, src->info()->tensor_shape().y(), 1));
Michalis Spyrou61b17082020-03-04 17:34:20 +0000106
Pablo Tello3dd5b682019-03-04 14:14:02 +0000107 // Create iterators
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100108 Iterator input(src, win);
109 Iterator output(dst, win);
Michalis Spyrou61b17082020-03-04 17:34:20 +0000110
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100111 const DataType dt = src->info()->data_type();
112 const UniformQuantizationInfo &input_qinfo = src->info()->quantization_info().uniform();
113 const UniformQuantizationInfo &output_qinfo = dst->info()->quantization_info().uniform();
Pablo Tello3dd5b682019-03-04 14:14:02 +0000114 if(dt == DataType::QASYMM8 && input_qinfo != output_qinfo)
115 {
Michalis Spyrou61b17082020-03-04 17:34:20 +0000116 execute_window_loop(win, [&](const Coordinates &)
Pablo Tello3dd5b682019-03-04 14:14:02 +0000117 {
Michalis Spyrou61b17082020-03-04 17:34:20 +0000118 int x = window_start_x;
119 for(; x <= (window_end_x - window_step_x); x += window_step_x)
120 {
121 vst1q_u8(output_ptr + output.offset() + x, vquantize(vdequantize(vld1q_u8(input.ptr() + x), input_qinfo), output_qinfo));
122 }
123
124 // Compute left-over elements
125 for(; x < window_end_x; ++x)
126 {
127 *(output_ptr + output.offset() + x) = quantize_qasymm8(dequantize_qasymm8(*(input.ptr() + x), input_qinfo), output_qinfo);
128 }
129
Pablo Tello3dd5b682019-03-04 14:14:02 +0000130 },
131 input, output);
132 }
Georgios Pinitas33843562019-12-10 13:33:18 +0000133 else if(dt == DataType::QASYMM8_SIGNED && input_qinfo != output_qinfo)
134 {
Michalis Spyrou61b17082020-03-04 17:34:20 +0000135 execute_window_loop(win, [&](const Coordinates &)
Georgios Pinitas33843562019-12-10 13:33:18 +0000136 {
Michalis Spyrou61b17082020-03-04 17:34:20 +0000137 int x = window_start_x;
138 for(; x <= (window_end_x - window_step_x); x += window_step_x)
139 {
140 vst1q_s8(reinterpret_cast<int8_t *>(output_ptr + output.offset() + x),
141 vquantize_signed(vdequantize(vld1q_s8(reinterpret_cast<int8_t *>(input.ptr()) + x), input_qinfo), output_qinfo));
142 }
143
144 // Compute left-over elements
145 for(; x < window_end_x; ++x)
146 {
147 *(output_ptr + output.offset() + x) = quantize_qasymm8_signed(dequantize_qasymm8_signed(*(input.ptr() + x), input_qinfo), output_qinfo);
148 }
Georgios Pinitas33843562019-12-10 13:33:18 +0000149 },
150 input, output);
151 }
Pablo Tello3dd5b682019-03-04 14:14:02 +0000152 else
153 {
Michalis Spyrou61b17082020-03-04 17:34:20 +0000154 execute_window_loop(win, [&](const Coordinates &)
Pablo Tello3dd5b682019-03-04 14:14:02 +0000155 {
156 const auto in_ptr = input.ptr();
157 const auto out_ptr = output_ptr + output.offset();
158
Michalis Spyrou61b17082020-03-04 17:34:20 +0000159 int x = window_start_x;
160 for(; x <= (window_end_x - window_step_x); x += window_step_x)
161 {
162 wrapper::vstore(out_ptr + x, wrapper::vloadq(in_ptr + x));
163 }
164
165 // Compute left-over elements
166 for(; x < window_end_x; ++x)
167 {
168 *(out_ptr + x) = *(in_ptr + x);
169 }
Pablo Tello3dd5b682019-03-04 14:14:02 +0000170 },
171 input, output);
172 }
173}
Georgios Pinitas33843562019-12-10 13:33:18 +0000174} // namespace arm_compute