blob: 8e2ee376358138a121c3b73ade1ee860b81f7ede [file] [log] [blame]
Manuel Bottini769c6382019-08-22 13:13:48 +01001/*
2 * Copyright (c) 2019 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#ifndef __ARM_COMPUTE_NEINSTANCENORMALIZATIONLAYER_H__
25#define __ARM_COMPUTE_NEINSTANCENORMALIZATIONLAYER_H__
26
27#include "arm_compute/core/NEON/kernels/NEInstanceNormalizationLayerKernel.h"
28#include "arm_compute/runtime/IFunction.h"
29#include "arm_compute/runtime/IMemoryManager.h"
30#include "arm_compute/runtime/MemoryGroup.h"
31#include "arm_compute/runtime/NEON/functions/NEPermute.h"
32#include "arm_compute/runtime/NEON/functions/NEReductionOperation.h"
33#include "arm_compute/runtime/Tensor.h"
34
35#include <memory>
36
37namespace arm_compute
38{
39class ITensor;
40
41/** Basic function to perform a Instance normalization.
42 *
43 * This function runs the following kernels:
44 * -# @ref NEInstanceNormalizationLayerKernel
45 */
46class NEInstanceNormalizationLayer : public IFunction
47{
48public:
49 /** Constructor */
50 NEInstanceNormalizationLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
51 /** Set the input and output tensors.
52 *
53 * @param[in, out] input Source tensor. In case of @p output tensor = nullptr this tensor will store the result of the normalization.
54 * Data types supported: F16/F32. Data layout supported: NHWC, NCHW
55 * @param[out] output Destination tensor. Data types and data layouts supported: same as @p input.
56 * @param[in] gamma (Optional) The scale scalar value applied to the normalized tensor. Defaults to 1.0
57 * @param[in] beta (Optional) The offset scalar value applied to the normalized tensor. Defaults to 0.0
58 * @param[in] epsilon (Optional) Lower bound value for the normalization. Defaults to 1e-12
59 */
60 void configure(ITensor *input, ITensor *output, float gamma = 1.0f, float beta = 0.0f, float epsilon = 1e-12f);
61
62 /** Static function to check if given info will lead to a valid configuration of @ref NEInstanceNormalizationLayer.
63 *
64 * @param[in] input Source tensor info. Data types supported: F16/F32. Data layout supported: NHWC, NCHW
65 * @param[in] output Destination tensor info. Data types and data layouts supported: same as @p input.
66 * @param[in] gamma (Optional) The scale scalar value applied to the normalized tensor. Defaults to 1.0
67 * @param[in] beta (Optional) The offset scalar value applied to the normalized tensor. Defaults to 0.0
68 * @param[in] epsilon (Optional) Lower bound value for the normalization. Defaults to 1e-12
69 *
70 * @return a status
71 */
72 static Status validate(const ITensorInfo *input, const ITensorInfo *output, float gamma = 1.0f, float beta = 0.0f, float epsilon = 1e-12f);
73
74 // Inherited methods overridden:
75 void run() override;
76
77private:
78 MemoryGroup _memory_group;
79 NEInstanceNormalizationLayerKernel _normalization_kernel;
80 bool _is_nchw;
81 NEPermute _permute_input;
82 NEPermute _permute_output;
83 Tensor _permuted_input;
84 Tensor _permuted_output;
85};
86}
87#endif /* __ARM_COMPUTE_NEINSTANCENORMALIZATIONLAYER_H__ */