Home | Libraries | People | FAQ | More |
boost::mpi::wait_all — Wait until all non-blocking requests have completed.
// In header: <boost/mpi/nonblocking.hpp> template<typename ForwardIterator, typename OutputIterator> OutputIterator wait_all(ForwardIterator first, ForwardIterator last, OutputIterator out); template<typename ForwardIterator> void wait_all(ForwardIterator first, ForwardIterator last);
This routine takes in a set of requests stored in the iterator range [first,last) and waits until all of these requests have been completed. It provides functionality equivalent to
MPI_Waitall
.
Parameters: |
|
||||||
Returns: |
If an |