blob: 6b3e855ad385d6e39a4577c30273fd806957bbed [file] [log] [blame]
Georgios Pinitas8795ffb2017-12-01 16:13:40 +00001/*
Pablo Tello6c6e77a2018-01-23 10:03:27 +00002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitas8795ffb2017-12-01 16:13:40 +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/CPP/kernels/CPPPermuteKernel.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
Pablo Tello00afd112018-01-04 10:34:24 +000032#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000033
34#include <cstddef>
35#include <cstdint>
36
37using namespace arm_compute;
38
39namespace
40{
Georgios Pinitas631c41a2017-12-06 11:53:03 +000041Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000042{
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QS8, DataType::QASYMM8,
44 DataType::U16, DataType::S16, DataType::QS16,
45 DataType::U32, DataType::S32,
46 DataType::F16, DataType::F32);
Georgios Pinitas69af6cf2018-02-14 19:23:44 +000047 ARM_COMPUTE_RETURN_ERROR_ON_MSG(perm.num_dimensions() > 4, "Only up to 4D permutation vectors are supported");
Pablo Tello02541fb2017-12-15 09:48:59 +000048
Pablo Tello00afd112018-01-04 10:34:24 +000049 const TensorShape output_shape = misc::shape_calculator::compute_permutation_output_shape(*input, perm);
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000050
51 // Validate configured output
52 if(output->total_size() != 0)
53 {
Pablo Tello02541fb2017-12-15 09:48:59 +000054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000055 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
57 }
58
Georgios Pinitas631c41a2017-12-06 11:53:03 +000059 return Status{};
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000060}
Pablo Tello00afd112018-01-04 10:34:24 +000061
62template <typename T>
63inline void permute_strides(Dimensions<T> &dimensions, const PermutationVector &perm)
64{
65 const auto old_dim = utility::make_array<Dimensions<T>::num_max_dimensions>(dimensions.begin(), dimensions.end());
66 for(unsigned int i = 0; i < perm.num_dimensions(); ++i)
67 {
Georgios Pinitas69af6cf2018-02-14 19:23:44 +000068 T dimension_val = (perm[i] < dimensions.num_dimensions()) ? old_dim[i] : 0;
69 dimensions.set(perm[i], dimension_val);
Pablo Tello00afd112018-01-04 10:34:24 +000070 }
71}
72
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000073} // namespace
74
75template <typename T>
76void CPPPermuteKernel::run_permute(const Window &window)
77{
Georgios Pinitas69af6cf2018-02-14 19:23:44 +000078 // Permute strides
Pablo Tello6c6e77a2018-01-23 10:03:27 +000079 Strides strides = _output->info()->strides_in_bytes();
Pablo Tello00afd112018-01-04 10:34:24 +000080 Strides perm_strides = strides;
Pablo Tello6c6e77a2018-01-23 10:03:27 +000081 permute_strides(perm_strides, _perm);
Georgios Pinitas69af6cf2018-02-14 19:23:44 +000082
83 // Create output window
Pablo Tello00afd112018-01-04 10:34:24 +000084 Window window_out(window);
85 const Window::Dimension zero_window = Window::Dimension(0, 0, 0);
86 for(size_t d = 0; d <= _perm.num_dimensions(); ++d)
87 {
88 window_out.set(d, zero_window);
89 }
Georgios Pinitas69af6cf2018-02-14 19:23:44 +000090
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000091 // Create iterators
92 Iterator in(_input, window);
93 Iterator out(_output, window_out);
Georgios Pinitas69af6cf2018-02-14 19:23:44 +000094
Pablo Tello00afd112018-01-04 10:34:24 +000095 if(_input->info()->num_dimensions() <= 3)
Georgios Pinitas8795ffb2017-12-01 16:13:40 +000096 {
97 execute_window_loop(window, [&](const Coordinates & id)
98 {
Pablo Tello00afd112018-01-04 10:34:24 +000099 const int idx = id[0] * perm_strides[0] + id[1] * perm_strides[1] + id[2] * perm_strides[2];
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000100 *(reinterpret_cast<T *>(out.ptr() + idx)) = *(reinterpret_cast<const T *>(in.ptr()));
101 },
102 in, out);
103 }
Pablo Tello00afd112018-01-04 10:34:24 +0000104 else if(_input->info()->num_dimensions() >= 4)
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000105 {
Georgios Pinitas69af6cf2018-02-14 19:23:44 +0000106 execute_window_loop(window, [&](const Coordinates & id)
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000107 {
Georgios Pinitas69af6cf2018-02-14 19:23:44 +0000108 const int idx = id[0] * perm_strides[0] + id[1] * perm_strides[1] + id[2] * perm_strides[2] + id[3] * perm_strides[3];
109 *(reinterpret_cast<T *>(out.ptr() + idx)) = *(reinterpret_cast<const T *>(in.ptr()));
110 },
111 in, out);
Pablo Tello02541fb2017-12-15 09:48:59 +0000112 }
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000113}
114
115CPPPermuteKernel::CPPPermuteKernel()
116 : _func(), _input(nullptr), _output(nullptr), _perm()
117{
118}
119
120void CPPPermuteKernel::configure(const ITensor *input, ITensor *output, const PermutationVector &perm)
121{
122 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Pablo Tello00afd112018-01-04 10:34:24 +0000123 const TensorShape output_shape = misc::shape_calculator::compute_permutation_output_shape(*input->info(), perm);
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000124 // Output auto inizialitation if not yet initialized
Pablo Tello02541fb2017-12-15 09:48:59 +0000125 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000126
127 // Perform validation step
128 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), perm));
129
130 _input = input;
131 _output = output;
132 _perm = perm;
133
134 switch(input->info()->element_size())
135 {
136 case 1:
137 _func = &CPPPermuteKernel::run_permute<uint8_t>;
138 break;
139 case 2:
140 _func = &CPPPermuteKernel::run_permute<uint16_t>;
141 break;
142 case 4:
143 _func = &CPPPermuteKernel::run_permute<uint32_t>;
144 break;
145 default:
146 ARM_COMPUTE_ERROR("Element size not supported");
147 break;
148 }
149
150 // Configure kernel window
151 Window win = calculate_max_window(*input->info(), Steps());
152
153 // The CPPPermute doesn't need padding so update_window_and_padding() can be skipped
154 Coordinates coord;
155 coord.set_num_dimensions(output->info()->num_dimensions());
156 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
157
158 ICPPKernel::configure(win);
159}
160
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000161Status CPPPermuteKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000162{
163 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, perm));
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000164 return Status{};
Georgios Pinitas8795ffb2017-12-01 16:13:40 +0000165}
166
167void CPPPermuteKernel::run(const Window &window, const ThreadInfo &info)
168{
169 ARM_COMPUTE_UNUSED(info);
170 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
171 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICPPKernel::window(), window);
172
173 if(_func != nullptr)
174 {
175 (this->*_func)(window);
176 }
177}