blob: d02afb4e9094c5a03ffde6f8fc42e4722e816145 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
2 * Copyright (c) 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/runtime/CL/functions/CLReductionOperation.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/CL/kernels/CLReductionOperationKernel.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/PixelValue.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/runtime/CL/CLScheduler.h"
33#include "arm_compute/runtime/Tensor.h"
34#include "support/ToolchainSupport.h"
35
36using namespace arm_compute;
37
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010038CLReductionOperation::CLReductionOperation(std::shared_ptr<IMemoryManager> memory_manager)
39 : _memory_group(std::move(memory_manager)), _sums_vector(), _reduction_kernels_vector(), _border_handlers_vector(), _num_of_stages()
Michalis Spyrou04f089c2017-08-08 17:42:38 +010040{
41}
42
43void CLReductionOperation::configure(ICLTensor *input, ICLTensor *output, unsigned int axis, ReductionOperation op)
44{
45 // Calculate number of WGs. 16 elements per thread, 8 threads per WG
46 unsigned int num_of_wg = ceil(input->info()->dimension(0) / 128.f);
47
48 // Calculate number of stages. First stage performs op and the rest reduction sum
49 // depending on the size of the input. Last stage should have only 1 WG.
50 _num_of_stages = num_of_wg / 128 + 2;
51
Georgios Pinitasaec513c2017-09-15 19:36:30 +010052 // Create temporary tensors
53 _sums_vector = arm_compute::support::cpp14::make_unique<CLTensor[]>(_num_of_stages - 1);
54
Michalis Spyrou04f089c2017-08-08 17:42:38 +010055 // Configure reduction operation kernels
56 _reduction_kernels_vector = arm_compute::support::cpp14::make_unique<CLReductionOperationKernel[]>(_num_of_stages);
57 _border_handlers_vector = arm_compute::support::cpp14::make_unique<CLFillBorderKernel[]>(_num_of_stages);
58
59 TensorShape shape{ input->info()->tensor_shape() };
60 for(unsigned int i = 0; i < _num_of_stages - 1; i++)
61 {
62 shape.set(0, ceil(shape.x() / 128.f));
Georgios Pinitasaec513c2017-09-15 19:36:30 +010063 _sums_vector[i].allocator()->init(TensorInfo(shape, input->info()->num_channels(), input->info()->data_type(), input->info()->fixed_point_position()));
Michalis Spyrou04f089c2017-08-08 17:42:38 +010064 }
65
66 // Apply ReductionOperation only on first kernel
Georgios Pinitasaec513c2017-09-15 19:36:30 +010067 _memory_group.manage(_sums_vector.get());
68 _reduction_kernels_vector[0].configure(input, _sums_vector.get(), axis, op);
Michalis Spyrou04f089c2017-08-08 17:42:38 +010069 _border_handlers_vector[0].configure(input, _reduction_kernels_vector[0].border_size(), BorderMode::CONSTANT, PixelValue(0));
Georgios Pinitasaec513c2017-09-15 19:36:30 +010070
71 // Apply ReductionOperation on intermediate stages
72 for(unsigned int i = 1; i < _num_of_stages - 1; ++i)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010073 {
Georgios Pinitasaec513c2017-09-15 19:36:30 +010074 _memory_group.manage(_sums_vector.get() + i);
75 _reduction_kernels_vector[i].configure(_sums_vector.get() + i - 1, _sums_vector.get() + i, axis, ReductionOperation::SUM);
76 _border_handlers_vector[i].configure(_sums_vector.get() + i - 1, _reduction_kernels_vector[i].border_size(), BorderMode::CONSTANT, PixelValue(0));
77 _sums_vector[i - 1].allocator()->allocate();
Michalis Spyrou04f089c2017-08-08 17:42:38 +010078 }
Georgios Pinitasaec513c2017-09-15 19:36:30 +010079
80 // Apply ReductionOperation on the last stage
81 const unsigned int last_stage = _num_of_stages - 1;
82 _reduction_kernels_vector[last_stage].configure(_sums_vector.get() + last_stage - 1, output, axis, ReductionOperation::SUM);
83 _border_handlers_vector[last_stage].configure(_sums_vector.get() + last_stage - 1, _reduction_kernels_vector[last_stage].border_size(), BorderMode::CONSTANT, PixelValue(0));
84 _sums_vector[last_stage - 1].allocator()->allocate();
Michalis Spyrou04f089c2017-08-08 17:42:38 +010085}
86
87void CLReductionOperation::run()
88{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010089 _memory_group.acquire();
90
Michalis Spyrou04f089c2017-08-08 17:42:38 +010091 for(unsigned int i = 0; i < _num_of_stages; ++i)
92 {
93 CLScheduler::get().enqueue(_border_handlers_vector[i], false);
94 CLScheduler::get().enqueue(_reduction_kernels_vector[i], false);
95 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010096
97 _memory_group.release();
Michalis Spyrou04f089c2017-08-08 17:42:38 +010098}