Browse Source

!594 Parser告警清除

Merge pull request !594 from 徐剑/warning_clear
pull/596/head
徐剑 i-robot 3 years ago
parent
commit
0cb351e6bc
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

@@ -590,7 +590,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