gatherv.hpp 5.6 KB

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