blob: 620665791fcf751a6110405c3f59805a14c81a89 [file] [log] [blame]
Michalis Spyrou5237e012018-01-17 09:40:27 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Michalis Spyrou5237e012018-01-17 09:40:27 +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/CL/kernels/CLPermuteKernel.h"
Michalis Spyrou5237e012018-01-17 09:40:27 +000025#include "arm_compute/core/CL/ICLTensor.h"
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000026#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010027#include "src/core/helpers/AutoConfiguration.h"
28#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000029#include "support/StringSupport.h"
Michalis Spyrou5237e012018-01-17 09:40:27 +000030
31using namespace arm_compute;
32
33CLPermuteKernel::CLPermuteKernel()
34 : _input(nullptr), _output(nullptr), _perm()
35{
36}
37namespace
38{
39TensorShape get_output_shape(const ITensorInfo *input, const PermutationVector &perm)
40{
41 TensorShape output_shape = input->tensor_shape();
42 permute(output_shape, perm);
43 return output_shape;
44}
Pablo Tello6c6e77a2018-01-23 10:03:27 +000045
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000046Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
Michalis Spyrou5237e012018-01-17 09:40:27 +000047{
Matthew Bentham758b5ba2020-03-05 23:37:48 +000048 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini8481d832019-12-10 15:28:40 +000049 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
shubhame1a4e372019-01-07 21:37:55 +053050 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() < 1 || input->num_dimensions() > 4,
51 "Permutation upto 4-D input tensor is supported");
52 ARM_COMPUTE_RETURN_ERROR_ON_MSG(perm.num_dimensions() < 1 || perm.num_dimensions() > 4,
53 "Permutation vector size should be less than or equal to 4");
54 for(const auto &p : perm)
55 {
56 ARM_COMPUTE_RETURN_ERROR_ON_MSG(p >= perm.num_dimensions(), "Permutation vector has invalid values");
57 }
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000058
59 // Validate configured output
60 if(output->total_size() != 0)
61 {
shubhame1a4e372019-01-07 21:37:55 +053062 const TensorShape output_shape = misc::shape_calculator::compute_permutation_output_shape(*input, perm);
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000063 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000064 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000066 }
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000067 return Status{};
68}
69} // namespace
70
71void CLPermuteKernel::configure(const ICLTensor *input, ICLTensor *output, const PermutationVector &perm)
72{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010073 configure(CLKernelLibrary::get().get_compile_context(), input, output, perm);
74}
75
Manuel Bottini679fc962020-04-21 16:08:53 +010076void CLPermuteKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const PermutationVector &perm)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010077{
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000078 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
SiCong Li96209c72020-08-21 12:28:30 +010079 const TensorShape output_shape = get_output_shape(input->info(), perm);
80 // Output auto inizialitation if not yet initialized
81 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
82
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000083 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), perm));
84
Michalis Spyrou5237e012018-01-17 09:40:27 +000085 _input = input;
86 _output = output;
87 _perm = perm;
88
Michalis Spyrou5237e012018-01-17 09:40:27 +000089 // Create kernel
shubhame1a4e372019-01-07 21:37:55 +053090 CLBuildOptions build_opts;
Sheri Zhang0de45d02020-04-17 14:59:13 +010091 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(data_size_from_type(input->info()->data_type())));
shubhame1a4e372019-01-07 21:37:55 +053092 build_opts.add_option("-DDEPTH_IN=" + support::cpp11::to_string(input->info()->dimension(2)));
93 // New positions of width(W), height(H), channel(C) and batch(D) based on permutation vector
94 build_opts.add_option("-DP1=" + support::cpp11::to_string((_perm.num_dimensions() >= 1) ? perm[0] : 0));
95 build_opts.add_option("-DP2=" + support::cpp11::to_string((_perm.num_dimensions() >= 2) ? perm[1] : 1));
96 build_opts.add_option("-DP3=" + support::cpp11::to_string((_perm.num_dimensions() >= 3) ? perm[2] : 2));
97 build_opts.add_option("-DP4=" + support::cpp11::to_string((_perm.num_dimensions() >= 4) ? perm[3] : 3));
Michalis Spyrou5237e012018-01-17 09:40:27 +000098
Manuel Bottini4c6bd512020-04-08 10:15:51 +010099 _kernel = create_kernel(compile_context, "permute", build_opts.options());
Michalis Spyrou5237e012018-01-17 09:40:27 +0000100
101 // Configure kernel window
102 Window win = calculate_max_window(*input->info(), Steps());
103
Georgios Pinitas6528aa22018-03-15 18:02:21 +0000104 // The CLPermute doesn't need padding so update_window_and_padding() can be skipped
105 Coordinates coord;
106 coord.set_num_dimensions(output->info()->num_dimensions());
107 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
108
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100109 ICLKernel::configure_internal(win);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000110}
111
Michele Di Giorgiob28f3292018-02-02 15:58:01 +0000112Status CLPermuteKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
113{
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +0000114 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anthony Barbiera8a4d9e2018-05-14 14:43:29 +0100115 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, perm));
Michele Di Giorgiob28f3292018-02-02 15:58:01 +0000116
117 return Status{};
118}
119
Michalis Spyrou5237e012018-01-17 09:40:27 +0000120void CLPermuteKernel::run(const Window &window, cl::CommandQueue &queue)
121{
122 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
123 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
124
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000125 Window slice_in = window.first_slice_window_4D().collapse(ICLKernel::window(), 2, 4);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000126
127 // Setup output slice
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000128 Window slice_out(slice_in);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000129 slice_out.set(Window::DimX, Window::Dimension(0, 0, 0));
130 slice_out.set(Window::DimY, Window::Dimension(0, 0, 0));
131 slice_out.set(Window::DimZ, Window::Dimension(0, 0, 0));
132 slice_out.set(3, Window::Dimension(0, 0, 0));
133
134 do
135 {
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000136 unsigned int idx = 0;
137 add_4D_tensor_argument(idx, _input, slice_in);
138 add_4D_tensor_argument(idx, _output, slice_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100139 enqueue(queue, *this, slice_in, lws_hint());
Michalis Spyrou5237e012018-01-17 09:40:27 +0000140 }
141 while(window.slide_window_slice_4D(slice_in) && window.slide_window_slice_4D(slice_out));
142}