blob: a9a2c5c97a94b958893ec259d39da9da5100b2ef [file] [log] [blame]
Michalis Spyrou5237e012018-01-17 09:40:27 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010028#include "arm_compute/core/CL/CLValidate.h"
Michalis Spyrou5237e012018-01-17 09:40:27 +000029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/Types.h"
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michalis Spyrou5237e012018-01-17 09:40:27 +000035#include "support/ToolchainSupport.h"
36
37using namespace arm_compute;
38
39CLPermuteKernel::CLPermuteKernel()
40 : _input(nullptr), _output(nullptr), _perm()
41{
42}
43namespace
44{
45TensorShape get_output_shape(const ITensorInfo *input, const PermutationVector &perm)
46{
47 TensorShape output_shape = input->tensor_shape();
48 permute(output_shape, perm);
49 return output_shape;
50}
Pablo Tello6c6e77a2018-01-23 10:03:27 +000051
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000052Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
Michalis Spyrou5237e012018-01-17 09:40:27 +000053{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010054 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010055 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
56 DataType::U16, DataType::S16,
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000057 DataType::U32, DataType::S32,
58 DataType::F16, DataType::F32);
Diego Lopez Recas3db5eef2018-02-22 16:10:17 +000059 ARM_COMPUTE_RETURN_ERROR_ON_MSG((perm != PermutationVector{ 2U, 0U, 1U })
60 && (perm != PermutationVector{ 1U, 2U, 0U })
61 && (perm != PermutationVector{ 3U, 2U, 0U, 1U }),
62 "Only [2, 0, 1], [1, 2, 0] and [3, 2, 0, 1] permutation is supported");
Michalis Spyrou5237e012018-01-17 09:40:27 +000063
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000064 const TensorShape output_shape = misc::shape_calculator::compute_permutation_output_shape(*input, perm);
65
66 // Validate configured output
67 if(output->total_size() != 0)
68 {
69 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +000071 }
Michele Di Giorgiob28f3292018-02-02 15:58:01 +000072 return Status{};
73}
74} // namespace
75
76void CLPermuteKernel::configure(const ICLTensor *input, ICLTensor *output, const PermutationVector &perm)
77{
78 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
79 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), perm));
80
Michalis Spyrou5237e012018-01-17 09:40:27 +000081 _input = input;
82 _output = output;
83 _perm = perm;
84
85 const TensorShape output_shape = get_output_shape(input->info(), perm);
86 // Output auto inizialitation if not yet initialized
87 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
88
89 // Create kernel
90 std::set<std::string> build_opts;
91
92 build_opts.emplace("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
93 build_opts.emplace("-DDEPTH_IN=" + support::cpp11::to_string(input->info()->dimension(2)));
94
95 // Run [2, 0, 1] permute
Isabella Gottardi4ad65982018-10-25 17:42:19 +010096 if(_perm == PermutationVector{ 2U, 0U, 1U })
Michalis Spyrou5237e012018-01-17 09:40:27 +000097 {
98 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("permute_201", build_opts));
99 }
100 // Run [1, 2, 0] permute
Isabella Gottardi4ad65982018-10-25 17:42:19 +0100101 else if(_perm == PermutationVector{ 1U, 2U, 0U })
Michalis Spyrou5237e012018-01-17 09:40:27 +0000102 {
103 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("permute_120", build_opts));
104 }
105 // Run [3, 2, 0, 1] permute
Isabella Gottardi4ad65982018-10-25 17:42:19 +0100106 else if(_perm == PermutationVector{ 3U, 2U, 0U, 1U })
Michalis Spyrou5237e012018-01-17 09:40:27 +0000107 {
108 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("permute_3201", build_opts));
109 }
110 else
111 {
112 ARM_COMPUTE_ERROR("Not supported.");
113 }
114
115 // Configure kernel window
116 Window win = calculate_max_window(*input->info(), Steps());
117
Georgios Pinitas6528aa22018-03-15 18:02:21 +0000118 // The CLPermute doesn't need padding so update_window_and_padding() can be skipped
119 Coordinates coord;
120 coord.set_num_dimensions(output->info()->num_dimensions());
121 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
122
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100123 ICLKernel::configure_internal(win);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000124}
125
Michele Di Giorgiob28f3292018-02-02 15:58:01 +0000126Status CLPermuteKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm)
127{
Isabella Gottardiaad9f2c2018-02-21 11:51:23 +0000128 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Anthony Barbiera8a4d9e2018-05-14 14:43:29 +0100129 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, perm));
Michele Di Giorgiob28f3292018-02-02 15:58:01 +0000130
131 return Status{};
132}
133
Michalis Spyrou5237e012018-01-17 09:40:27 +0000134void CLPermuteKernel::run(const Window &window, cl::CommandQueue &queue)
135{
136 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
137 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
138
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000139 Window slice_in = window.first_slice_window_4D().collapse(ICLKernel::window(), 2, 4);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000140
141 // Setup output slice
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000142 Window slice_out(slice_in);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000143 slice_out.set(Window::DimX, Window::Dimension(0, 0, 0));
144 slice_out.set(Window::DimY, Window::Dimension(0, 0, 0));
145 slice_out.set(Window::DimZ, Window::Dimension(0, 0, 0));
146 slice_out.set(3, Window::Dimension(0, 0, 0));
147
148 do
149 {
Diego Lopez Recas0021d752017-12-18 14:42:56 +0000150 unsigned int idx = 0;
151 add_4D_tensor_argument(idx, _input, slice_in);
152 add_4D_tensor_argument(idx, _output, slice_out);
153 enqueue(queue, *this, slice_in);
Michalis Spyrou5237e012018-01-17 09:40:27 +0000154 }
155 while(window.slide_window_slice_4D(slice_in) && window.slide_window_slice_4D(slice_out));
156}