Skip to content

Commit

Permalink
fix graph_executor indentation error
Browse files Browse the repository at this point in the history
Former-commit-id: 293c955
  • Loading branch information
lyuchuny3 committed Apr 16, 2019
1 parent 16eddd9 commit d354003
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/lib/graph_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -571,9 +571,9 @@ Graph* GraphExecutor::GetOptimizedGraph(void)
if(exec_handle_ == nullptr || exec_engine_ == nullptr)
return nullptr;

Graph* graph = exec_engine_->GetOptimizedGraph(exec_handle_);
if(graph == nullptr)
graph = graph_;
Graph* graph = exec_engine_->GetOptimizedGraph(exec_handle_);
if(graph == nullptr)
graph = graph_;

return graph;
}
Expand Down

0 comments on commit d354003

Please sign in to comment.