makeuptransfer
makeuptransfer
Thank you for the correction, I was busy with other work recently, I'm really sorry. I do not quite understand what you mean about your second question , can you...
try this way ```CPP #include #include #include #include tf::Executor executor (2); // executor having two threads void bottom() { std::cout
@bangerth, In my opinion, a runtime is tied to a node, when you silent_async a task(node) using executor, it will +1 to the whole executor pending_cnt, but when you silent_async...
@bangerth ,i dont get it, there are two threads (one from main, one from executor), why wait fu2 will block?
```CPP tf::Executor executor (2); // executor having two threads void bottom() { std::cout
@bangerth thx, i get it. it seems like you need let the tasks after the "specific one" scheduled by the "specific one" , or use [Dependent Async](https://taskflow.github.io/taskflow/DependentAsyncTasking.html),will they help?