blob: b3c9bcafd178519056a85993cd268a18eca448f3 [file] [log] [blame]
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLReverseKernel.h"
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000028#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000029#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000034#include "support/StringSupport.h"
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000035
36namespace arm_compute
37{
38namespace
39{
40Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis)
41{
42 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, axis);
43 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000044 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000045 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(axis, 1, DataType::U32);
46 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis->num_dimensions() > 1, "Axis must be a 1D tensor");
47 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis->dimension(0) > 4, "Only up to 4 dimensions can be reversed");
48
49 // Checks performed when output is configured
50 if(output->total_size() != 0)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
53 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000055 }
56
57 return Status{};
58}
59} // namespace
60
61CLReverseKernel::CLReverseKernel()
62 : _input(nullptr), _output(nullptr), _axis(nullptr)
63{
64}
65
66void CLReverseKernel::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *axis)
67{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010068 configure(CLKernelLibrary::get().get_compile_context(), input, output, axis);
69}
70
Manuel Bottini2803f702020-04-21 16:20:03 +010071void CLReverseKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const ICLTensor *axis)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010072{
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000073 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, axis);
Manuel Bottinib6869dd2020-12-16 15:34:25 +000074 auto padding_info = get_padding_info({ input, output, axis });
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000075
76 _input = input;
77 _output = output;
78 _axis = axis;
79
80 // Output tensor auto initialization if not yet initialized
81 auto_init_if_empty(*output->info(), *input->info()->clone());
82
83 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), axis->info()));
84
85 // Set kernel build options
86 CLBuildOptions build_opts;
87 build_opts.add_option("-DNUM_REVERSE_DIMS=" + support::cpp11::to_string(axis->info()->dimension(0)));
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010088 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->info()->element_size()));
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000089
90 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +010091 _kernel = create_kernel(compile_context, "reverse", build_opts.options());
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000092
93 // Set static kernel arguments
94 unsigned int idx = 2 * num_arguments_per_4D_tensor() + num_arguments_per_1D_tensor();
95 add_argument<cl_uint>(idx, input->info()->dimension(0));
96 add_argument<cl_uint>(idx, input->info()->dimension(1));
97 add_argument<cl_uint>(idx, input->info()->dimension(2));
98 add_argument<cl_uint>(idx, input->info()->dimension(3));
99
100 // Configure kernel window
101 Window win = calculate_max_window(*output->info(), Steps());
102 ICLKernel::configure_internal(win);
103
104 // Set config_id for enabling LWS tuning
105 _config_id += "reverse_";
106 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
107 _config_id += "_";
108 _config_id += support::cpp11::to_string(input->info()->dimension(0));
109 _config_id += "_";
110 _config_id += support::cpp11::to_string(input->info()->dimension(1));
111 _config_id += "_";
112 _config_id += support::cpp11::to_string(input->info()->dimension(2));
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000113 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +0000114}
115
116Status CLReverseKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis)
117{
118 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, axis));
119 return Status{};
120}
121
122void CLReverseKernel::run(const Window &window, cl::CommandQueue &queue)
123{
124 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
125 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
126
127 Window collapsed = window.collapse(ICLKernel::window(), Window::DimZ);
128 Window slice = collapsed.first_slice_window_4D();
129 Window axis_slice = collapsed.first_slice_window_1D();
130
131 do
132 {
133 unsigned int idx = 0;
134 add_4D_tensor_argument(idx, _input, slice);
135 add_1D_tensor_argument(idx, _axis, axis_slice);
136 add_4D_tensor_argument(idx, _output, slice);
137 enqueue(queue, *this, slice, lws_hint());
138 }
139 while(collapsed.slide_window_slice_4D(slice));
140}
141} // namespace arm_compute