Browse Source

Pre Merge pull request !597 from 徐剑/c82_warning_clear

pull/597/MERGE
徐剑 Gitee 3 years ago
parent
commit
8fe534c97e
No known key found for this signature in database GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      parser/common/acl_graph_parser_util.cc

+ 1
- 1
parser/common/acl_graph_parser_util.cc View File

@@ -588,7 +588,7 @@ domi::Status AclGrphParseUtil::CheckOptions(const std::map<AscendString, AscendS

string key_str = key_ascend;
std::set<std::string>::const_iterator it = ge::ir_option::ir_parser_suppported_options.find(key_str);
if (it == ge::ir_option::ir_parser_suppported_options.end()) {
if (it == ge::ir_option::ir_parser_suppported_options.cend()) {
ErrorManager::GetInstance().ATCReportErrMessage("E10016", {"parameter", "opname"}, {"parser_params", key_str});
GELOGE(PARAM_INVALID, "[Check][Param] Input options include unsupported option(%s).Please check!", key_ascend);
return PARAM_INVALID;


Loading…
Cancel
Save