Home | Libraries | People | FAQ | More |
boost::mpi::wait_some — Wait until some non-blocking requests have completed.
// In header: <boost/mpi/nonblocking.hpp> template<typename BidirectionalIterator, typename OutputIterator> std::pair< OutputIterator, BidirectionalIterator > wait_some(BidirectionalIterator first, BidirectionalIterator last, OutputIterator out); template<typename BidirectionalIterator> BidirectionalIterator wait_some(BidirectionalIterator first, BidirectionalIterator last);
This routine takes in a set of requests stored in the iterator range [first,last) and waits until at least one of the requests has completed. It then completes all of the requests it can, partitioning the input sequence into pending requests followed by completed requests. If an output iterator is provided,
status
objects will be emitted for each of the completed requests. This routine provides functionality equivalent to MPI_Waitsome
.
Parameters: |
|
||||||
Returns: |
If the |