blob: 7ca5d575650d56528efed0cefd49e4055dd11265 [file] [log] [blame]
Georgios Pinitas77589b52018-08-21 14:41:35 +01001/*
Manuel Bottini8481d832019-12-10 15:28:40 +00002 * Copyright (c) 2018-2020 ARM Limited.
Georgios Pinitas77589b52018-08-21 14:41:35 +01003 *
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"
Georgios Pinitasb4af2c62018-12-10 18:45:35 +000035#include "arm_compute/core/utils/helpers/bit_ops.h"
Georgios Pinitas77589b52018-08-21 14:41:35 +010036#include "arm_compute/core/utils/helpers/tensor_transform.h"
37#include "arm_compute/core/utils/misc/ShapeCalculator.h"
38
39namespace arm_compute
40{
41namespace
42{
43Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output,
44 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
45 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
46{
47 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
48 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000049 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Georgios Pinitas77589b52018-08-21 14:41:35 +010050
51 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().num_dimensions() > 4);
52 ARM_COMPUTE_RETURN_ERROR_ON(starts.num_dimensions() > input->num_dimensions());
53 ARM_COMPUTE_RETURN_ERROR_ON(ends.num_dimensions() > input->num_dimensions());
54 ARM_COMPUTE_RETURN_ERROR_ON(strides.num_dimensions() > input->num_dimensions());
Georgios Pinitasc1a72452018-08-24 11:25:32 +010055 ARM_COMPUTE_RETURN_ERROR_ON(std::any_of(strides.cbegin(), strides.cbegin() + strides.num_dimensions(), [](int i)
Georgios Pinitas77589b52018-08-21 14:41:35 +010056 {
Georgios Pinitasc1a72452018-08-24 11:25:32 +010057 return i == 0;
58 }));
Georgios Pinitas77589b52018-08-21 14:41:35 +010059
60 // Get expected output shape
61 const TensorShape exp_output_shape = arm_compute::misc::shape_calculator::compute_strided_slice_shape(*input,
62 starts, ends, strides,
63 begin_mask, end_mask, shrink_axis_mask);
64 ARM_COMPUTE_RETURN_ERROR_ON(exp_output_shape.total_size() == 0);
65
66 // Checks output if configured
67 if(output->total_size() != 0)
68 {
Georgios Pinitas2ade4522018-12-07 13:23:39 +000069 const TensorInfo exp_output_info = output->clone()->set_tensor_shape(exp_output_shape);
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &exp_output_info);
Georgios Pinitas77589b52018-08-21 14:41:35 +010071 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
72 }
73
74 return Status{};
75}
76
77std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output,
78 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
79 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
80{
81 // Output tensor auto initialization if not yet initialized
82 const TensorShape output_shape = arm_compute::misc::shape_calculator::compute_strided_slice_shape(*input,
83 starts, ends, strides,
84 begin_mask, end_mask, shrink_axis_mask);
85 auto_init_if_empty(*output, input->clone()->set_tensor_shape(output_shape));
86
87 // Create window
Michele Di Giorgio4646d2e2019-06-19 12:28:47 +010088 Window win = calculate_max_window(*output, Steps());
Georgios Pinitas77589b52018-08-21 14:41:35 +010089 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
90
91 return std::make_pair(Status{}, win);
92}
93} // namespace
94
95CLStridedSliceKernel::CLStridedSliceKernel()
96 : _input(nullptr), _output(nullptr)
97{
98}
99
100void CLStridedSliceKernel::configure(const ICLTensor *input, ICLTensor *output,
101 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
102 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
103{
104 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
105 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), starts, ends, strides, begin_mask, end_mask, shrink_axis_mask));
106
107 _input = input;
108 _output = output;
109
110 const TensorShape &input_shape = input->info()->tensor_shape();
111
Michalis Spyroua4f378d2019-04-26 14:54:54 +0100112 Coordinates starts_abs;
113 Coordinates ends_abs;
114 Coordinates final_strides;
Georgios Pinitasb4af2c62018-12-10 18:45:35 +0000115 std::tie(starts_abs, ends_abs, final_strides) = arm_compute::helpers::tensor_transform::calculate_strided_slice_coords(
116 input_shape,
117 starts, ends, strides,
118 begin_mask, end_mask, shrink_axis_mask);
Georgios Pinitas77589b52018-08-21 14:41:35 +0100119
120 // Configure kernel window
121 auto win_config = validate_and_configure_window(input->info(), output->info(), starts, ends, strides, begin_mask, end_mask, shrink_axis_mask);
122 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Georgios Pinitasc1a72452018-08-24 11:25:32 +0100123
124 // Enable multiple elements processing along x if stride_x is 1 and output width greater than the access vector size
125 const int vec_size_x = 16 / input->info()->element_size();
126 const int output_width_x = output->info()->tensor_shape().x();
Georgios Pinitasb4af2c62018-12-10 18:45:35 +0000127 const bool is_shrink_on_x = arm_compute::helpers::bit_ops::is_bit_set(shrink_axis_mask, 0);
128 const bool multi_access_x = !is_shrink_on_x && (final_strides.x() == 1) && (output_width_x / vec_size_x > 0);
Georgios Pinitasc1a72452018-08-24 11:25:32 +0100129
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 {
Georgios Pinitasb4af2c62018-12-10 18:45:35 +0000144 const bool is_shrink = arm_compute::helpers::bit_ops::is_bit_set(shrink_axis_mask, i);
Georgios Pinitas77589b52018-08-21 14:41:35 +0100145 build_opts.add_option("-DSTART_" + support::cpp11::to_string(i) + "=" + support::cpp11::to_string(starts_abs[i]));
146 build_opts.add_option("-DSTRIDE_" + support::cpp11::to_string(i) + "=" + support::cpp11::to_string(final_strides[i]));
Georgios Pinitasb4af2c62018-12-10 18:45:35 +0000147 build_opts.add_option_if(is_shrink, "-DSHRINK_" + support::cpp11::to_string(i));
Georgios Pinitas77589b52018-08-21 14:41:35 +0100148 }
Georgios Pinitasc1a72452018-08-24 11:25:32 +0100149 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)));
150 build_opts.add_option_if(multi_access_x, "-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
Georgios Pinitas77589b52018-08-21 14:41:35 +0100151 build_opts.add_option_if_else(input_shape.num_dimensions() > 2,
152 "-DSRC_DEPTH=" + support::cpp11::to_string(input_shape.z()),
153 "-DSRC_DEPTH=1");
154 build_opts.add_option_if_else(_output->info()->num_dimensions() > 2,
155 "-DDST_DEPTH=" + support::cpp11::to_string(_output->info()->tensor_shape().z()),
156 "-DDST_DEPTH=1");
157
158 // Create kernel
159 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("strided_slice", build_opts.options()));
160
161 // Set config_id for enabling LWS tuning
162 _config_id = "strided_slice";
163 _config_id += "_";
164 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
165 for(unsigned int i = 0; i < input_shape.num_dimensions(); ++i)
166 {
167 _config_id += "_";
168 _config_id += support::cpp11::to_string(input->info()->dimension(i));
169 _config_id += "_";
170 _config_id += support::cpp11::to_string(starts_abs[i]);
171 _config_id += "_";
172 _config_id += support::cpp11::to_string(ends_abs[i]);
173 _config_id += "_";
174 _config_id += support::cpp11::to_string(final_strides[i]);
175 }
176}
177
178Status CLStridedSliceKernel::validate(const ITensorInfo *input, const ITensorInfo *output,
179 const Coordinates &starts, const Coordinates &ends, const BiStrides &strides,
180 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
181{
182 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, starts, ends, strides, begin_mask, end_mask, shrink_axis_mask));
183 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(),
184 starts, ends, strides, begin_mask, end_mask, shrink_axis_mask)
185 .first);
186
187 return Status{};
188}
189
190void CLStridedSliceKernel::run(const Window &window, cl::CommandQueue &queue)
191{
192 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
193 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
194
195 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
196 Window slice = window_collapsed.first_slice_window_4D();
197
198 do
199 {
200 unsigned int idx = 0;
201 add_4D_tensor_argument(idx, _input, slice);
202 add_4D_tensor_argument(idx, _output, slice);
203 enqueue(queue, *this, slice, lws_hint());
204 }
205 while(window_collapsed.slide_window_slice_4D(slice));
206}
207} // namespace arm_compute