scatterv.hpp 5.6 KB

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