|
| template<typename T , typename Op > |
| void | boost::mpi::detail::scan_impl (const communicator &comm, const T *in_values, int n, T *out_values, Op op, mpl::true_, mpl::true_) |
| |
| template<typename T , typename Op > |
| void | boost::mpi::detail::scan_impl (const communicator &comm, const T *in_values, int n, T *out_values, Op op, mpl::false_, mpl::true_) |
| |
| template<typename T , typename Op > |
| void | boost::mpi::detail::upper_lower_scan (const communicator &comm, const T *in_values, int n, T *out_values, Op &op, int lower, int upper) |
| |
| template<typename T , typename Op > |
| void | boost::mpi::detail::scan_impl (const communicator &comm, const T *in_values, int n, T *out_values, Op op, mpl::false_, mpl::false_) |
| |
| template<typename T , typename Op > |
| void | boost::mpi::scan (const communicator &comm, const T &in_value, T &out_value, Op op) |
| | Compute a prefix reduction of values from all processes in the communicator. More...
|
| |
| template<typename T , typename Op > |
| void | boost::mpi::scan (const communicator &comm, const T *in_values, int n, T *out_values, Op op) |
| | This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
| |
| template<typename T , typename Op > |
| T | boost::mpi::scan (const communicator &comm, const T &in_value, Op op) |
| | This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
| |