blob: fc8764dbfe013c25c1a43df39b35fcb97ede888d [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 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/CLMeanStdDevKernel.h"
25
26#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathan76c85642018-05-25 13:53:02 +010027#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Types.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/core/Window.h"
35
36#include <cmath>
37#include <set>
38#include <string>
39
40using namespace arm_compute;
41
42CLMeanStdDevKernel::CLMeanStdDevKernel()
Giorgio Arenaa2611812017-07-21 10:08:48 +010043 : _input(nullptr), _mean(nullptr), _stddev(nullptr), _global_sum(nullptr), _global_sum_squared(nullptr), _border_size(0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044{
45}
46
Giorgio Arenaa2611812017-07-21 10:08:48 +010047BorderSize CLMeanStdDevKernel::border_size() const
48{
49 return _border_size;
50}
51
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052void CLMeanStdDevKernel::configure(const ICLImage *input, float *mean, cl::Buffer *global_sum, float *stddev, cl::Buffer *global_sum_squared)
53{
Vidhya Sudhan Loganathan76c85642018-05-25 13:53:02 +010054 ARM_COMPUTE_ERROR_ON_INT64_BASE_ATOMICS_UNSUPPORTED();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input);
56 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
57 ARM_COMPUTE_ERROR_ON(nullptr == mean);
58 ARM_COMPUTE_ERROR_ON(nullptr == global_sum);
59 ARM_COMPUTE_ERROR_ON(stddev && nullptr == global_sum_squared);
60
61 _input = input;
62 _mean = mean;
63 _stddev = stddev;
64 _global_sum = global_sum;
65 _global_sum_squared = global_sum_squared;
66
67 // Create kernel
68 std::set<std::string> build_opts;
69
70 if(_stddev != nullptr)
71 {
72 build_opts.insert("-DSTDDEV");
73 }
74
75 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("mean_stddev_accumulate", build_opts));
76
77 // Set fixed arguments
78 unsigned int idx = num_arguments_per_2D_tensor(); //Skip the input parameters
79
80 _kernel.setArg(idx++, static_cast<cl_uint>(input->info()->dimension(1)));
81 _kernel.setArg(idx++, *_global_sum);
82
83 if(_stddev != nullptr)
84 {
85 _kernel.setArg(idx++, *_global_sum_squared);
86 }
87
88 // Configure kernel window
89 constexpr unsigned int num_elems_processed_per_iteration_x = 8;
90 const unsigned int num_elems_processed_per_iteration_y = input->info()->dimension(1);
91
Giorgio Arenafc2817d2017-06-27 17:26:37 +010092 _border_size = BorderSize(ceil_to_multiple(input->info()->dimension(0), num_elems_processed_per_iteration_x) - input->info()->dimension(0));
Giorgio Arenaa2611812017-07-21 10:08:48 +010093
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
95 AccessWindowRectangle input_access(input->info(), 0, 0, num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y);
96 update_window_and_padding(win, input_access);
97
98 ICLKernel::configure(win);
99}
100
101void CLMeanStdDevKernel::run(const Window &window, cl::CommandQueue &queue)
102{
103 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
104 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
105
106 // Clear sums
107 static const cl_ulong zero = 0;
108 queue.enqueueWriteBuffer(*_global_sum, CL_FALSE, 0, sizeof(cl_ulong), &zero);
109
110 if(_stddev != nullptr)
111 {
112 queue.enqueueWriteBuffer(*_global_sum_squared, CL_FALSE, 0, sizeof(cl_ulong), &zero);
113 }
114
115 Window slice = window.first_slice_window_2D();
116
117 do
118 {
119 unsigned int idx = 0;
120 add_2D_tensor_argument(idx, _input, slice);
121 // Set slice step equal to height to force gws[1] to 1,
122 // as each thread calculates the sum across all rows and columns equal to the number of elements processed by each work-item
123 slice.set_dimension_step(Window::DimY, _input->info()->dimension(1));
124 enqueue(queue, *this, slice);
125 }
126 while(window.slide_window_slice_2D(slice));
127
128 // Calculate mean and stddev
129 cl_ulong global_sum = 0;
130 cl_ulong global_sum_squared = 0;
131 const float num_pixels = _input->info()->dimension(0) * _input->info()->dimension(1);
132
133 queue.enqueueReadBuffer(*_global_sum, CL_TRUE, 0, sizeof(cl_ulong), static_cast<void *>(&global_sum));
134 const float mean = global_sum / num_pixels;
135 *_mean = mean;
136
137 if(_stddev != nullptr)
138 {
139 queue.enqueueReadBuffer(*_global_sum_squared, CL_TRUE, 0, sizeof(cl_ulong), static_cast<void *>(&global_sum_squared));
140 *_stddev = std::sqrt((global_sum_squared / num_pixels) - (mean * mean));
141 }
142}