Lines Matching full:param
110 MS_LOG(ERROR) << "Micro param invalid, dynamic symbol must have value.";
144 @@ -455,10 +455,12 @@ int ConverterImpl::InitConfigParam(const std::shared_ptr<ConverterPara> ¶m,
145 MS_LOG(ERROR) << "Parse mixed bit weight quant param failed.";
148 - ret = lite::ThirdPartyParamParser::Parse(config_parser.GetThirdPartyModelString(), ¶m->thirdPartyModelParam);
150 - MS_LOG(ERROR) << "Parse third party param failed.";
152 + if (param->fmk_type == converter::kFmkTypeThirdParty) {
153 + ret = lite::ThirdPartyParamParser::Parse(config_parser.GetThirdPartyModelString(), ¶m->thirdPartyModelParam);
155 + MS_LOG(ERROR) << "Parse third party param failed.";
159 ret = InitExtendedIntegrationInfo(param, config_parser);
165 @@ -238,6 +238,7 @@ int Coder::Init(const MicroParam ¶m) const {
166 config->set_graph_inputs_shape_infos(param.graph_inputs_shape_infos);
167 config->set_dynamic_symbols(param.dynamic_symbols);
168 config->set_dynamic_symbols_num(param.dynamic_symbols_num);
169 + config->set_dynamic_symbols_map(param.dynamic_symbols_map);
170 config->set_user_graph_inputs_template(param.graph_inputs_template);