1 /** 2 * Copyright 2020-2021 Huawei Technologies Co., Ltd 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef MINDSPORE_CORE_OPS_L2_NORMALIZE_FUSION_H_ 18 #define MINDSPORE_CORE_OPS_L2_NORMALIZE_FUSION_H_ 19 #include <vector> 20 21 #include "ops/l2_normalize.h" 22 #include "ops/op_utils.h" 23 #include "utils/check_convert_utils.h" 24 25 namespace mindspore { 26 namespace ops { 27 constexpr auto kNameL2NormalizeFusion = "L2NormalizeFusion"; 28 /// \brief L2NormalizeFusion defined L2Normalize operator prototype of lite. 29 class MS_CORE_API L2NormalizeFusion : public L2Normalize { 30 public: 31 /// \brief Constructor. L2NormalizeFusion()32 L2NormalizeFusion() : L2Normalize(kNameL2NormalizeFusion) {} 33 34 /// \brief Destructor. 35 ~L2NormalizeFusion() = default; 36 37 MS_DECLARE_PARENT(L2NormalizeFusion, L2Normalize); 38 39 /// \brief Method to init the op's attributes. 40 /// 41 /// \param[in] axis Define a axis that the normalization is done along with. 42 /// \param[in] epsilon Define a value added to the denominator for numerical stability. 43 /// \param[in] activation_type Define the activation type. 44 void Init(const std::vector<int64_t> &axis, const float epsilon = 1e-4, 45 const ActivationType &activation_type = NO_ACTIVATION); 46 47 /// \brief Method to set activation type. 48 /// 49 /// \param[in] activation_type Define the activation type. 50 void set_activation_type(const ActivationType &activation_type); 51 52 /// \brief Method to get activation type. 53 /// 54 /// \return activation type. 55 ActivationType get_activation_type() const; 56 }; 57 } // namespace ops 58 } // namespace mindspore 59 60 #endif // MINDSPORE_CORE_OPS_L2_NORMALIZE_FUSION_H_ 61