blob: 412821b8bdf05878959844cc650861262d7052d7 [file] [log] [blame]
Manuel Bottini8529bd62018-11-21 11:53:04 +00001/*
2 * Copyright (c) 2018-2019 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/CLGatherKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#include "arm_compute/core/CL/CLValidate.h"
30#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/CL/OpenCL.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/IAccessWindow.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Window.h"
36#include "arm_compute/core/utils/misc/ShapeCalculator.h"
37
38#include <string>
39
40namespace arm_compute
41{
42namespace
43{
44inline Status validate_arguments(const ITensorInfo *input, const ITensorInfo *indices, const ITensorInfo *output, int axis)
45{
46 const uint32_t actual_axis = wrap_around(axis, static_cast<int>(input->num_dimensions()));
47 ARM_COMPUTE_RETURN_ERROR_ON(indices->num_dimensions() > 1);
48 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
49 ARM_COMPUTE_RETURN_ERROR_ON(actual_axis >= input->num_dimensions());
50 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(output);
Georgios Pinitas8f5802f2019-02-22 11:08:32 +000051 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8529bd62018-11-21 11:53:04 +000052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8, DataType::S8, DataType::QASYMM8,
53 DataType::U16, DataType::S16,
54 DataType::U32, DataType::S32, DataType::F16, DataType::F32);
55
56 if(output->total_size() != 0)
57 {
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
60 TensorShape output_shape = arm_compute::misc::shape_calculator::compute_gather_shape(input->tensor_shape(), indices->tensor_shape(), actual_axis);
61 ARM_COMPUTE_RETURN_ERROR_ON(output_shape.total_size() != output->tensor_shape().total_size());
62 }
63
Manuel Bottini7ad62572019-01-16 11:18:15 +000064 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(indices, 1, DataType::U32, DataType::S32);
Manuel Bottini8529bd62018-11-21 11:53:04 +000065
66 return Status{};
67}
68
69std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *indices, ITensorInfo *output, int axis)
70{
71 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, indices);
72 const uint32_t actual_axis = wrap_around(axis, static_cast<int>(input->num_dimensions()));
73 // Output auto initialization if not yet initialized
74 TensorShape output_shape = arm_compute::misc::shape_calculator::compute_gather_shape(input->tensor_shape(), indices->tensor_shape(), actual_axis);
75 auto_init_if_empty((*output), output_shape, 1, input->data_type());
76
77 // Create window
78 Window win = calculate_max_window(*output, Steps());
79 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
80
81 return std::make_pair(Status{}, win);
82}
83
84} // namespace
85
86CLGatherKernel::CLGatherKernel()
87 : _input(nullptr), _indices(nullptr), _output(nullptr), _axis(0)
88{
89}
90
91void CLGatherKernel::configure(const ICLTensor *input, const ICLTensor *indices, ICLTensor *output, int axis)
92{
93 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output, indices);
94 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), indices->info(), output->info(), axis));
95
96 // Configure kernel window
97 auto win_config = validate_and_configure_window(input->info(), indices->info(), output->info(), axis);
98 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
99
100 _input = input;
101 _output = output;
102 _indices = indices;
103 _axis = wrap_around(axis, static_cast<int>(input->info()->num_dimensions()));
104
105 // Set build options
106 CLBuildOptions build_opts;
107 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
108 build_opts.add_option("-DOUTPUT_DIM_Z=" + support::cpp11::to_string(output->info()->dimension(2)));
109 build_opts.add_option("-DINPUT_DIM_Z=" + support::cpp11::to_string(input->info()->dimension(2)));
110 build_opts.add_option("-DAXIS=" + support::cpp11::to_string(_axis));
111
112 // Create kernel
113 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gather", build_opts.options()));
114 ICLKernel::configure_internal(win_config.second);
115}
116
117Status CLGatherKernel::validate(const ITensorInfo *input, const ITensorInfo *indices, const ITensorInfo *output, int axis)
118{
119 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, indices, output, axis));
120 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), indices->clone().get(), output->clone().get(), axis).first);
121 return Status{};
122}
123
124void CLGatherKernel::run(const Window &window, cl::CommandQueue &queue)
125{
126 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
127 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
128
129 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
130 unsigned int idx = 0;
131 add_4D_tensor_argument(idx, _input, window_collapsed);
132 add_1D_tensor_argument(idx, _indices, window_collapsed);
133 add_4D_tensor_argument(idx, _output, window_collapsed);
134 enqueue(queue, *this, window_collapsed);
135}
136} // namespace arm_compute