Browse Source

update

tags/v1.2.0
chuxing 3 years ago
parent
commit
c225cbe16d
2 changed files with 9 additions and 7 deletions
  1. +8
    -6
      ge/hybrid/executor/hybrid_model_executor.cc
  2. +1
    -1
      ge/hybrid/executor/subgraph_executor.cc

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

@@ -50,16 +50,18 @@ Status HybridModelExecutor::Execute(HybridModelExecutor::ExecuteArgs &args) {
auto ret = ExecuteGraphInternal(executor, args);
Cleanup();
RECORD_MODEL_EXECUTION_EVENT(&context_, "[Cleanup] End");
GE_CHK_STATUS_RET(ret, "Failed to execute model");
GELOGD("Model executed successfully.");

if (context_.profiler != nullptr) {
context_.profiler->Dump(std::cout);
context_.profiler->Reset();
}

args.is_eos = context_.is_eos_;
context_.iteration += 1;
if (ret == END_OF_SEQUENCE) {
args.is_eos = true;
} else {
GE_CHK_STATUS_RET(ret, "Failed to execute model");
}
return SUCCESS;
}

@@ -69,13 +71,13 @@ Status HybridModelExecutor::ExecuteGraphInternal(SubgraphExecutor &executor,
GE_CHK_STATUS_RET_NOLOG(ResetExecutionContext(context_));
RECORD_MODEL_EXECUTION_EVENT(&context_, "[InitContext] End");

GE_CHK_STATUS_RET(executor.ExecuteAsync(args.inputs, args.input_desc), "Failed to execute partitioned call.");
HYBRID_CHK_STATUS_RET(executor.ExecuteAsync(args.inputs, args.input_desc), "Failed to execute partitioned call.");
RECORD_MODEL_EXECUTION_EVENT(&context_, "[ExecuteAsync] End");

GE_CHK_STATUS_RET(executor.Synchronize(), "Failed to sync root graph.");
HYBRID_CHK_STATUS_RET(executor.Synchronize(), "Failed to sync root graph.");
RECORD_MODEL_EXECUTION_EVENT(&context_, "[Synchronize] End");

GE_CHK_STATUS_RET(executor.GetOutputs(args.outputs, args.output_desc), "Failed to get outputs");
HYBRID_CHK_STATUS_RET(executor.GetOutputs(args.outputs, args.output_desc), "Failed to get outputs");
RECORD_MODEL_EXECUTION_EVENT(&context_, "[GetOutput] End");
return SUCCESS;
}


+ 1
- 1
ge/hybrid/executor/subgraph_executor.cc View File

@@ -139,7 +139,7 @@ Status SubgraphExecutor::ExecuteAsync(const std::vector<TensorValue> &inputs,
return ExecuteAsyncForKnownShape(inputs);
}

GE_CHK_STATUS_RET(ScheduleTasks(), "[%s] Failed to execute tasks.", graph_item_->GetName().c_str());
HYBRID_CHK_STATUS_RET(ScheduleTasks(), "[%s] Failed to execute tasks.", graph_item_->GetName().c_str());
GELOGD("[%s] Done executing subgraph successfully.", graph_item_->GetName().c_str());
return SUCCESS;
}


Loading…
Cancel
Save