Browse Source

Pre Merge pull request !1523 from zhengyuanhua/master_v2

pull/1523/MERGE
zhengyuanhua Gitee 4 years ago
parent
commit
57e72814fa
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      ge/hybrid/executor/hybrid_model_executor.cc

+ 6
- 1
ge/hybrid/executor/hybrid_model_executor.cc View File

@@ -112,7 +112,12 @@ Status HybridModelExecutor::ExecuteGraphInternal(SubgraphExecutor &executor,
HYBRID_CHK_STATUS_RET(context_.DumpExceptionInfo(exception_infos),
"[Execute][GraphInternal] Dump exception info failed.");
}
GELOGE(ret, "[Execute][GraphInternal] Synchronize failed.");
if (ret == ge::END_OF_SEQUENCE) {
GELOGD("Got end of sequence");
} else {
GELOGE(ret, "[Execute][GraphInternal] Synchronize failed.");
}
return ret;
}
RECORD_MODEL_EXECUTION_EVENT(&context_, "[Synchronize] End");
}


Loading…
Cancel
Save