1 /* 2 * Copyright (c) 2017-2021 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_CLL2NORMALIZELAYER_H 25 #define ARM_COMPUTE_CLL2NORMALIZELAYER_H 26 27 #include "arm_compute/core/Types.h" 28 #include "arm_compute/runtime/CL/CLTensor.h" 29 #include "arm_compute/runtime/CL/ICLSimpleFunction.h" 30 #include "arm_compute/runtime/CL/functions/CLReductionOperation.h" 31 #include "arm_compute/runtime/IMemoryManager.h" 32 #include "arm_compute/runtime/MemoryGroup.h" 33 34 #include <cstdint> 35 #include <memory> 36 37 namespace arm_compute 38 { 39 class CLCompileContext; 40 class CLL2NormalizeLayerKernel; 41 class ICLTensor; 42 class ITensorInfo; 43 44 /** Basic function to perform a L2 normalization on a given axis. 45 * 46 * This function runs the following kernels: 47 * -# @ref CLReductionOperation 48 * -# @ref CLL2NormalizeLayerKernel 49 */ 50 class CLL2NormalizeLayer : public IFunction 51 { 52 public: 53 /** Constructor */ 54 CLL2NormalizeLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr); 55 /** Default Destructor */ 56 ~CLL2NormalizeLayer(); 57 /** Prevent instances of this class from being copied (As this class contains pointers) */ 58 CLL2NormalizeLayer(const CLL2NormalizeLayer &) = delete; 59 /** Default move constructor */ 60 CLL2NormalizeLayer(CLL2NormalizeLayer &&) = default; 61 /** Prevent instances of this class from being copied (As this class contains pointers) */ 62 CLL2NormalizeLayer &operator=(const CLL2NormalizeLayer &) = delete; 63 /** Default move assignment operator */ 64 CLL2NormalizeLayer &operator=(CLL2NormalizeLayer &&) = default; 65 66 /** Set the input and output tensors. 67 * 68 * Valid data layouts: 69 * - NHWC 70 * - NCHW 71 * 72 * Valid data type configurations: 73 * |src |dst | 74 * |:--------|:---------| 75 * |F16 |F16 | 76 * |F32 |F32 | 77 * 78 * @param[in] input Source tensor. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC. 79 * @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input. 80 * @param[in] axis Axis along which to reduce. Negative values wrap around. Maximum supported actual reduction axis : 2 81 * @param[in] epsilon (Optional) Lower bound value for the normalization. 82 */ 83 void configure(ICLTensor *input, ICLTensor *output, int axis, float epsilon = 1e-12f); 84 /** Set the input and output tensors. 85 * 86 * @param[in] compile_context The compile context to be used. 87 * @param[in] input Source tensor. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC. 88 * @param[out] output Destination tensor. Data types and data layouts supported: Same as @p input. 89 * @param[in] axis Axis along which to reduce. Negative values wrap around. Maximum supported actual reduction axis : 2 90 * @param[in] epsilon (Optional) Lower bound value for the normalization. 91 */ 92 void configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, int axis, float epsilon = 1e-12f); 93 94 /** Static function to check if given info will lead to a valid configuration of @ref CLL2NormalizeLayer. 95 * 96 * @param[in] input Source tensor info. Data types supported: F16/F32. Data layouts supported: NCHW/NHWC. 97 * @param[in] output Destination tensor info. Data types and data layouts supported: Same as @p input. 98 * @param[in] axis Axis along which to reduce. Negative values wrap around. Maximum supported actual reduction axis : 2 99 * @param[in] epsilon (Optional) Lower bound value for the normalization. 100 * 101 * @return a status 102 */ 103 static Status validate(const ITensorInfo *input, const ITensorInfo *output, int axis, float epsilon = 1e-12f); 104 105 // Inherited methods overridden: 106 void run() override; 107 108 private: 109 MemoryGroup _memory_group; 110 CLReductionOperation _reduce_func; 111 std::unique_ptr<CLL2NormalizeLayerKernel> _normalize_kernel; 112 CLTensor _sumsq; 113 }; 114 } 115 #endif /*ARM_COMPUTE_CLL2NORMALIZELAYER_H */ 116