• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright 2022 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/common/ops/populate/populate_register.h"
18 #include "nnacl/random_parameter.h"
19 using mindspore::schema::PrimitiveType_RandomNormal;
20 
21 namespace mindspore {
22 namespace lite {
23 namespace {
PopulateRandomNormalParameter(const void * prim)24 OpParameter *PopulateRandomNormalParameter(const void *prim) {
25   auto *primitive = static_cast<const schema::Primitive *>(prim);
26   MS_ASSERT(primitive != nullptr);
27   auto value = primitive->value_as_RandomNormal();
28   if (value == nullptr) {
29     MS_LOG(ERROR) << "value is nullptr";
30     return nullptr;
31   }
32 
33   auto *param = reinterpret_cast<RandomNormalParam *>(malloc(sizeof(RandomNormalParam)));
34   if (param == nullptr) {
35     MS_LOG(ERROR) << "malloc RandomParam failed.";
36     return nullptr;
37   }
38   memset(param, 0, sizeof(RandomNormalParam));
39 
40   param->op_parameter_.type_ = primitive->value_type();
41   param->seed_ = value->seed();
42   param->mean_ = value->mean();
43   param->scale_ = value->scale();
44   return reinterpret_cast<OpParameter *>(param);
45 }
46 }  // namespace
47 
48 REG_POPULATE(PrimitiveType_RandomNormal, PopulateRandomNormalParameter, SCHEMA_CUR);
49 }  // namespace lite
50 }  // namespace mindspore
51