scatter.hpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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.6. Scatter
  6. #ifndef BOOST_MPI_SCATTER_HPP
  7. #define BOOST_MPI_SCATTER_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 scattering from the root for a type that has an associated MPI
  20. // datatype, so we'll use MPI_Scatter to do all of the work.
  21. template<typename T>
  22. void
  23. scatter_impl(const communicator& comm, const T* in_values, T* out_values,
  24. int n, int root, mpl::true_)
  25. {
  26. MPI_Datatype type = get_mpi_datatype<T>(*in_values);
  27. BOOST_MPI_CHECK_RESULT(MPI_Scatter,
  28. (const_cast<T*>(in_values), n, type,
  29. out_values, n, type, root, comm));
  30. }
  31. // We're scattering from a non-root for a type that has an associated MPI
  32. // datatype, so we'll use MPI_Scatter to do all of the work.
  33. template<typename T>
  34. void
  35. scatter_impl(const communicator& comm, T* out_values, int n, int root,
  36. mpl::true_)
  37. {
  38. MPI_Datatype type = get_mpi_datatype<T>(*out_values);
  39. BOOST_MPI_CHECK_RESULT(MPI_Scatter,
  40. (0, n, type,
  41. out_values, n, type,
  42. root, comm));
  43. }
  44. // We're scattering from the root for a type that does not have an
  45. // associated MPI datatype, so we'll need to serialize
  46. // it. Unfortunately, this means that we cannot use MPI_Scatter, so
  47. // we'll just have the root send individual messages to the other
  48. // processes.
  49. template<typename T>
  50. void
  51. scatter_impl(const communicator& comm, const T* in_values, T* out_values,
  52. int n, int root, mpl::false_)
  53. {
  54. int tag = environment::collectives_tag();
  55. int size = comm.size();
  56. for (int dest = 0; dest < size; ++dest) {
  57. if (dest == root) {
  58. // Our own values will never be transmitted: just copy them.
  59. std::copy(in_values + dest * n, in_values + (dest + 1) * n, out_values);
  60. } else {
  61. // Send archive
  62. packed_oarchive oa(comm);
  63. for (int i = 0; i < n; ++i)
  64. oa << in_values[dest * n + i];
  65. detail::packed_archive_send(comm, dest, tag, oa);
  66. }
  67. }
  68. }
  69. // We're scattering to a non-root for a type that does not have an
  70. // associated MPI datatype, so we'll need to de-serialize
  71. // it. Unfortunately, this means that we cannot use MPI_Scatter, so
  72. // we'll just have all of the non-root nodes send individual
  73. // messages to the root.
  74. template<typename T>
  75. void
  76. scatter_impl(const communicator& comm, T* out_values, int n, int root,
  77. mpl::false_)
  78. {
  79. int tag = environment::collectives_tag();
  80. packed_iarchive ia(comm);
  81. MPI_Status status;
  82. detail::packed_archive_recv(comm, root, tag, ia, status);
  83. for (int i = 0; i < n; ++i)
  84. ia >> out_values[i];
  85. }
  86. } // end namespace detail
  87. template<typename T>
  88. void
  89. scatter(const communicator& comm, const T* in_values, T& out_value, int root)
  90. {
  91. if (comm.rank() == root)
  92. detail::scatter_impl(comm, in_values, &out_value, 1, root,
  93. is_mpi_datatype<T>());
  94. else
  95. detail::scatter_impl(comm, &out_value, 1, root, is_mpi_datatype<T>());
  96. }
  97. template<typename T>
  98. void
  99. scatter(const communicator& comm, const std::vector<T>& in_values, T& out_value,
  100. int root)
  101. {
  102. if (comm.rank() == root)
  103. ::boost::mpi::scatter<T>(comm, &in_values[0], out_value, root);
  104. else
  105. ::boost::mpi::scatter<T>(comm, static_cast<const T*>(0), out_value,
  106. root);
  107. }
  108. template<typename T>
  109. void scatter(const communicator& comm, T& out_value, int root)
  110. {
  111. BOOST_ASSERT(comm.rank() != root);
  112. detail::scatter_impl(comm, &out_value, 1, root, is_mpi_datatype<T>());
  113. }
  114. template<typename T>
  115. void
  116. scatter(const communicator& comm, const T* in_values, T* out_values, int n,
  117. int root)
  118. {
  119. if (comm.rank() == root)
  120. detail::scatter_impl(comm, in_values, out_values, n, root,
  121. is_mpi_datatype<T>());
  122. else
  123. detail::scatter_impl(comm, out_values, n, root, is_mpi_datatype<T>());
  124. }
  125. template<typename T>
  126. void
  127. scatter(const communicator& comm, const std::vector<T>& in_values,
  128. T* out_values, int n, int root)
  129. {
  130. if (comm.rank() == root)
  131. ::boost::mpi::scatter(comm, &in_values[0], out_values, n, root);
  132. else
  133. ::boost::mpi::scatter(comm, static_cast<const T*>(0), out_values,
  134. n, root);
  135. }
  136. template<typename T>
  137. void scatter(const communicator& comm, T* out_values, int n, int root)
  138. {
  139. BOOST_ASSERT(comm.rank() != root);
  140. detail::scatter_impl(comm, out_values, n, root, is_mpi_datatype<T>());
  141. }
  142. } } // end namespace boost::mpi
  143. #endif // BOOST_MPI_SCATTER_HPP