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 "src/ops/populate/populate_register.h" 18 #include "nnacl/random_parameter.h" 19 using mindspore::schema::PrimitiveType_RandomStandardNormal; 20 21 namespace mindspore { 22 namespace lite { 23 namespace { PopulateRandomStandardNormalParameter(const void * prim)24OpParameter *PopulateRandomStandardNormalParameter(const void *prim) { 25 auto *primitive = static_cast<const schema::Primitive *>(prim); 26 MS_ASSERT(primitive != nullptr); 27 auto value = primitive->value_as_RandomStandardNormal(); 28 if (value == nullptr) { 29 MS_LOG(ERROR) << "value is nullptr"; 30 return nullptr; 31 } 32 33 auto *param = reinterpret_cast<RandomParam *>(malloc(sizeof(RandomParam))); 34 if (param == nullptr) { 35 MS_LOG(ERROR) << "malloc RandomParam failed."; 36 return nullptr; 37 } 38 memset(param, 0, sizeof(RandomParam)); 39 40 param->op_parameter_.type_ = primitive->value_type(); 41 param->seed_ = value->seed(); 42 param->seed2_ = value->seed2(); 43 return reinterpret_cast<OpParameter *>(param); 44 } 45 } // namespace 46 47 REG_POPULATE(PrimitiveType_RandomStandardNormal, PopulateRandomStandardNormalParameter, SCHEMA_CUR); 48 } // namespace lite 49 } // namespace mindspore 50