blob: 8c360aaa9ebc9d8c148de4a16dbdcbb1d0a1f7e9 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Michalis Spyrou04f089c2017-08-08 17:42:38 +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 */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000024#include "arm_compute/runtime/CL/functions/CLL2NormalizeLayer.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010025
26#include "arm_compute/core/CL/ICLTensor.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010027#include "arm_compute/core/Error.h"
28#include "arm_compute/core/PixelValue.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Validate.h"
31#include "arm_compute/runtime/CL/CLScheduler.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010032#include "src/core/CL/kernels/CLFillBorderKernel.h"
33#include "src/core/CL/kernels/CLL2NormalizeLayerKernel.h"
34#include "src/core/CL/kernels/CLReductionOperationKernel.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010035
Michalis Spyrou2897e612018-11-20 18:38:29 +000036namespace arm_compute
37{
Manuel Bottini4b5c5882019-05-14 10:38:30 +010038namespace
39{
40constexpr int max_input_tensor_dim = 3;
41} // namespace
Georgios Pinitasb785dd42019-09-19 12:09:32 +010042
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000043CLL2NormalizeLayer::CLL2NormalizeLayer(std::shared_ptr<IMemoryManager> memory_manager)
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010044 : _memory_group(std::move(memory_manager)),
45 _reduce_func(),
Georgios Pinitas40f51a62020-11-21 03:04:18 +000046 _normalize_kernel(std::make_unique<CLL2NormalizeLayerKernel>()),
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010047 _sumsq()
Michalis Spyrou04f089c2017-08-08 17:42:38 +010048{
49}
50
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010051CLL2NormalizeLayer::~CLL2NormalizeLayer() = default;
52
Manuel Bottini4b5c5882019-05-14 10:38:30 +010053void CLL2NormalizeLayer::configure(ICLTensor *input, ICLTensor *output, int axis, float epsilon)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010054{
Manuel Bottini2b84be52020-04-08 10:15:51 +010055 configure(CLKernelLibrary::get().get_compile_context(), input, output, axis, epsilon);
56}
57
58void CLL2NormalizeLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, int axis, float epsilon)
59{
Georgios Pinitasb785dd42019-09-19 12:09:32 +010060 // Reset auxiliary tensor
61 _sumsq.allocator()->init(TensorInfo());
62
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010063 // Manage intermediate buffers
64 _memory_group.manage(&_sumsq);
65
Michalis Spyrou04f089c2017-08-08 17:42:38 +010066 // Configure kernels
Manuel Bottini4b5c5882019-05-14 10:38:30 +010067 const uint32_t actual_axis = wrap_around(axis, max_input_tensor_dim);
Manuel Bottini2b84be52020-04-08 10:15:51 +010068 _reduce_func.configure(compile_context, input, &_sumsq, actual_axis, ReductionOperation::SUM_SQUARE);
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010069 _normalize_kernel->configure(compile_context, input, &_sumsq, output, axis, epsilon);
Michalis Spyrou04f089c2017-08-08 17:42:38 +010070
71 // Allocate intermediate tensor
72 _sumsq.allocator()->allocate();
73}
74
Manuel Bottini4b5c5882019-05-14 10:38:30 +010075Status CLL2NormalizeLayer::validate(const ITensorInfo *input, const ITensorInfo *output, int axis, float epsilon)
John Richardson62385bc2018-04-20 13:11:36 +010076{
77 TensorShape shape(input->tensor_shape());
78
79 // Create intermediate tensor info
80 TensorInfo sum_sq;
81 sum_sq.set_data_type(input->data_type());
82 sum_sq.set_tensor_shape(shape);
83
Manuel Bottini4b5c5882019-05-14 10:38:30 +010084 const uint32_t actual_axis = wrap_around(axis, max_input_tensor_dim);
85 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperation::validate(input, &sum_sq, actual_axis, ReductionOperation::SUM_SQUARE));
John Richardson62385bc2018-04-20 13:11:36 +010086
Georgios Pinitas2e8a2dc2018-11-09 17:59:00 +000087 // Reduce shape on axis
Manuel Bottini4b5c5882019-05-14 10:38:30 +010088 shape.set(actual_axis, 1);
John Richardson62385bc2018-04-20 13:11:36 +010089 sum_sq.set_tensor_shape(shape);
90
91 ARM_COMPUTE_RETURN_ON_ERROR(CLL2NormalizeLayerKernel::validate(input, &sum_sq, output, axis, epsilon));
92
93 return Status{};
94}
95
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000096void CLL2NormalizeLayer::run()
Michalis Spyrou04f089c2017-08-08 17:42:38 +010097{
Georgios Pinitasda953f22019-04-02 17:27:03 +010098 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010099
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100100 _reduce_func.run();
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100101 CLScheduler::get().enqueue(*_normalize_kernel, true);
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100102}
Michalis Spyrou2897e612018-11-20 18:38:29 +0000103} // namespace arm_compute