blob: adbdb11c5f26e993568d19f546a16757178e7e8d [file] [log] [blame]
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +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/CLReverseKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/CLValidate.h"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Window.h"
34
35namespace arm_compute
36{
37namespace
38{
39Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis)
40{
41 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, axis);
42 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
43 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
44 DataType::U16, DataType::S16,
45 DataType::U32, DataType::S32,
46 DataType::F16, DataType::F32);
47 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(axis, 1, DataType::U32);
48 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis->num_dimensions() > 1, "Axis must be a 1D tensor");
49 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis->dimension(0) > 4, "Only up to 4 dimensions can be reversed");
50
51 // Checks performed when output is configured
52 if(output->total_size() != 0)
53 {
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
56 }
57
58 return Status{};
59}
60} // namespace
61
62CLReverseKernel::CLReverseKernel()
63 : _input(nullptr), _output(nullptr), _axis(nullptr)
64{
65}
66
67void CLReverseKernel::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *axis)
68{
69 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, axis);
70
71 _input = input;
72 _output = output;
73 _axis = axis;
74
75 // Output tensor auto initialization if not yet initialized
76 auto_init_if_empty(*output->info(), *input->info()->clone());
77
78 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), axis->info()));
79
80 // Set kernel build options
81 CLBuildOptions build_opts;
82 build_opts.add_option("-DNUM_REVERSE_DIMS=" + support::cpp11::to_string(axis->info()->dimension(0)));
Gian Marco Iodice5ba5e092018-12-06 17:13:09 +000083 switch(input->info()->element_size())
84 {
85 case 1:
86 build_opts.add_option("-DDATA_TYPE=uchar");
87 break;
88 case 2:
89 build_opts.add_option("-DDATA_TYPE=ushort");
90 break;
91 case 4:
92 build_opts.add_option("-DDATA_TYPE=uint");
93 break;
94 default:
95 ARM_COMPUTE_ERROR("Data type not supported");
96 }
Michele Di Giorgio5daeffd2018-11-26 10:01:15 +000097
98 // Create kernel
99 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("reverse", build_opts.options()));
100
101 // Set static kernel arguments
102 unsigned int idx = 2 * num_arguments_per_4D_tensor() + num_arguments_per_1D_tensor();
103 add_argument<cl_uint>(idx, input->info()->dimension(0));
104 add_argument<cl_uint>(idx, input->info()->dimension(1));
105 add_argument<cl_uint>(idx, input->info()->dimension(2));
106 add_argument<cl_uint>(idx, input->info()->dimension(3));
107
108 // Configure kernel window
109 Window win = calculate_max_window(*output->info(), Steps());
110 ICLKernel::configure_internal(win);
111
112 // Set config_id for enabling LWS tuning
113 _config_id += "reverse_";
114 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
115 _config_id += "_";
116 _config_id += support::cpp11::to_string(input->info()->dimension(0));
117 _config_id += "_";
118 _config_id += support::cpp11::to_string(input->info()->dimension(1));
119 _config_id += "_";
120 _config_id += support::cpp11::to_string(input->info()->dimension(2));
121}
122
123Status CLReverseKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *axis)
124{
125 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, axis));
126 return Status{};
127}
128
129void CLReverseKernel::run(const Window &window, cl::CommandQueue &queue)
130{
131 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
132 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
133
134 Window collapsed = window.collapse(ICLKernel::window(), Window::DimZ);
135 Window slice = collapsed.first_slice_window_4D();
136 Window axis_slice = collapsed.first_slice_window_1D();
137
138 do
139 {
140 unsigned int idx = 0;
141 add_4D_tensor_argument(idx, _input, slice);
142 add_1D_tensor_argument(idx, _axis, axis_slice);
143 add_4D_tensor_argument(idx, _output, slice);
144 enqueue(queue, *this, slice, lws_hint());
145 }
146 while(collapsed.slide_window_slice_4D(slice));
147}
148} // namespace arm_compute