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/fp32/local_response_norm_fp32.h"
20
21 namespace mindspore {
22 namespace lite {
23 namespace {
PopulateLocalResponseNormParameter(const void * prim)24 OpParameter *PopulateLocalResponseNormParameter(const void *prim) {
25 MS_CHECK_TRUE_RET(prim != nullptr, nullptr);
26 auto *primitive = static_cast<const schema::v0::Primitive *>(prim);
27 auto local_response_normalization_prim = primitive->value_as_LocalResponseNormalization();
28 if (local_response_normalization_prim == nullptr) {
29 MS_LOG(ERROR) << "local_response_normalization_prim is nullptr";
30 return nullptr;
31 }
32 auto *lrn_param = reinterpret_cast<LocalResponseNormParameter *>(malloc(sizeof(LocalResponseNormParameter)));
33 if (lrn_param == nullptr) {
34 MS_LOG(ERROR) << "malloc LocalResponseNormParameter failed.";
35 return nullptr;
36 }
37 memset(lrn_param, 0, sizeof(LocalResponseNormParameter));
38 lrn_param->op_parameter_.type_ = schema::PrimitiveType_LRN;
39 lrn_param->depth_radius_ = local_response_normalization_prim->depth_radius();
40 lrn_param->bias_ = local_response_normalization_prim->bias();
41 lrn_param->alpha_ = local_response_normalization_prim->alpha();
42 lrn_param->beta_ = local_response_normalization_prim->beta();
43 return reinterpret_cast<OpParameter *>(lrn_param);
44 }
45 } // namespace
46
47 Registry g_localResponseNormalizationV0ParameterRegistry(schema::v0::PrimitiveType_LocalResponseNormalization,
48 PopulateLocalResponseNormParameter, SCHEMA_V0);
49 Registry g_lrnV0ParameterRegistry(schema::v0::PrimitiveType_Lrn, PopulateLocalResponseNormParameter, SCHEMA_V0);
50 } // namespace lite
51 } // namespace mindspore
52