Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
scan.hpp File Reference
#include <boost/mpi/exception.hpp>
#include <boost/mpi/datatype.hpp>
#include <boost/mpi/packed_oarchive.hpp>
#include <boost/mpi/packed_iarchive.hpp>
#include <boost/mpi/detail/point_to_point.hpp>
#include <boost/mpi/communicator.hpp>
#include <boost/mpi/environment.hpp>
#include <boost/mpi/detail/computation_tree.hpp>
#include <boost/mpi/operations.hpp>
#include <algorithm>
#include <exception>
#include <boost/assert.hpp>
Include dependency graph for scan.hpp:
This graph shows which files directly or indirectly include this file:

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::mpi
 
 boost::mpi::detail
 

Functions

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...