!794 remove redundant parentheses

From: @xchu42
Reviewed-by: @wqtshg,@ji_chen
Signed-off-by: @ji_chen
pull/794/MERGE
mindspore-ci-bot 4 years ago committed by Gitee
commit 4c639c3b4b

@ -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