1
使用MPI,您如何等待線程完成?等待其他處理器在MPI中完成其任務
例如:
for (int i = localstart; i < localend; i++)
{
// do stuff that is computationally intensive
}
// I need to wait for all other threads to finish here
if (rank == 0) do_something();
我的意思是進程/排名。謝謝,那正是我正在尋找的。 – 2012-04-24 21:45:59