gather.hpp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. // Copyright (C) 2005, 2006 Douglas Gregor.
  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.5. Gather
  6. #ifndef BOOST_MPI_GATHER_HPP
  7. #define BOOST_MPI_GATHER_HPP
  8. #include <boost/mpi/exception.hpp>
  9. #include <boost/mpi/datatype.hpp>
  10. #include <vector>
  11. #include <boost/mpi/packed_oarchive.hpp>
  12. #include <boost/mpi/packed_iarchive.hpp>
  13. #include <boost/mpi/detail/point_to_point.hpp>
  14. #include <boost/mpi/communicator.hpp>
  15. #include <boost/mpi/environment.hpp>
  16. #include <boost/assert.hpp>
  17. namespace boost { namespace mpi {
  18. namespace detail {
  19. // We're gathering at the root for a type that has an associated MPI
  20. // datatype, so we'll use MPI_Gather to do all of the work.
  21. template<typename T>
  22. void
  23. gather_impl(const communicator& comm, const T* in_values, int n,
  24. T* out_values, int root, mpl::true_)
  25. {
  26. MPI_Datatype type = get_mpi_datatype<T>(*in_values);
  27. BOOST_MPI_CHECK_RESULT(MPI_Gather,
  28. (const_cast<T*>(in_values), n, type,
  29. out_values, n, type, root, comm));
  30. }
  31. // We're gathering from a non-root for a type that has an associated MPI
  32. // datatype, so we'll use MPI_Gather to do all of the work.
  33. template<typename T>
  34. void
  35. gather_impl(const communicator& comm, const T* in_values, int n, int root,
  36. mpl::true_)
  37. {
  38. MPI_Datatype type = get_mpi_datatype<T>(*in_values);
  39. BOOST_MPI_CHECK_RESULT(MPI_Gather,
  40. (const_cast<T*>(in_values), n, type,
  41. 0, n, type, root, comm));
  42. }
  43. // We're gathering at the root for a type that does not have an
  44. // associated MPI datatype, so we'll need to serialize
  45. // it. Unfortunately, this means that we cannot use MPI_Gather, so
  46. // we'll just have all of the non-root nodes send individual
  47. // messages to the root.
  48. template<typename T>
  49. void
  50. gather_impl(const communicator& comm, const T* in_values, int n,
  51. T* out_values, int root, mpl::false_)
  52. {
  53. int tag = environment::collectives_tag();
  54. int size = comm.size();
  55. for (int src = 0; src < size; ++src) {
  56. if (src == root)
  57. std::copy(in_values, in_values + n, out_values + n * src);
  58. else
  59. comm.recv(src, tag, out_values + n * src, n);
  60. }
  61. }
  62. // We're gathering at a non-root for a type that does not have an
  63. // associated MPI datatype, so we'll need to serialize
  64. // it. Unfortunately, this means that we cannot use MPI_Gather, so
  65. // we'll just have all of the non-root nodes send individual
  66. // messages to the root.
  67. template<typename T>
  68. void
  69. gather_impl(const communicator& comm, const T* in_values, int n, int root,
  70. mpl::false_)
  71. {
  72. int tag = environment::collectives_tag();
  73. comm.send(root, tag, in_values, n);
  74. }
  75. } // end namespace detail
  76. template<typename T>
  77. void
  78. gather(const communicator& comm, const T& in_value, T* out_values, int root)
  79. {
  80. if (comm.rank() == root)
  81. detail::gather_impl(comm, &in_value, 1, out_values, root,
  82. is_mpi_datatype<T>());
  83. else
  84. detail::gather_impl(comm, &in_value, 1, root, is_mpi_datatype<T>());
  85. }
  86. template<typename T>
  87. void gather(const communicator& comm, const T& in_value, int root)
  88. {
  89. BOOST_ASSERT(comm.rank() != root);
  90. detail::gather_impl(comm, &in_value, 1, root, is_mpi_datatype<T>());
  91. }
  92. template<typename T>
  93. void
  94. gather(const communicator& comm, const T& in_value, std::vector<T>& out_values,
  95. int root)
  96. {
  97. if (comm.rank() == root) {
  98. out_values.resize(comm.size());
  99. ::boost::mpi::gather(comm, in_value, &out_values[0], root);
  100. } else {
  101. ::boost::mpi::gather(comm, in_value, root);
  102. }
  103. }
  104. template<typename T>
  105. void
  106. gather(const communicator& comm, const T* in_values, int n, T* out_values,
  107. int root)
  108. {
  109. if (comm.rank() == root)
  110. detail::gather_impl(comm, in_values, n, out_values, root,
  111. is_mpi_datatype<T>());
  112. else
  113. detail::gather_impl(comm, in_values, n, root, is_mpi_datatype<T>());
  114. }
  115. template<typename T>
  116. void
  117. gather(const communicator& comm, const T* in_values, int n,
  118. std::vector<T>& out_values, int root)
  119. {
  120. if (comm.rank() == root) {
  121. out_values.resize(comm.size() * n);
  122. ::boost::mpi::gather(comm, in_values, n, &out_values[0], root);
  123. }
  124. else
  125. ::boost::mpi::gather(comm, in_values, n, root);
  126. }
  127. template<typename T>
  128. void gather(const communicator& comm, const T* in_values, int n, int root)
  129. {
  130. BOOST_ASSERT(comm.rank() != root);
  131. detail::gather_impl(comm, in_values, n, root, is_mpi_datatype<T>());
  132. }
  133. } } // end namespace boost::mpi
  134. #endif // BOOST_MPI_GATHER_HPP