Browse Source

remove redundant parentheses

tags/v1.2.0
chuxing 3 years ago
parent
commit
26a50cb9ba
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