We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c4dde commit 26566f4Copy full SHA for 26566f4
paddle/fluid/framework/new_executor/workqueue/nonblocking_threadpool.h
@@ -130,10 +130,10 @@ class ThreadPoolTempl {
130
// this is kept alive while any threads can potentially be in Schedule.
131
if (!t.f) {
132
if (num_tasks > num_threads_ - blocked_) {
133
- VLOG(6) << "Add task, Nodify";
+ VLOG(6) << "Add task, Notify";
134
ec_.Notify(false);
135
} else {
136
- VLOG(6) << "Add task, No Nodify";
+ VLOG(6) << "Add task, No Notify";
137
}
138
139
num_tasks_.fetch_sub(1, std::memory_order_relaxed);
0 commit comments