File indexing completed on 2025-01-18 09:40:57
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_MPI_DETAIL_POINT_TO_POINT_HPP
0009 #define BOOST_MPI_DETAIL_POINT_TO_POINT_HPP
0010
0011
0012 #include <boost/mpi/config.hpp>
0013 #include <boost/mpi/packed_oarchive.hpp>
0014 #include <boost/mpi/packed_iarchive.hpp>
0015
0016 namespace boost { namespace mpi {
0017
0018 class request;
0019 class communicator;
0020
0021 namespace detail {
0022
0023
0024 BOOST_MPI_DECL void
0025 packed_archive_send(communicator const& comm, int dest, int tag,
0026 const packed_oarchive& ar);
0027
0028
0029
0030
0031
0032
0033
0034
0035 BOOST_MPI_DECL request
0036 packed_archive_isend(communicator const& comm, int dest, int tag,
0037 const packed_oarchive& ar);
0038
0039
0040
0041
0042 BOOST_MPI_DECL request
0043 packed_archive_isend(communicator const& comm, int dest, int tag,
0044 const packed_iarchive& ar);
0045
0046
0047 BOOST_MPI_DECL void
0048 packed_archive_recv(communicator const& comm, int source, int tag, packed_iarchive& ar,
0049 MPI_Status& status);
0050
0051 } } }
0052
0053 #endif