// (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