blob: 622270acf5dc2e578e07b88e37c69068f87ab0d6 [file] [log] [blame]
Michele Di Giorgio56dd7262017-07-27 09:53:49 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2017-2020 ARM Limited.
Michele Di Giorgio56dd7262017-07-27 09:53:49 +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/CLMinMaxLayerKernel.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/ICLTensor.h"
30#include "arm_compute/core/Helpers.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/core/Window.h"
Alex Gilday60954c62018-03-05 16:22:48 +000033#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000034#include "support/StringSupport.h"
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010035
36#include <climits>
37
38using namespace arm_compute;
Alex Gilday60954c62018-03-05 16:22:48 +000039using namespace arm_compute::misc::shape_calculator;
40
41namespace
42{
43Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
44{
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
47 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() < 3);
48
49 if(output->tensor_shape().total_size() > 0)
50 {
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
52
53 TensorShape output_shape = compute_min_max_shape(input);
54
55 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
56 }
57
58 return Status{};
59}
60
61std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
62{
63 TensorShape output_shape = compute_min_max_shape(input);
64
65 // Output auto initialization if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010066 auto_init_if_empty(*output, output_shape, 1, input->data_type());
Alex Gilday60954c62018-03-05 16:22:48 +000067
68 const unsigned int num_elems_processed_per_iteration = 1;
69
70 // Configure kernel window
71 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
72 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
73 AccessWindowStatic output_access(output, 0, 0, 2, output->dimension(1));
74
75 bool window_changed = update_window_and_padding(win, input_access, output_access);
76
77 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
78
79 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
80 return std::make_tuple(err, win);
81}
82} // namespace
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010083
84CLMinMaxLayerKernel::CLMinMaxLayerKernel()
85 : _input(nullptr), _output(nullptr)
86{
87}
88
89void CLMinMaxLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
90{
Alex Gilday60954c62018-03-05 16:22:48 +000091 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
92 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010093
94 _input = input;
95 _output = output;
96
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010097 std::set<std::string> build_opts;
98 build_opts.emplace("-DWIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
99 build_opts.emplace("-DHEIGHT=" + support::cpp11::to_string(input->info()->dimension(1)));
100 build_opts.emplace("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
101
102 // Create kernel
103 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("minmax_layer", build_opts));
104
Alex Gilday60954c62018-03-05 16:22:48 +0000105 auto win_config = validate_and_configure_window(input->info(), output->info());
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100106
Alex Gilday60954c62018-03-05 16:22:48 +0000107 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100108
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100109 ICLKernel::configure_internal(std::get<1>(win_config));
Alex Gilday60954c62018-03-05 16:22:48 +0000110}
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100111
Alex Gilday60954c62018-03-05 16:22:48 +0000112Status CLMinMaxLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
113{
114 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
115 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get())));
116
117 return Status{};
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100118}
119
120void CLMinMaxLayerKernel::reset(cl::CommandQueue &queue)
121{
122 _output->map(queue, true);
123
124 Window window_output;
125 window_output.use_tensor_dimensions(_output->info()->tensor_shape());
126 window_output.set(Window::DimX, Window::Dimension(0, 1, 1));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100127
128 Iterator output(_output, window_output);
129
130 // Reset output
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100131 execute_window_loop(window_output, [&](const Coordinates &)
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100132 {
133 auto *ptr = reinterpret_cast<float *>(output.ptr());
134 ptr[0] = std::numeric_limits<float>::max();
135 ptr[1] = std::numeric_limits<float>::min();
136 },
137 output);
138
139 _output->unmap(queue);
140}
141
142void CLMinMaxLayerKernel::run(const Window &window, cl::CommandQueue &queue)
143{
144 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
145 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
146
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100147 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), 3);
148 Window slice = window_collapsed.first_slice_window_3D();
149 slice.set(Window::DimX, Window::Dimension(0, 1, 1));
150 slice.set(Window::DimY, Window::Dimension(0, 1, 1));
151 slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
152
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100153 do
154 {
Michalis Spyrou995f5522018-01-29 13:43:35 +0000155 Window output_slice = slice.shift_dimensions(2);
156
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100157 unsigned int idx = 0;
158 // Set inputs
159 add_3D_tensor_argument(idx, _input, slice);
160 add_1D_tensor_argument(idx, _output, output_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100161 enqueue(queue, *this, slice, lws_hint());
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100162 }
Michalis Spyrou995f5522018-01-29 13:43:35 +0000163 while(window_collapsed.slide_window_slice_3D(slice));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100164}