Browse Source

!794 remove redundant parentheses

From: @xchu42
Reviewed-by: @wqtshg,@ji_chen
Signed-off-by: @ji_chen
tags/v1.2.0
mindspore-ci-bot Gitee 3 years ago
parent
commit
4c639c3b4b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ge/hybrid/node_executor/node_executor.cc

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

@@ -244,7 +244,7 @@ Status NoOpTask::UpdateArgs(TaskContext &context) {
}
Status NoOpTask::ExecuteAsync(TaskContext &context, std::function<void()> done_callback) {
GELOGD("[%s] Skipping execution for op with empty outputs", context.GetNodeName());
return context.TryExecuteCallback((done_callback));
return context.TryExecuteCallback(done_callback);
}
} // namespace hybrid
} // namespace ge

Loading…
Cancel
Save