blob: 3828a48d027d4ca218fe6ad07d461f3fcceef1fa [file] [log] [blame]
Georgios Pinitas77589b52018-08-21 14:41:35 +01001/*
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/CLStridedSliceKernel.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/IAccessWindow.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Window.h"
33
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/utils/helpers/tensor_transform.h"
36#include "arm_compute/core/utils/misc/ShapeCalculator.h"
37
38namespace arm_compute
39{
40namespace
41{
42Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output,
43 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
44 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
45{
46 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
47 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1,
49 DataType::U8, DataType::S8, DataType::QASYMM8,
50 DataType::U16, DataType::S16,
51 DataType::U32, DataType::S32,
52 DataType::F16, DataType::F32);
53
54 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().num_dimensions() > 4);
55 ARM_COMPUTE_RETURN_ERROR_ON(starts.num_dimensions() > input->num_dimensions());
56 ARM_COMPUTE_RETURN_ERROR_ON(ends.num_dimensions() > input->num_dimensions());
57 ARM_COMPUTE_RETURN_ERROR_ON(strides.num_dimensions() > input->num_dimensions());
Georgios Pinitasc1a72452018-08-24 11:25:32 +010058 ARM_COMPUTE_RETURN_ERROR_ON(std::any_of(strides.cbegin(), strides.cbegin() + strides.num_dimensions(), [](int i)
Georgios Pinitas77589b52018-08-21 14:41:35 +010059 {
Georgios Pinitasc1a72452018-08-24 11:25:32 +010060 return i == 0;
61 }));
Georgios Pinitas77589b52018-08-21 14:41:35 +010062
63 // Get expected output shape
64 const TensorShape exp_output_shape = arm_compute::misc::shape_calculator::compute_strided_slice_shape(*input,
65 starts, ends, strides,
66 begin_mask, end_mask, shrink_axis_mask);
67 ARM_COMPUTE_RETURN_ERROR_ON(exp_output_shape.total_size() == 0);
68
69 // Checks output if configured
70 if(output->total_size() != 0)
71 {
Georgios Pinitas2ade4522018-12-07 13:23:39 +000072 const TensorInfo exp_output_info = output->clone()->set_tensor_shape(exp_output_shape);
73 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &exp_output_info);
Georgios Pinitas77589b52018-08-21 14:41:35 +010074 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
75 }
76
77 return Status{};
78}
79
80std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output,
81 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
82 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
83{
84 // Output tensor auto initialization if not yet initialized
85 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_strided_slice_shape(*input,
86 starts, ends, strides,
87 begin_mask, end_mask, shrink_axis_mask);
88 auto_init_if_empty(*output, input->clone()->set_tensor_shape(output_shape));
89
90 // Create window
91 const unsigned int num_elems_processed_per_iteration = 1;
92
93 Window win = calculate_max_window(*output, Steps(num_elems_processed_per_iteration));
94 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
95
96 return std::make_pair(Status{}, win);
97}
98} // namespace
99
100CLStridedSliceKernel::CLStridedSliceKernel()
101 : _input(nullptr), _output(nullptr)
102{
103}
104
105void CLStridedSliceKernel::configure(const ICLTensor *input, ICLTensor *output,
106 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
107 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
108{
109 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
110 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), starts, ends, strides, begin_mask, end_mask, shrink_axis_mask));
111
112 _input = input;
113 _output = output;
114
115 const TensorShape &input_shape = input->info()->tensor_shape();
116
117 const Coordinates final_strides = arm_compute::helpers::tensor_transform::strided_slice_strides(input_shape, strides);
118 const Coordinates starts_abs = arm_compute::helpers::tensor_transform::strided_slice_absolute_start_coords(input_shape, starts, final_strides, begin_mask);
119 const Coordinates ends_abs = arm_compute::helpers::tensor_transform::strided_slice_absolute_end_coords(input_shape, starts_abs, ends, final_strides, end_mask, shrink_axis_mask);
120
121 // Configure kernel window
122 auto win_config = validate_and_configure_window(input->info(), output->info(), starts, ends, strides, begin_mask, end_mask, shrink_axis_mask);
123 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Georgios Pinitasc1a72452018-08-24 11:25:32 +0100124
125 // Enable multiple elements processing along x if stride_x is 1 and output width greater than the access vector size
126 const int vec_size_x = 16 / input->info()->element_size();
127 const int output_width_x = output->info()->tensor_shape().x();
128 const bool multi_access_x = (final_strides.x() == 1) && (output_width_x / vec_size_x > 0);
129
130 // Update window if needed
131 if(multi_access_x)
132 {
133 Window &updated_window = std::get<1>(win_config);
134 updated_window.set(Window::DimX,
135 Window::Dimension(updated_window.x().start(), ceil_to_multiple(updated_window.x().end(), vec_size_x), vec_size_x));
136 }
Georgios Pinitas77589b52018-08-21 14:41:35 +0100137 ICLKernel::configure_internal(win_config.second);
138
139 // Create build options
140 CLBuildOptions build_opts;
141 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
142 for(unsigned int i = 0; i < input_shape.num_dimensions(); ++i)
143 {
144 build_opts.add_option("-DSTART_" + support::cpp11::to_string(i) + "=" + support::cpp11::to_string(starts_abs[i]));
145 build_opts.add_option("-DSTRIDE_" + support::cpp11::to_string(i) + "=" + support::cpp11::to_string(final_strides[i]));
146 }
Georgios Pinitasc1a72452018-08-24 11:25:32 +0100147 build_opts.add_option_if(multi_access_x, "-DLAST_ACCESSED_X=" + support::cpp11::to_string(std::max<int>(output_width_x - vec_size_x, 0)));
148 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
Georgios Pinitas77589b52018-08-21 14:41:35 +0100149 build_opts.add_option_if_else(input_shape.num_dimensions() > 2,
150 "-DSRC_DEPTH=" + support::cpp11::to_string(input_shape.z()),
151 "-DSRC_DEPTH=1");
152 build_opts.add_option_if_else(_output->info()->num_dimensions() > 2,
153 "-DDST_DEPTH=" + support::cpp11::to_string(_output->info()->tensor_shape().z()),
154 "-DDST_DEPTH=1");
155
156 // Create kernel
157 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("strided_slice", build_opts.options()));
158
159 // Set config_id for enabling LWS tuning
160 _config_id = "strided_slice";
161 _config_id += "_";
162 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
163 for(unsigned int i = 0; i < input_shape.num_dimensions(); ++i)
164 {
165 _config_id += "_";
166 _config_id += support::cpp11::to_string(input->info()->dimension(i));
167 _config_id += "_";
168 _config_id += support::cpp11::to_string(starts_abs[i]);
169 _config_id += "_";
170 _config_id += support::cpp11::to_string(ends_abs[i]);
171 _config_id += "_";
172 _config_id += support::cpp11::to_string(final_strides[i]);
173 }
174}
175
176Status CLStridedSliceKernel::validate(const ITensorInfo *input, const ITensorInfo *output,
177 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
178 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
179{
180 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, starts, ends, strides, begin_mask, end_mask, shrink_axis_mask));
181 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(),
182 starts, ends, strides, begin_mask, end_mask, shrink_axis_mask)
183 .first);
184
185 return Status{};
186}
187
188void CLStridedSliceKernel::run(const Window &window, cl::CommandQueue &queue)
189{
190 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
191 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
192
193 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
194 Window slice = window_collapsed.first_slice_window_4D();
195
196 do
197 {
198 unsigned int idx = 0;
199 add_4D_tensor_argument(idx, _input, slice);
200 add_4D_tensor_argument(idx, _output, slice);
201 enqueue(queue, *this, slice, lws_hint());
202 }
203 while(window_collapsed.slide_window_slice_4D(slice));
204}
205} // namespace arm_compute