/usr/include/boost/mpi
NameSizeModeActions
collectives/-0755rm
detail/-0755rm
python/-0755rm
allocator.hpp57700644editdlrm
cartesian_communicator.hpp127250644editdlrm
collectives.hpp247270644editdlrm
collectives_fwd.hpp7520644editdlrm
communicator.hpp577420644editdlrm
config.hpp60800644editdlrm
datatype.hpp135510644editdlrm
datatype_fwd.hpp13480644editdlrm
environment.hpp101810644editdlrm
error_string.hpp6580644editdlrm
exception.hpp32350644editdlrm
graph_communicator.hpp181000644editdlrm
group.hpp109870644editdlrm
inplace.hpp15590644editdlrm
intercommunicator.hpp57550644editdlrm
nonblocking.hpp253390644editdlrm
operations.hpp99340644editdlrm
packed_iarchive.hpp50100644editdlrm
packed_oarchive.hpp48130644editdlrm
python.hpp28030644editdlrm
request.hpp53870644editdlrm
skeleton_and_content.hpp25500644editdlrm
skeleton_and_content_fwd.hpp10520644editdlrm
skeleton_and_content_types.hpp118180644editdlrm
status.hpp34500644editdlrm
timer.hpp20080644editdlrm
Edit: /usr/include/boost/mpi/skeleton_and_content.hpp (2550B)
// (C) Copyright 2005 Matthias Troyer // (C) Copyright 2006 Douglas Gregor // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // Authors: Matthias Troyer // Douglas Gregor /** @file skeleton_and_content.hpp * * This header provides facilities that allow the structure of data * types (called the "skeleton") to be transmitted and received * separately from the content stored in those data types. These * facilities are useful when the data in a stable data structure * (e.g., a mesh or a graph) will need to be transmitted * repeatedly. In this case, transmitting the skeleton only once * saves both communication effort (it need not be sent again) and * local computation (serialization need only be performed once for * the content). */ #ifndef BOOST_MPI_SKELETON_AND_CONTENT_HPP #define BOOST_MPI_SKELETON_AND_CONTENT_HPP #include #include #include namespace boost { namespace mpi { namespace detail { typedef boost::mpi::detail::forward_skeleton_oarchive type1; typedef boost::mpi::detail::forward_skeleton_iarchive type2; } } } // end namespace boost::mpi #include // For any headers that have provided declarations based on forward // declarations of the contents of this header, include definitions // for those declarations. This means that the inclusion of // skeleton_and_content.hpp enables the use of skeleton/content // transmission throughout the library. #ifdef BOOST_MPI_BROADCAST_HPP # include #endif #ifdef BOOST_MPI_COMMUNICATOR_HPP # include #endif // required by export BOOST_SERIALIZATION_REGISTER_ARCHIVE(boost::mpi::packed_skeleton_oarchive) BOOST_SERIALIZATION_REGISTER_ARCHIVE(boost::mpi::packed_skeleton_iarchive) BOOST_SERIALIZATION_REGISTER_ARCHIVE(boost::mpi::detail::type1) BOOST_SERIALIZATION_REGISTER_ARCHIVE(boost::mpi::detail::type2) BOOST_SERIALIZATION_USE_ARRAY_OPTIMIZATION(boost::mpi::packed_skeleton_oarchive) BOOST_SERIALIZATION_USE_ARRAY_OPTIMIZATION(boost::mpi::packed_skeleton_iarchive) #endif // BOOST_MPI_SKELETON_AND_CONTENT_HPP