blob: 4f709d561d8ee58bd1b78fceb584e4e3554c6811 [file] [log] [blame]
Michalis Spyrou04f089c2017-08-08 17:42:38 +01001/*
John Richardson62385bc2018-04-20 13:11:36 +01002 * Copyright (c) 2017-2018 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"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000027#include "arm_compute/core/CL/kernels/CLL2NormalizeLayerKernel.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010028#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 "support/ToolchainSupport.h"
34
35using namespace arm_compute;
36
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000037CLL2NormalizeLayer::CLL2NormalizeLayer(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010038 : _memory_group(std::move(memory_manager)), _reduce_func(), _normalize_kernel(), _sumsq()
Michalis Spyrou04f089c2017-08-08 17:42:38 +010039{
40}
41
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000042void CLL2NormalizeLayer::configure(ICLTensor *input, ICLTensor *output, unsigned int axis, float epsilon)
Michalis Spyrou04f089c2017-08-08 17:42:38 +010043{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010044 // Manage intermediate buffers
45 _memory_group.manage(&_sumsq);
46
Michalis Spyrou04f089c2017-08-08 17:42:38 +010047 // Configure kernels
48 _reduce_func.configure(input, &_sumsq, axis, ReductionOperation::SUM_SQUARE);
49 _normalize_kernel.configure(input, &_sumsq, output, axis, epsilon);
50
51 // Allocate intermediate tensor
52 _sumsq.allocator()->allocate();
53}
54
John Richardson62385bc2018-04-20 13:11:36 +010055Status CLL2NormalizeLayer::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int axis, float epsilon)
56{
57 TensorShape shape(input->tensor_shape());
58
59 // Create intermediate tensor info
60 TensorInfo sum_sq;
61 sum_sq.set_data_type(input->data_type());
62 sum_sq.set_tensor_shape(shape);
63
64 ARM_COMPUTE_RETURN_ON_ERROR(CLReductionOperation::validate(input, &sum_sq, axis, ReductionOperation::SUM_SQUARE));
65
Georgios Pinitas2e8a2dc2018-11-09 17:59:00 +000066 // Reduce shape on axis
67 shape.set(axis, 1);
John Richardson62385bc2018-04-20 13:11:36 +010068 sum_sq.set_tensor_shape(shape);
69
70 ARM_COMPUTE_RETURN_ON_ERROR(CLL2NormalizeLayerKernel::validate(input, &sum_sq, output, axis, epsilon));
71
72 return Status{};
73}
74
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000075void CLL2NormalizeLayer::run()
Michalis Spyrou04f089c2017-08-08 17:42:38 +010076{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010077 _memory_group.acquire();
78
Michalis Spyrou04f089c2017-08-08 17:42:38 +010079 _reduce_func.run();
80 CLScheduler::get().enqueue(_normalize_kernel, true);
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010081
82 _memory_group.release();
Michalis Spyrou04f089c2017-08-08 17:42:38 +010083}