Browse Source

support fwk offline inference when ge_lib is not initialized

pull/1636/head
lichun 4 years ago
parent
commit
c144829c78
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ge/hybrid/node_executor/aicore/aicore_task_compiler.cc

+ 1
- 1
ge/hybrid/node_executor/aicore/aicore_task_compiler.cc View File

@@ -67,7 +67,7 @@ Status AiCoreTaskCompiler::CompileOp(const NodePtr &node, std::vector<domi::Task
ret = Initialize();
if (ret != SUCCESS) {
GELOGE(FAILED, "[Check][State][%s] Offline inference not support online compile.", node->GetName().c_str());
REPORT_INNER_ERROR("E19999", "[%s] Offline inference not support online compile.", node->GetName()..c_str());
REPORT_INNER_ERROR("E19999", "[%s] Offline inference not support online compile.", node->GetName().c_str());
return ret;
}
}


Loading…
Cancel
Save