blob: 05912743b341e79d2e4c845e3a7b69b7c98cf3ee [file] [log] [blame]
Michele Di Giorgio56dd7262017-07-27 09:53:49 +01001/*
Michalis Spyroubcfd09a2019-05-01 13:03:59 +01002 * Copyright (c) 2017-2019 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"
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010034
35#include <climits>
36
37using namespace arm_compute;
Alex Gilday60954c62018-03-05 16:22:48 +000038using namespace arm_compute::misc::shape_calculator;
39
40namespace
41{
42Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output)
43{
44 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
45 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
46 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() < 3);
47
48 if(output->tensor_shape().total_size() > 0)
49 {
50 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
51
52 TensorShape output_shape = compute_min_max_shape(input);
53
54 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
55 }
56
57 return Status{};
58}
59
60std::tuple<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
61{
62 TensorShape output_shape = compute_min_max_shape(input);
63
64 // Output auto initialization if not yet initialized
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010065 auto_init_if_empty(*output, output_shape, 1, input->data_type());
Alex Gilday60954c62018-03-05 16:22:48 +000066
67 const unsigned int num_elems_processed_per_iteration = 1;
68
69 // Configure kernel window
70 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
71 AccessWindowHorizontal input_access(input, 0, num_elems_processed_per_iteration);
72 AccessWindowStatic output_access(output, 0, 0, 2, output->dimension(1));
73
74 bool window_changed = update_window_and_padding(win, input_access, output_access);
75
76 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->tensor_shape()));
77
78 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
79 return std::make_tuple(err, win);
80}
81} // namespace
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010082
83CLMinMaxLayerKernel::CLMinMaxLayerKernel()
84 : _input(nullptr), _output(nullptr)
85{
86}
87
88void CLMinMaxLayerKernel::configure(const ICLTensor *input, ICLTensor *output)
89{
Alex Gilday60954c62018-03-05 16:22:48 +000090 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
91 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info()));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010092
93 _input = input;
94 _output = output;
95
Michele Di Giorgio56dd7262017-07-27 09:53:49 +010096 std::set<std::string> build_opts;
97 build_opts.emplace("-DWIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
98 build_opts.emplace("-DHEIGHT=" + support::cpp11::to_string(input->info()->dimension(1)));
99 build_opts.emplace("-DDEPTH=" + support::cpp11::to_string(input->info()->dimension(2)));
100
101 // Create kernel
102 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("minmax_layer", build_opts));
103
Alex Gilday60954c62018-03-05 16:22:48 +0000104 auto win_config = validate_and_configure_window(input->info(), output->info());
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100105
Alex Gilday60954c62018-03-05 16:22:48 +0000106 ARM_COMPUTE_ERROR_THROW_ON(std::get<0>(win_config));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100107
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100108 ICLKernel::configure_internal(std::get<1>(win_config));
Alex Gilday60954c62018-03-05 16:22:48 +0000109}
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100110
Alex Gilday60954c62018-03-05 16:22:48 +0000111Status CLMinMaxLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output)
112{
113 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output));
114 ARM_COMPUTE_RETURN_ON_ERROR(std::get<0>(validate_and_configure_window(input->clone().get(), output->clone().get())));
115
116 return Status{};
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100117}
118
119void CLMinMaxLayerKernel::reset(cl::CommandQueue &queue)
120{
121 _output->map(queue, true);
122
123 Window window_output;
124 window_output.use_tensor_dimensions(_output->info()->tensor_shape());
125 window_output.set(Window::DimX, Window::Dimension(0, 1, 1));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100126
127 Iterator output(_output, window_output);
128
129 // Reset output
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100130 execute_window_loop(window_output, [&](const Coordinates &)
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100131 {
132 auto *ptr = reinterpret_cast<float *>(output.ptr());
133 ptr[0] = std::numeric_limits<float>::max();
134 ptr[1] = std::numeric_limits<float>::min();
135 },
136 output);
137
138 _output->unmap(queue);
139}
140
141void CLMinMaxLayerKernel::run(const Window &window, cl::CommandQueue &queue)
142{
143 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
144 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
145
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100146 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), 3);
147 Window slice = window_collapsed.first_slice_window_3D();
148 slice.set(Window::DimX, Window::Dimension(0, 1, 1));
149 slice.set(Window::DimY, Window::Dimension(0, 1, 1));
150 slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
151
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100152 do
153 {
Michalis Spyrou995f5522018-01-29 13:43:35 +0000154 Window output_slice = slice.shift_dimensions(2);
155
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100156 unsigned int idx = 0;
157 // Set inputs
158 add_3D_tensor_argument(idx, _input, slice);
159 add_1D_tensor_argument(idx, _output, output_slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100160 enqueue(queue, *this, slice, lws_hint());
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100161 }
Michalis Spyrou995f5522018-01-29 13:43:35 +0000162 while(window_collapsed.slide_window_slice_3D(slice));
Michele Di Giorgio56dd7262017-07-27 09:53:49 +0100163}