1 /** 2 * Copyright 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 #include "schema/model_v0_generated.h" 18 #include "src/ops/populate/populate_register.h" 19 #include "nnacl/batchnorm_parameter.h" 20 21 namespace mindspore { 22 namespace lite { 23 namespace { PopulateBatchNormParameter(const void * prim)24OpParameter *PopulateBatchNormParameter(const void *prim) { 25 auto *primitive = static_cast<const schema::v0::Primitive *>(prim); 26 MS_ASSERT(primitive != nullptr); 27 auto batch_norm_prim = primitive->value_as_BatchNorm(); 28 if (batch_norm_prim == nullptr) { 29 MS_LOG(ERROR) << "batch_norm_prim is nullptr"; 30 return nullptr; 31 } 32 auto *batch_norm_param = reinterpret_cast<BatchNormParameter *>(malloc(sizeof(BatchNormParameter))); 33 if (batch_norm_param == nullptr) { 34 MS_LOG(ERROR) << "malloc BatchNormParameter failed."; 35 return nullptr; 36 } 37 memset(batch_norm_param, 0, sizeof(BatchNormParameter)); 38 batch_norm_param->op_parameter_.type_ = schema::PrimitiveType_BatchNorm; 39 batch_norm_param->epsilon_ = batch_norm_prim->epsilon(); 40 batch_norm_param->fused_ = false; 41 return reinterpret_cast<OpParameter *>(batch_norm_param); 42 } 43 } // namespace 44 45 Registry g_batchNormV0ParameterRegistry(schema::v0::PrimitiveType_BatchNorm, PopulateBatchNormParameter, SCHEMA_V0); 46 } // namespace lite 47 } // namespace mindspore 48