pull/646/head
wxl 4 years ago
parent 395a4a8a31
commit 3c54d47b19

@ -63,6 +63,17 @@ vector<string> SplitInputShape(const std::string &input_shape) {
}
} // namespace
Status CheckInputFormat(string &input_format) {
if (input_format.empty()) {
return ge::SUCCESS;
}
if (!ge::TypeUtils::IsFormatValid(input_format.c_str())) {
GELOGE(ge::PARAM_INVALID, "user input format [%s] is not found!", input_format.c_str());
return ge::PARAM_INVALID;
}
return ge::SUCCESS;
}
bool CheckDynamicBatchSizeInputShapeValid(unordered_map<string, vector<int64_t>> shape_map,
std::string &dynamic_batch_size) {
int32_t size = 0;

@ -75,6 +75,7 @@ Status CheckInsertOpConfParamValid(const std::string insert_op_conf);
Status CheckDisableReuseMemoryParamValid(const std::string disable_reuse_memory);
Status CheckEnableSingleStreamParamValid(const std::string enable_single_stream);
Status CheckImplmodeParamValid(const std::string &optypelist_for_implmode, std::string &op_select_implmode);
Status CheckInputFormat(string &input_format);
void PrintOptionMap(std::map<std::string, std::string> &options, std::string tips);
void EraseEndSemicolon(std::string &param);
}

@ -320,10 +320,7 @@ graphStatus Impl::CheckOptions(const std::map<std::string, std::string> &options
}
// Check Input Format
if (options_.find(kInputFormat) != options_.end()) {
if (!options_[kInputFormat].empty() && !ge::TypeUtils::IsFormatValid(options_[kInputFormat].c_str())) {
GELOGE(ge::PARAM_INVALID, "user input format [%s] is not found!", options_[kInputFormat].c_str());
return GRAPH_PARAM_INVALID;
}
return CheckInputFormat(options_[kInputFormat]);
}
return GRAPH_SUCCESS;
}

Loading…
Cancel
Save