blob: 5c9ab94ce55d8dea426a764aa14848cfcd2e5d23 [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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CLL2NORMALIZELAYERKERNEL_H
25#define ARM_COMPUTE_CLL2NORMALIZELAYERKERNEL_H
Michalis Spyrou04f089c2017-08-08 17:42:38 +010026
Michalis Spyrou04f089c2017-08-08 17:42:38 +010027#include "arm_compute/core/Types.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010029#include "src/core/CL/ICLKernel.h"
Michalis Spyrou04f089c2017-08-08 17:42:38 +010030
31namespace arm_compute
32{
33class ICLTensor;
34
John Richardson62385bc2018-04-20 13:11:36 +010035/** Interface for performing a L2 normalize on a given axis given the square sum of it in this axis */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000036class CLL2NormalizeLayerKernel : public ICLKernel
Michalis Spyrou04f089c2017-08-08 17:42:38 +010037{
38public:
39 /** Default constructor */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000040 CLL2NormalizeLayerKernel();
Michalis Spyrou04f089c2017-08-08 17:42:38 +010041 /** Prevent instances of this class from being copied (As this class contains pointers) */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000042 CLL2NormalizeLayerKernel(const CLL2NormalizeLayerKernel &) = delete;
Michalis Spyrou04f089c2017-08-08 17:42:38 +010043 /** Prevent instances of this class from being copied (As this class contains pointers) */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000044 CLL2NormalizeLayerKernel &operator=(const CLL2NormalizeLayerKernel &) = delete;
Michalis Spyrou04f089c2017-08-08 17:42:38 +010045 /** Allow instances of this class to be moved */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000046 CLL2NormalizeLayerKernel(CLL2NormalizeLayerKernel &&) = default;
Michalis Spyrou04f089c2017-08-08 17:42:38 +010047 /** Allow instances of this class to be moved */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000048 CLL2NormalizeLayerKernel &operator=(CLL2NormalizeLayerKernel &&) = default;
Michalis Spyrou04f089c2017-08-08 17:42:38 +010049 /** Default destructor */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000050 ~CLL2NormalizeLayerKernel() = default;
Michalis Spyrou04f089c2017-08-08 17:42:38 +010051
52 /** Set the input and output tensors.
53 *
Michalis Spyrou5538d342018-11-14 08:10:13 +000054 * @param[in] input Source tensor. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC.
Michalis Spyrou04f089c2017-08-08 17:42:38 +010055 * @param[in] sum Sum values tensor. Data types supported: same as @p input.
John Richardson62385bc2018-04-20 13:11:36 +010056 * Sum will have the same number of dimensions as input.
57 * @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input.
58 * Output will have the same number of dimensions as input.
Manuel Bottini4b5c5882019-05-14 10:38:30 +010059 * @param[in] axis Axis along which to reduce. Negative values wrap around. Maximum supported actual reduction axis : 2
Michalis Spyrou04f089c2017-08-08 17:42:38 +010060 * @param[in] epsilon Lower bound value for the normalization.
61 */
Manuel Bottini4b5c5882019-05-14 10:38:30 +010062 void configure(const ICLTensor *input, const ICLTensor *sum, ICLTensor *output, int axis, float epsilon);
Manuel Bottini4c6bd512020-04-08 10:15:51 +010063 /** Set the input and output tensors.
64 *
65 * @param[in] compile_context The compile context to be used.
66 * @param[in] input Source tensor. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC.
67 * @param[in] sum Sum values tensor. Data types supported: same as @p input.
68 * Sum will have the same number of dimensions as input.
69 * @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input.
70 * Output will have the same number of dimensions as input.
71 * @param[in] axis Axis along which to reduce. Negative values wrap around. Maximum supported actual reduction axis : 2
72 * @param[in] epsilon Lower bound value for the normalization.
73 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010074 void configure(const CLCompileContext &compile_context,
75 const ICLTensor *input,
76 const ICLTensor *sum,
77 ICLTensor *output,
78 int axis,
79 float epsilon);
Michalis Spyrou04f089c2017-08-08 17:42:38 +010080
John Richardson62385bc2018-04-20 13:11:36 +010081 /** Static function to check if given info will lead to a valid configuration of @ref CLL2NormalizeLayerKernel.
82 *
Michalis Spyrou5538d342018-11-14 08:10:13 +000083 * @param[in] input Source tensor info. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC.
John Richardson62385bc2018-04-20 13:11:36 +010084 * @param[in] sum Sum values tensor info. Data types supported: same as @p input.
85 * Sum will have the same number of dimensions as input.
86 * @param[in] output Destination tensor info. Data types and data layouts supported: Same as @p input.
87 * Output will have the same number of dimensions as input.
Manuel Bottini4b5c5882019-05-14 10:38:30 +010088 * @param[in] axis Axis along which to reduce. Negative values wrap around. Maximum supported actual reduction axis : 2
John Richardson62385bc2018-04-20 13:11:36 +010089 * @param[in] epsilon Lower bound value for the normalization.
90 *
91 * @return a status
92 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010093 static Status
94 validate(const ITensorInfo *input, const ITensorInfo *sum, const ITensorInfo *output, int axis, float epsilon);
John Richardson62385bc2018-04-20 13:11:36 +010095
Michalis Spyrou04f089c2017-08-08 17:42:38 +010096 // Inherited methods overridden:
97 void run(const Window &window, cl::CommandQueue &queue) override;
98
99private:
100 const ICLTensor *_input;
101 const ICLTensor *_sum;
102 ICLTensor *_output;
Manuel Bottini4b5c5882019-05-14 10:38:30 +0100103 unsigned int _actual_axis;
Michalis Spyrou04f089c2017-08-08 17:42:38 +0100104 float _epsilon;
105};
Gian Marco Iodicef670a0a2017-09-18 12:20:45 +0100106} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000107#endif /*ARM_COMPUTE_CLL2NORMALIZELAYERKERNEL_H */