all_gather.hpp 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // Copyright (C) 2005-2006 Douglas Gregor <doug.gregor -at- gmail.com>.
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Message Passing Interface 1.1 -- Section 4.7. Gather-to-all
  6. #ifndef BOOST_MPI_ALL_GATHER_HPP
  7. #define BOOST_MPI_ALL_GATHER_HPP
  8. #include <boost/mpi/exception.hpp>
  9. #include <boost/mpi/datatype.hpp>
  10. #include <vector>
  11. #include <boost/serialization/vector.hpp>
  12. // all_gather falls back to gather+broadcast in some cases
  13. #include <boost/mpi/collectives/broadcast.hpp>
  14. #include <boost/mpi/collectives/gather.hpp>
  15. namespace boost { namespace mpi {
  16. namespace detail {
  17. // We're all-gathering for a type that has an associated MPI
  18. // datatype, so we'll use MPI_Gather to do all of the work.
  19. template<typename T>
  20. void
  21. all_gather_impl(const communicator& comm, const T* in_values, int n,
  22. T* out_values, mpl::true_)
  23. {
  24. MPI_Datatype type = boost::mpi::get_mpi_datatype<T>(*in_values);
  25. BOOST_MPI_CHECK_RESULT(MPI_Allgather,
  26. (const_cast<T*>(in_values), n, type,
  27. out_values, n, type, comm));
  28. }
  29. // We're all-gathering for a type that has no associated MPI
  30. // type. So, we'll do a manual gather followed by a broadcast.
  31. template<typename T>
  32. void
  33. all_gather_impl(const communicator& comm, const T* in_values, int n,
  34. T* out_values, mpl::false_)
  35. {
  36. gather(comm, in_values, n, out_values, 0);
  37. broadcast(comm, out_values, comm.size() * n, 0);
  38. }
  39. } // end namespace detail
  40. template<typename T>
  41. inline void
  42. all_gather(const communicator& comm, const T& in_value, T* out_values)
  43. {
  44. detail::all_gather_impl(comm, &in_value, 1, out_values, is_mpi_datatype<T>());
  45. }
  46. template<typename T>
  47. void
  48. all_gather(const communicator& comm, const T& in_value,
  49. std::vector<T>& out_values)
  50. {
  51. out_values.resize(comm.size());
  52. ::boost::mpi::all_gather(comm, &in_value, 1, &out_values[0]);
  53. }
  54. template<typename T>
  55. inline void
  56. all_gather(const communicator& comm, const T* in_values, int n, T* out_values)
  57. {
  58. detail::all_gather_impl(comm, in_values, n, out_values, is_mpi_datatype<T>());
  59. }
  60. template<typename T>
  61. void
  62. all_gather(const communicator& comm, const T* in_values, int n,
  63. std::vector<T>& out_values)
  64. {
  65. out_values.resize(comm.size() * n);
  66. ::boost::mpi::all_gather(comm, in_values, n, &out_values[0]);
  67. }
  68. } } // end namespace boost::mpi
  69. #endif // BOOST_MPI_ALL_GATHER_HPP