Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4662d013c520d7652b678aaeea01caa0a5d1d419
[simgrid.git] / src / smpi / colls / smpi_coll.cpp
1 /* smpi_coll.c -- various optimized routing for collectives                 */
2
3 /* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "smpi_coll.hpp"
9 #include "private.hpp"
10 #include "smpi_comm.hpp"
11 #include "smpi_datatype.hpp"
12 #include "smpi_op.hpp"
13 #include "smpi_request.hpp"
14 #include "xbt/config.hpp"
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_coll, smpi, "Logging specific to SMPI (coll)");
17
18 #define COLL_SETTER(cat, ret, args, args2)                                                                             \
19   int(*Colls::cat) args;                                                                                               \
20   void Colls::set_##cat(const std::string& name)                                                                       \
21   {                                                                                                                    \
22     int id = find_coll_description(mpi_coll_##cat##_description, name, #cat);                                          \
23     cat    = reinterpret_cast<ret(*) args>(mpi_coll_##cat##_description[id].coll);                                     \
24     if (cat == nullptr)                                                                                                \
25       xbt_die("Collective " #cat " set to nullptr!");                                                                  \
26   }
27
28 namespace simgrid{
29 namespace smpi{
30
31 void (*Colls::smpi_coll_cleanup_callback)();
32
33 /* these arrays must be nullptr terminated */
34 s_mpi_coll_description_t Colls::mpi_coll_gather_description[] = {
35     COLL_GATHERS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
36 s_mpi_coll_description_t Colls::mpi_coll_allgather_description[] = {
37     COLL_ALLGATHERS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
38 s_mpi_coll_description_t Colls::mpi_coll_allgatherv_description[] = {
39     COLL_ALLGATHERVS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
40 s_mpi_coll_description_t Colls::mpi_coll_allreduce_description[] ={
41     COLL_ALLREDUCES(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
42 s_mpi_coll_description_t Colls::mpi_coll_reduce_scatter_description[] = {
43     COLL_REDUCE_SCATTERS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
44 s_mpi_coll_description_t Colls::mpi_coll_scatter_description[] ={
45     COLL_SCATTERS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
46 s_mpi_coll_description_t Colls::mpi_coll_barrier_description[] ={
47     COLL_BARRIERS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
48 s_mpi_coll_description_t Colls::mpi_coll_alltoall_description[] = {
49     COLL_ALLTOALLS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
50 s_mpi_coll_description_t Colls::mpi_coll_alltoallv_description[] = {
51     COLL_ALLTOALLVS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
52 s_mpi_coll_description_t Colls::mpi_coll_bcast_description[] = {
53     COLL_BCASTS(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
54 s_mpi_coll_description_t Colls::mpi_coll_reduce_description[] = {
55     COLL_REDUCES(COLL_DESCRIPTION, COLL_COMMA), {"", "", nullptr} };
56
57 /** Displays the long description of all registered models, and quit */
58 void Colls::coll_help(const char *category, s_mpi_coll_description_t * table)
59 {
60   XBT_WARN("Long description of the %s models accepted by this simulator:\n", category);
61   for (int i = 0; not table[i].name.empty(); i++)
62     XBT_WARN("  %s: %s\n", table[i].name.c_str(), table[i].description.c_str());
63 }
64
65 int Colls::find_coll_description(s_mpi_coll_description_t* table, const std::string& name, const char* desc)
66 {
67   for (int i = 0; not table[i].name.empty(); i++)
68     if (name == table[i].name) {
69       if (table[i].name != "default")
70         XBT_INFO("Switch to algorithm %s for collective %s",table[i].name.c_str(),desc);
71       return i;
72     }
73
74   if (table[0].name.empty())
75     xbt_die("No collective is valid for '%s'! This is a bug.", name.c_str());
76   std::string name_list = table[0].name;
77   for (int i = 1; not table[i].name.empty(); i++)
78     name_list = name_list + ", " + table[i].name;
79
80   xbt_die("Collective '%s' is invalid! Valid collectives are: %s.", name.c_str(), name_list.c_str());
81   return -1;
82 }
83
84 COLL_APPLY(COLL_SETTER,COLL_GATHER_SIG,"");
85 COLL_APPLY(COLL_SETTER,COLL_ALLGATHER_SIG,"");
86 COLL_APPLY(COLL_SETTER,COLL_ALLGATHERV_SIG,"");
87 COLL_APPLY(COLL_SETTER,COLL_REDUCE_SIG,"");
88 COLL_APPLY(COLL_SETTER,COLL_ALLREDUCE_SIG,"");
89 COLL_APPLY(COLL_SETTER,COLL_REDUCE_SCATTER_SIG,"");
90 COLL_APPLY(COLL_SETTER,COLL_SCATTER_SIG,"");
91 COLL_APPLY(COLL_SETTER,COLL_BARRIER_SIG,"");
92 COLL_APPLY(COLL_SETTER,COLL_BCAST_SIG,"");
93 COLL_APPLY(COLL_SETTER,COLL_ALLTOALL_SIG,"");
94 COLL_APPLY(COLL_SETTER,COLL_ALLTOALLV_SIG,"");
95
96 void Colls::set_collectives(){
97   std::string selector_name = simgrid::config::get_value<std::string>("smpi/coll-selector");
98   if (selector_name.empty())
99     selector_name = "default";
100
101   std::pair<std::string, std::function<void(std::string)>> setter_callbacks[] = {
102       {"gather", &Colls::set_gather},         {"allgather", &Colls::set_allgather},
103       {"allgatherv", &Colls::set_allgatherv}, {"allreduce", &Colls::set_allreduce},
104       {"alltoall", &Colls::set_alltoall},     {"alltoallv", &Colls::set_alltoallv},
105       {"reduce", &Colls::set_reduce},         {"reduce_scatter", &Colls::set_reduce_scatter},
106       {"scatter", &Colls::set_scatter},       {"bcast", &Colls::set_bcast},
107       {"barrier", &Colls::set_barrier}};
108
109   for (auto& elem : setter_callbacks) {
110     std::string name = simgrid::config::get_value<std::string>(("smpi/" + elem.first).c_str());
111     if (name.empty())
112       name = selector_name;
113
114     (elem.second)(name);
115   }
116 }
117
118
119 //Implementations of the single algorith collectives
120
121 int Colls::gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs,
122                       MPI_Datatype recvtype, int root, MPI_Comm comm)
123 {
124   MPI_Request request;
125   Colls::igatherv(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, &request);
126   MPI_Request* requests = request->get_nbc_requests();
127   int count = request->get_nbc_requests_size();
128   Request::waitall(count, requests, MPI_STATUS_IGNORE);
129   for (int i = 0; i < count; i++) {
130     if(requests[i]!=MPI_REQUEST_NULL)
131       Request::unref(&requests[i]);
132   }
133   delete[] requests;
134   Request::unref(&request);
135   return MPI_SUCCESS;
136 }
137
138
139 int Colls::scatterv(void *sendbuf, int *sendcounts, int *displs, MPI_Datatype sendtype, void *recvbuf, int recvcount,
140                        MPI_Datatype recvtype, int root, MPI_Comm comm)
141 {
142   MPI_Request request;
143   Colls::iscatterv(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype, root, comm, &request);
144   MPI_Request* requests = request->get_nbc_requests();
145   int count = request->get_nbc_requests_size();
146   Request::waitall(count, requests, MPI_STATUS_IGNORE);
147   for (int dst = 0; dst < count; dst++) {
148     if(requests[dst]!=MPI_REQUEST_NULL)
149       Request::unref(&requests[dst]);
150   }
151   delete[] requests;
152   Request::unref(&request);
153   return MPI_SUCCESS;
154 }
155
156
157 int Colls::scan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
158 {
159   int system_tag = -888;
160   MPI_Aint lb      = 0;
161   MPI_Aint dataext = 0;
162
163   int rank = comm->rank();
164   int size = comm->size();
165
166   datatype->extent(&lb, &dataext);
167
168   // Local copy from self
169   Datatype::copy(sendbuf, count, datatype, recvbuf, count, datatype);
170
171   // Send/Recv buffers to/from others
172   MPI_Request *requests = xbt_new(MPI_Request, size - 1);
173   void **tmpbufs = xbt_new(void *, rank);
174   int index = 0;
175   for (int other = 0; other < rank; other++) {
176     tmpbufs[index] = smpi_get_tmp_sendbuffer(count * dataext);
177     requests[index] = Request::irecv_init(tmpbufs[index], count, datatype, other, system_tag, comm);
178     index++;
179   }
180   for (int other = rank + 1; other < size; other++) {
181     requests[index] = Request::isend_init(sendbuf, count, datatype, other, system_tag, comm);
182     index++;
183   }
184   // Wait for completion of all comms.
185   Request::startall(size - 1, requests);
186
187   if(op != MPI_OP_NULL && op->is_commutative()){
188     for (int other = 0; other < size - 1; other++) {
189       index = Request::waitany(size - 1, requests, MPI_STATUS_IGNORE);
190       if(index == MPI_UNDEFINED) {
191         break;
192       }
193       if(index < rank) {
194         // #Request is below rank: it's a irecv
195         op->apply( tmpbufs[index], recvbuf, &count, datatype);
196       }
197     }
198   }else{
199     //non commutative case, wait in order
200     for (int other = 0; other < size - 1; other++) {
201       Request::wait(&(requests[other]), MPI_STATUS_IGNORE);
202       if(index < rank && op!=MPI_OP_NULL) {
203         op->apply( tmpbufs[other], recvbuf, &count, datatype);
204       }
205     }
206   }
207   for(index = 0; index < rank; index++) {
208     smpi_free_tmp_buffer(tmpbufs[index]);
209   }
210   for(index = 0; index < size-1; index++) {
211     Request::unref(&requests[index]);
212   }
213   xbt_free(tmpbufs);
214   xbt_free(requests);
215   return MPI_SUCCESS;
216 }
217
218 int Colls::exscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
219 {
220   int system_tag = -888;
221   MPI_Aint lb         = 0;
222   MPI_Aint dataext    = 0;
223   int recvbuf_is_empty=1;
224   int rank = comm->rank();
225   int size = comm->size();
226
227   datatype->extent(&lb, &dataext);
228
229   // Send/Recv buffers to/from others
230   MPI_Request *requests = xbt_new(MPI_Request, size - 1);
231   void **tmpbufs = xbt_new(void *, rank);
232   int index = 0;
233   for (int other = 0; other < rank; other++) {
234     tmpbufs[index] = smpi_get_tmp_sendbuffer(count * dataext);
235     requests[index] = Request::irecv_init(tmpbufs[index], count, datatype, other, system_tag, comm);
236     index++;
237   }
238   for (int other = rank + 1; other < size; other++) {
239     requests[index] = Request::isend_init(sendbuf, count, datatype, other, system_tag, comm);
240     index++;
241   }
242   // Wait for completion of all comms.
243   Request::startall(size - 1, requests);
244
245   if(op != MPI_OP_NULL && op->is_commutative()){
246     for (int other = 0; other < size - 1; other++) {
247       index = Request::waitany(size - 1, requests, MPI_STATUS_IGNORE);
248       if(index == MPI_UNDEFINED) {
249         break;
250       }
251       if(index < rank) {
252         if(recvbuf_is_empty){
253           Datatype::copy(tmpbufs[index], count, datatype, recvbuf, count, datatype);
254           recvbuf_is_empty=0;
255         } else
256           // #Request is below rank: it's a irecv
257           op->apply( tmpbufs[index], recvbuf, &count, datatype);
258       }
259     }
260   }else{
261     //non commutative case, wait in order
262     for (int other = 0; other < size - 1; other++) {
263      Request::wait(&(requests[other]), MPI_STATUS_IGNORE);
264       if(index < rank) {
265         if (recvbuf_is_empty) {
266           Datatype::copy(tmpbufs[other], count, datatype, recvbuf, count, datatype);
267           recvbuf_is_empty = 0;
268         } else
269           if(op!=MPI_OP_NULL)
270             op->apply( tmpbufs[other], recvbuf, &count, datatype);
271       }
272     }
273   }
274   for(index = 0; index < rank; index++) {
275     smpi_free_tmp_buffer(tmpbufs[index]);
276   }
277   for(index = 0; index < size-1; index++) {
278     Request::unref(&requests[index]);
279   }
280   xbt_free(tmpbufs);
281   xbt_free(requests);
282   return MPI_SUCCESS;
283 }
284
285 }
286 }