blob: b2fce0f56df667f449f81e8fcc051702b3d7e57a [file] [log] [blame]
Michalis Spyrou110b9202018-12-28 16:32:49 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou110b9202018-12-28 16:32:49 +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 */
Michalis Spyrouebcebf12020-10-21 00:04:14 +010024#include "src/core/NEON/kernels/NEReverseKernel.h"
Michalis Spyrou110b9202018-12-28 16:32:49 +000025
Michalis Spyrou110b9202018-12-28 16:32:49 +000026#include "arm_compute/core/TensorInfo.h"
Michalis Spyrou110b9202018-12-28 16:32:49 +000027#include "arm_compute/core/Validate.h"
28#include "arm_compute/core/Window.h"
Georgios Pinitasddb93bb2020-10-02 16:38:59 +010029#include "src/core/NEON/wrapper/wrapper.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010030#include "src/core/helpers/AutoConfiguration.h"
31#include "src/core/helpers/WindowHelpers.h"
Michalis Spyrou110b9202018-12-28 16:32:49 +000032
Michalis Spyrou110b9202018-12-28 16:32:49 +000033namespace arm_compute
34{
35namespace
36{
37Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis)
38{
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000039 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output, axis);
Sheri Zhangac6499a2021-02-10 15:32:38 +000040 //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 +000041 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Michalis Spyrou110b9202018-12-28 16:32:49 +000042 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(axis, 1, DataType::U32);
43 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis->num_dimensions() > 1, "Axis must be a 1D tensor");
44 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis->dimension(0) > 4, "Only up to 4 dimensions can be reversed");
45
46 // Checks performed when output is configured
47 if(output->total_size() != 0)
48 {
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
50 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000051 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michalis Spyrou110b9202018-12-28 16:32:49 +000052 }
53
54 return Status{};
55}
56} // namespace
57
58NEReverseKernel::NEReverseKernel()
59 : _input(nullptr), _output(nullptr), _axis(nullptr)
60{
61}
62
63void NEReverseKernel::configure(const ITensor *input, ITensor *output, const ITensor *axis)
64{
65 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, axis);
66
67 _input = input;
68 _output = output;
69 _axis = axis;
70
71 // Output tensor auto initialization if not yet initialized
72 auto_init_if_empty(*output->info(), *input->info()->clone());
73
74 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), axis->info()));
75
76 // Configure kernel window
77 INEKernel::configure(calculate_max_window(*output->info()));
78}
79
80Status NEReverseKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis)
81{
82 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, axis));
83
84 return Status{};
85}
86
87template <typename T>
88void run_reverse(const Window &window, const ITensor *input, const ITensor *axis, ITensor *output)
89{
90 int axis_bit = 0;
91 for(unsigned int i = 0; i < axis->info()->dimension(0); ++i)
92 {
93 const int axis_i = *(reinterpret_cast<const int *>(axis->buffer()) + i);
94 axis_bit |= 1 << axis_i;
95 }
96
97 // Check if we need a left-over loop for the y dimension
Luca Foschianifedefc32020-02-17 17:02:49 +000098 const int window_step_x = 16 / input->info()->element_size();
99 const int window_start_x = window.x().start();
100 const int window_end_x = window.x().end();
Michalis Spyrou110b9202018-12-28 16:32:49 +0000101
Luca Foschianifedefc32020-02-17 17:02:49 +0000102 Window win(window);
103 win.set(Window::DimX, Window::Dimension(0, 1, 1));
Michalis Spyrou110b9202018-12-28 16:32:49 +0000104
Luca Foschianifedefc32020-02-17 17:02:49 +0000105 Iterator input_it(input, win);
106 execute_window_loop(win, [&](const Coordinates & id)
Michalis Spyrou110b9202018-12-28 16:32:49 +0000107 {
Luca Foschianifedefc32020-02-17 17:02:49 +0000108 int x = window_start_x;
109 for(; x <= (window_end_x - window_step_x); x += window_step_x)
Michalis Spyrou110b9202018-12-28 16:32:49 +0000110 {
Luca Foschianifedefc32020-02-17 17:02:49 +0000111 auto in = wrapper::vloadq(reinterpret_cast<T *>(input_it.ptr()) + x);
Michalis Spyrou110b9202018-12-28 16:32:49 +0000112
113 // Reverse 0 axis
114 if(axis_bit & 0x1)
115 {
116 in = wrapper::vrev64(in);
117 in = wrapper::vcombine(wrapper::vgethigh(in), wrapper::vgetlow(in));
118 }
119
Luca Foschianifedefc32020-02-17 17:02:49 +0000120 const int offset_x = (axis_bit & 0x1) ? output->info()->dimension(0) - x - window_step_x : x;
Michalis Spyrou110b9202018-12-28 16:32:49 +0000121 const int offset_y = (axis_bit & 0x2) ? output->info()->dimension(1) - id.y() - 1 : id.y();
122 const int offset_z = (axis_bit & 0x4) ? output->info()->dimension(2) - id.z() - 1 : id.z();
123 const int offset_w = (axis_bit & 0x8) ? output->info()->dimension(3) - id[3] - 1 : id[3];
124
125 auto out_ptr = reinterpret_cast<T *>(output->ptr_to_element(Coordinates(offset_x, offset_y, offset_z, offset_w)));
126 wrapper::vstore(out_ptr, in);
Michalis Spyrou110b9202018-12-28 16:32:49 +0000127 }
128
Luca Foschianifedefc32020-02-17 17:02:49 +0000129 // Compute left-over elements
130 for(; x < window_end_x; ++x)
131 {
132 const auto in = *(reinterpret_cast<T *>(input_it.ptr()) + x);
133
134 const int offset_x = (axis_bit & 0x1) ? output->info()->dimension(0) - x - 1 : x;
135 const int offset_y = (axis_bit & 0x2) ? output->info()->dimension(1) - id.y() - 1 : id.y();
136 const int offset_z = (axis_bit & 0x4) ? output->info()->dimension(2) - id.z() - 1 : id.z();
137 const int offset_w = (axis_bit & 0x8) ? output->info()->dimension(3) - id[3] - 1 : id[3];
138
139 *reinterpret_cast<T *>(output->ptr_to_element(Coordinates(offset_x, offset_y, offset_z, offset_w))) = in;
140 }
141 },
142 input_it);
Michalis Spyrou110b9202018-12-28 16:32:49 +0000143}
144
145void NEReverseKernel::run(const Window &window, const ThreadInfo &info)
146{
147 ARM_COMPUTE_UNUSED(info);
148 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
149 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
150
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100151 switch(_input->info()->element_size())
Michalis Spyrou110b9202018-12-28 16:32:49 +0000152 {
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100153 case 4:
Michalis Spyroua50e7022019-04-09 14:03:17 +0100154 run_reverse<uint32_t>(window, _input, _axis, _output);
Michalis Spyrou110b9202018-12-28 16:32:49 +0000155 break;
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100156 case 2:
Michalis Spyrou110b9202018-12-28 16:32:49 +0000157 run_reverse<uint16_t>(window, _input, _axis, _output);
158 break;
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100159 case 1:
Michalis Spyroua50e7022019-04-09 14:03:17 +0100160 run_reverse<uint8_t>(window, _input, _axis, _output);
Michalis Spyrou110b9202018-12-28 16:32:49 +0000161 break;
162 default:
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +0100163 ARM_COMPUTE_ERROR("Element size not supported");
Michalis Spyrou110b9202018-12-28 16:32:49 +0000164 }
165}
Sheri Zhangac6499a2021-02-10 15:32:38 +0000166} // namespace arm_compute