Browse Source

bugfix

tags/v1.2.0
wxl 4 years ago
parent
commit
3c54d47b19
3 changed files with 13 additions and 4 deletions
  1. +11
    -0
      ge/ir_build/atc_ir_common.cc
  2. +1
    -0
      ge/ir_build/atc_ir_common.h
  3. +1
    -4
      ge/ir_build/ge_ir_build.cc

+ 11
- 0
ge/ir_build/atc_ir_common.cc View File

@@ -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;


+ 1
- 0
ge/ir_build/atc_ir_common.h View File

@@ -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);
}


+ 1
- 4
ge/ir_build/ge_ir_build.cc View File

@@ -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