HavoqGT
havoqgt::mpi::detail Namespace Reference

Functions

template<typename Iterator >
bool global_iterator_range_empty (Iterator itr, Iterator itr_end, MPI_Comm comm)
 

Function Documentation

template<typename Iterator >
bool havoqgt::mpi::detail::global_iterator_range_empty ( Iterator  itr,
Iterator  itr_end,
MPI_Comm  comm 
)

Tests if all processes' iterator range is empty

Parameters
itrbegin iterator
itr_endend iterator
commMPI communicator
Returns
true, if all processes have empty range, else false

Definition at line 67 of file iterator.hpp.

67  {
68  uint32_t my_unfinished = itr != itr_end;
69  uint32_t ranks_unfinished = mpi_all_reduce(my_unfinished,
70  std::plus<uint32_t>(),
71  comm);
72  return ranks_unfinished == 0;
73 }
T mpi_all_reduce(T in_d, Op in_op, MPI_Comm mpi_comm)
Definition: mpi.hpp:176

Here is the call graph for this function:

Here is the caller graph for this function: