Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
415f12692c37e4569bc5e1c8d93b8d7b6c411140
[simgrid.git] / src / smpi / bindings / smpi_pmpi_coll.cpp
1 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "private.hpp"
7 #include "smpi_coll.hpp"
8 #include "smpi_comm.hpp"
9 #include "smpi_request.hpp"
10 #include "smpi_datatype_derived.hpp"
11 #include "smpi_op.hpp"
12 #include "src/smpi/include/smpi_actor.hpp"
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi);
15
16 /* PMPI User level calls */
17
18 int PMPI_Barrier(MPI_Comm comm)
19 {
20   return PMPI_Ibarrier(comm, MPI_REQUEST_IGNORED);
21 }
22
23 int PMPI_Ibarrier(MPI_Comm comm, MPI_Request *request)
24 {
25   int retval = 0;
26   smpi_bench_end();
27   if (comm == MPI_COMM_NULL) {
28     retval = MPI_ERR_COMM;
29   } else if(request == nullptr){
30     retval = MPI_ERR_ARG;
31   }else{
32     int rank = simgrid::s4u::this_actor::get_pid();
33     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED? "PMPI_Barrier" : "PMPI_Ibarrier", new simgrid::instr::NoOpTIData(request==MPI_REQUEST_IGNORED? "barrier" : "ibarrier"));
34     if(request==MPI_REQUEST_IGNORED){
35       simgrid::smpi::Colls::barrier(comm);
36       //Barrier can be used to synchronize RMA calls. Finish all requests from comm before.
37       comm->finish_rma_calls();
38     } else
39       simgrid::smpi::Colls::ibarrier(comm, request);
40     TRACE_smpi_comm_out(rank);
41   }    
42   smpi_bench_begin();
43   return retval;
44 }
45
46 int PMPI_Bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
47 {
48   return PMPI_Ibcast(buf, count, datatype, root, comm, MPI_REQUEST_IGNORED);
49 }
50
51 int PMPI_Ibcast(void *buf, int count, MPI_Datatype datatype, 
52                    int root, MPI_Comm comm, MPI_Request* request)
53 {
54   if (comm == MPI_COMM_NULL) {
55     return MPI_ERR_COMM;
56   } if (buf == nullptr && count > 0) {
57     return MPI_ERR_BUFFER;
58   } else if (datatype == MPI_DATATYPE_NULL || not datatype->is_valid()) {
59     return MPI_ERR_TYPE;
60   } else if (count < 0){
61     return MPI_ERR_COUNT;
62   } else if (root < 0 || root >= comm->size()){
63     return MPI_ERR_ROOT;
64   }  else if (request == nullptr){
65     return MPI_ERR_ARG;
66   } else {
67     smpi_bench_end();
68     int rank = simgrid::s4u::this_actor::get_pid();
69     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Bcast":"PMPI_Ibcast",
70                        new simgrid::instr::CollTIData(request==MPI_REQUEST_IGNORED?"bcast":"ibcast", root, -1.0,
71                                                       datatype->is_replayable() ? count : count * datatype->size(), -1,
72                                                       simgrid::smpi::Datatype::encode(datatype), ""));
73     if (comm->size() > 1){
74       if(request==MPI_REQUEST_IGNORED)
75         simgrid::smpi::Colls::bcast(buf, count, datatype, root, comm);
76       else
77         simgrid::smpi::Colls::ibcast(buf, count, datatype, root, comm, request);
78     } else {
79       if(request!=MPI_REQUEST_IGNORED)
80         *request = MPI_REQUEST_NULL;
81     }
82     TRACE_smpi_comm_out(rank);
83     smpi_bench_begin();
84     return MPI_SUCCESS;
85   }
86 }
87
88 int PMPI_Gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,void *recvbuf, int recvcount, MPI_Datatype recvtype,
89                 int root, MPI_Comm comm){
90   return PMPI_Igather(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, MPI_REQUEST_IGNORED);
91 }
92
93 int PMPI_Igather(void *sendbuf, int sendcount, MPI_Datatype sendtype,void *recvbuf, int recvcount, MPI_Datatype recvtype,
94                 int root, MPI_Comm comm, MPI_Request *request)
95 {
96   if (comm == MPI_COMM_NULL) {
97     return MPI_ERR_COMM;
98   } else if ((sendbuf == nullptr) || ((comm->rank() == root) && recvbuf == nullptr)) {
99     return MPI_ERR_BUFFER;
100   } else if (((sendbuf != MPI_IN_PLACE && sendcount > 0) && (sendtype == MPI_DATATYPE_NULL)) ||
101             ((comm->rank() == root) && (recvtype == MPI_DATATYPE_NULL))){
102     return MPI_ERR_TYPE;
103   } else if ((( sendbuf != MPI_IN_PLACE) && (sendcount <0)) || ((comm->rank() == root) && (recvcount <0))){
104     return MPI_ERR_COUNT;
105   } else if (root < 0 || root >= comm->size()){
106     return MPI_ERR_ROOT;
107   } else if (request == nullptr){
108     return MPI_ERR_ARG;
109   }  else {
110     smpi_bench_end();
111     char* sendtmpbuf = static_cast<char*>(sendbuf);
112     int sendtmpcount = sendcount;
113     MPI_Datatype sendtmptype = sendtype;
114     if( (comm->rank() == root) && (sendbuf == MPI_IN_PLACE )) {
115       sendtmpcount=0;
116       sendtmptype=recvtype;
117     }
118     int rank = simgrid::s4u::this_actor::get_pid();
119
120     TRACE_smpi_comm_in(
121         rank, request==MPI_REQUEST_IGNORED?"PMPI_Gather":"PMPI_Igather",
122         new simgrid::instr::CollTIData(
123             request==MPI_REQUEST_IGNORED ? "gather":"igather", root, -1.0, sendtmptype->is_replayable() ? sendtmpcount : sendtmpcount * sendtmptype->size(),
124             (comm->rank() != root || recvtype->is_replayable()) ? recvcount : recvcount * recvtype->size(),
125             simgrid::smpi::Datatype::encode(sendtmptype), simgrid::smpi::Datatype::encode(recvtype)));
126     if(request == MPI_REQUEST_IGNORED)
127       simgrid::smpi::Colls::gather(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcount, recvtype, root, comm);
128     else
129       simgrid::smpi::Colls::igather(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcount, recvtype, root, comm, request);
130
131     TRACE_smpi_comm_out(rank);
132     smpi_bench_begin();
133     return MPI_SUCCESS;
134   }
135 }
136
137 int PMPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs,
138                 MPI_Datatype recvtype, int root, MPI_Comm comm){
139   return PMPI_Igatherv(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, MPI_REQUEST_IGNORED);
140 }
141
142 int PMPI_Igatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs,
143                 MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request)
144 {
145   if (comm == MPI_COMM_NULL) {
146     return MPI_ERR_COMM;
147   } else if ((sendbuf == nullptr && sendcount > 0) || ((comm->rank() == root) && recvbuf == nullptr)) {
148     return MPI_ERR_BUFFER;
149   } else if ((( sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) ||
150             ((comm->rank() == root) && (recvtype == MPI_DATATYPE_NULL))){
151     return MPI_ERR_TYPE;
152   } else if (( sendbuf != MPI_IN_PLACE) && (sendcount <0)){
153     return MPI_ERR_COUNT;
154   } else if ((comm->rank() == root) && (recvcounts == nullptr || displs == nullptr)) {
155     return MPI_ERR_ARG;
156   } else if (root < 0 || root >= comm->size()){
157     return MPI_ERR_ROOT;
158   } else if (request == nullptr){
159     return MPI_ERR_ARG;
160   }  else {
161     for (int i = 0; i < comm->size(); i++){
162       if((comm->rank() == root) && (recvcounts[i]<0))
163         return MPI_ERR_COUNT;
164     }
165
166     smpi_bench_end();
167     char* sendtmpbuf = static_cast<char*>(sendbuf);
168     int sendtmpcount = sendcount;
169     MPI_Datatype sendtmptype = sendtype;
170     if( (comm->rank() == root) && (sendbuf == MPI_IN_PLACE )) {
171       sendtmpcount=0;
172       sendtmptype=recvtype;
173     }
174
175     int rank         = simgrid::s4u::this_actor::get_pid();
176     int dt_size_recv = recvtype->is_replayable() ? 1 : recvtype->size();
177
178     std::vector<int>* trace_recvcounts = new std::vector<int>;
179     if (comm->rank() == root) {
180       for (int i = 0; i < comm->size(); i++) // copy data to avoid bad free
181         trace_recvcounts->push_back(recvcounts[i] * dt_size_recv);
182     }
183
184     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Gatherv":"PMPI_Igatherv",
185                        new simgrid::instr::VarCollTIData(
186                            request==MPI_REQUEST_IGNORED ? "gatherv":"igatherv", root,
187                            sendtmptype->is_replayable() ? sendtmpcount : sendtmpcount * sendtmptype->size(), nullptr,
188                            dt_size_recv, trace_recvcounts, simgrid::smpi::Datatype::encode(sendtmptype),
189                            simgrid::smpi::Datatype::encode(recvtype)));
190     if(request == MPI_REQUEST_IGNORED)
191       simgrid::smpi::Colls::gatherv(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcounts, displs, recvtype, root, comm);
192     else
193       simgrid::smpi::Colls::igatherv(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcounts, displs, recvtype, root, comm, request);
194     TRACE_smpi_comm_out(rank);
195     smpi_bench_begin();
196     return MPI_SUCCESS;
197   }
198 }
199
200 int PMPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
201                    void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm){
202   return PMPI_Iallgather(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, MPI_REQUEST_IGNORED);
203 }
204               
205 int PMPI_Iallgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
206                    void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request* request)
207 {
208   int retval = MPI_SUCCESS;
209
210   smpi_bench_end();
211
212   if (comm == MPI_COMM_NULL) {
213     retval = MPI_ERR_COMM;
214   } else if ((sendbuf == nullptr && sendcount > 0) || (recvbuf == nullptr)){
215     retval = MPI_ERR_BUFFER;
216   } else if ((( sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) ||
217             (recvtype == MPI_DATATYPE_NULL)){
218     retval = MPI_ERR_TYPE;
219   } else if ((( sendbuf != MPI_IN_PLACE) && (sendcount <0)) ||
220             (recvcount <0)){
221     retval = MPI_ERR_COUNT;
222   } else if (request == nullptr){
223     retval = MPI_ERR_ARG;
224   }  else {
225     if(sendbuf == MPI_IN_PLACE) {
226       sendbuf=static_cast<char*>(recvbuf)+recvtype->get_extent()*recvcount*comm->rank();
227       sendcount=recvcount;
228       sendtype=recvtype;
229     }
230     int rank = simgrid::s4u::this_actor::get_pid();
231
232     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Allgather":"PMPI_Iallggather",
233                        new simgrid::instr::CollTIData(
234                            request==MPI_REQUEST_IGNORED ? "allgather" : "iallgather", -1, -1.0, sendtype->is_replayable() ? sendcount : sendcount * sendtype->size(),
235                            recvtype->is_replayable() ? recvcount : recvcount * recvtype->size(),
236                            simgrid::smpi::Datatype::encode(sendtype), simgrid::smpi::Datatype::encode(recvtype)));
237     if(request == MPI_REQUEST_IGNORED)
238       simgrid::smpi::Colls::allgather(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm);
239     else
240       simgrid::smpi::Colls::iallgather(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request);
241     TRACE_smpi_comm_out(rank);
242   }
243   smpi_bench_begin();
244   return retval;
245 }
246
247 int PMPI_Allgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
248                    void *recvbuf, int *recvcounts, int *displs, MPI_Datatype recvtype, MPI_Comm comm){
249   return PMPI_Iallgatherv(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, MPI_REQUEST_IGNORED);
250 }
251
252 int PMPI_Iallgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
253                    void *recvbuf, int *recvcounts, int *displs, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request* request)
254 {
255   if (comm == MPI_COMM_NULL) {
256     return MPI_ERR_COMM;
257   } else if ((sendbuf == nullptr && sendcount > 0) || (recvbuf == nullptr)){
258     return MPI_ERR_BUFFER;
259   } else if (((sendbuf != MPI_IN_PLACE) && (sendtype == MPI_DATATYPE_NULL)) || (recvtype == MPI_DATATYPE_NULL)) {
260     return MPI_ERR_TYPE;
261   } else if (( sendbuf != MPI_IN_PLACE) && (sendcount <0)){
262     return MPI_ERR_COUNT;
263   } else if (recvcounts == nullptr || displs == nullptr) {
264     return MPI_ERR_ARG;
265   } else if (request == nullptr){
266     return MPI_ERR_ARG;
267   }  else {
268     for (int i = 0; i < comm->size(); i++){ // copy data to avoid bad free
269       if (recvcounts[i] < 0)
270         return MPI_ERR_COUNT;
271     }
272
273     smpi_bench_end();
274     if(sendbuf == MPI_IN_PLACE) {
275       sendbuf=static_cast<char*>(recvbuf)+recvtype->get_extent()*displs[comm->rank()];
276       sendcount=recvcounts[comm->rank()];
277       sendtype=recvtype;
278     }
279     int rank               = simgrid::s4u::this_actor::get_pid();
280     int dt_size_recv       = recvtype->is_replayable() ? 1 : recvtype->size();
281
282     std::vector<int>* trace_recvcounts = new std::vector<int>;
283     for (int i = 0; i < comm->size(); i++){ // copy data to avoid bad free
284       trace_recvcounts->push_back(recvcounts[i] * dt_size_recv);
285     }
286
287     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Allgatherv":"PMPI_Iallgatherv",
288                        new simgrid::instr::VarCollTIData(
289                            request==MPI_REQUEST_IGNORED ? "allgatherv" : "iallgatherv", -1, sendtype->is_replayable() ? sendcount : sendcount * sendtype->size(),
290                            nullptr, dt_size_recv, trace_recvcounts, simgrid::smpi::Datatype::encode(sendtype),
291                            simgrid::smpi::Datatype::encode(recvtype)));
292     if(request == MPI_REQUEST_IGNORED)
293       simgrid::smpi::Colls::allgatherv(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm);
294     else
295       simgrid::smpi::Colls::iallgatherv(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, request);
296     TRACE_smpi_comm_out(rank);
297     smpi_bench_begin();
298     return MPI_SUCCESS;
299   }
300 }
301
302 int PMPI_Scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
303                 void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm){
304   return PMPI_Iscatter(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, MPI_REQUEST_IGNORED);
305 }
306
307 int PMPI_Iscatter(void *sendbuf, int sendcount, MPI_Datatype sendtype,
308                 void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request* request)
309 {
310   if (comm == MPI_COMM_NULL) {
311     return MPI_ERR_COMM;
312   } else if (((comm->rank() == root) && (sendtype == MPI_DATATYPE_NULL || not sendtype->is_valid())) ||
313              ((recvbuf != MPI_IN_PLACE) && (recvtype == MPI_DATATYPE_NULL || not recvtype->is_valid()))) {
314     return MPI_ERR_TYPE;
315   } else if (((comm->rank() == root) && (sendcount < 0)) ||
316              ((recvbuf != MPI_IN_PLACE) && (recvcount < 0))) {
317     return MPI_ERR_COUNT;
318   } else if ((sendbuf == recvbuf) ||
319       ((comm->rank()==root) && sendcount>0 && (sendbuf == nullptr)) || 
320       (recvcount > 0 && recvbuf == nullptr)){
321     return MPI_ERR_BUFFER;
322   } else if (root < 0 || root >= comm->size()){
323     return MPI_ERR_ROOT;
324   } else if (request == nullptr){
325     return MPI_ERR_ARG;
326   } else {
327     smpi_bench_end();
328     if (recvbuf == MPI_IN_PLACE) {
329       recvtype  = sendtype;
330       recvcount = sendcount;
331     }
332     int rank = simgrid::s4u::this_actor::get_pid();
333
334     TRACE_smpi_comm_in(
335         rank, request==MPI_REQUEST_IGNORED?"PMPI_Scatter":"PMPI_Iscatter",
336         new simgrid::instr::CollTIData(
337             request==MPI_REQUEST_IGNORED ? "scatter" : "iscatter", root, -1.0,
338             (comm->rank() != root || sendtype->is_replayable()) ? sendcount : sendcount * sendtype->size(),
339             recvtype->is_replayable() ? recvcount : recvcount * recvtype->size(),
340             simgrid::smpi::Datatype::encode(sendtype), simgrid::smpi::Datatype::encode(recvtype)));
341     if(request == MPI_REQUEST_IGNORED)
342       simgrid::smpi::Colls::scatter(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm);
343     else
344       simgrid::smpi::Colls::iscatter(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, request);
345     TRACE_smpi_comm_out(rank);
346     smpi_bench_begin();
347     return MPI_SUCCESS;
348   }
349 }
350
351 int PMPI_Scatterv(void *sendbuf, int *sendcounts, int *displs,
352                  MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm){
353   return PMPI_Iscatterv(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype, root, comm, MPI_REQUEST_IGNORED);
354 }
355
356 int PMPI_Iscatterv(void *sendbuf, int *sendcounts, int *displs,
357                  MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request)
358 {
359   if (comm == MPI_COMM_NULL) {
360     return MPI_ERR_COMM;
361   } else if (sendcounts == nullptr || displs == nullptr) {
362     return MPI_ERR_ARG;
363   } else if (((comm->rank() == root) && (sendtype == MPI_DATATYPE_NULL)) ||
364              ((recvbuf != MPI_IN_PLACE) && (recvtype == MPI_DATATYPE_NULL))) {
365     return MPI_ERR_TYPE;
366   } else if (request == nullptr){
367     return MPI_ERR_ARG;
368   } else if (recvbuf != MPI_IN_PLACE && recvcount < 0){
369     return MPI_ERR_COUNT;
370   } else if (root < 0 || root >= comm->size()){
371     return MPI_ERR_ROOT;
372   } else {
373     if (comm->rank() == root){
374       if(recvbuf == MPI_IN_PLACE) {
375       recvtype  = sendtype;
376       recvcount = sendcounts[comm->rank()];
377       }
378       for (int i = 0; i < comm->size(); i++){
379         if(sendcounts[i]<0)
380           return MPI_ERR_COUNT;
381       }
382     }
383     smpi_bench_end();
384
385     int rank               = simgrid::s4u::this_actor::get_pid();
386     int dt_size_send       = sendtype->is_replayable() ? 1 : sendtype->size();
387
388     std::vector<int>* trace_sendcounts = new std::vector<int>;
389     if (comm->rank() == root) {
390       for (int i = 0; i < comm->size(); i++){ // copy data to avoid bad free
391         trace_sendcounts->push_back(sendcounts[i] * dt_size_send);
392       }
393     }
394
395     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Scatterv":"PMPI_Iscatterv",
396                        new simgrid::instr::VarCollTIData(
397                            request==MPI_REQUEST_IGNORED ? "scatterv":"iscatterv", root, dt_size_send, trace_sendcounts,
398                            recvtype->is_replayable() ? recvcount : recvcount * recvtype->size(), nullptr,
399                            simgrid::smpi::Datatype::encode(sendtype), simgrid::smpi::Datatype::encode(recvtype)));
400     if(request == MPI_REQUEST_IGNORED)
401       simgrid::smpi::Colls::scatterv(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype, root, comm);
402     else
403       simgrid::smpi::Colls::iscatterv(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype, root, comm, request);
404     TRACE_smpi_comm_out(rank);
405     smpi_bench_begin();
406     return MPI_SUCCESS;
407   }
408
409 }
410
411 int PMPI_Reduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm)
412 {
413   return PMPI_Ireduce(sendbuf, recvbuf, count, datatype, op, root, comm, MPI_REQUEST_IGNORED);
414 }
415
416 int PMPI_Ireduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm, MPI_Request* request)
417 {
418   if (comm == MPI_COMM_NULL) {
419     return MPI_ERR_COMM;
420   } if ((sendbuf == nullptr && count > 0) || ((comm->rank() == root) && recvbuf == nullptr)) {
421     return MPI_ERR_BUFFER;
422   } else if (datatype == MPI_DATATYPE_NULL || not datatype->is_valid()){
423     return MPI_ERR_TYPE;
424   } else if (op == MPI_OP_NULL) {
425     return MPI_ERR_OP;
426   } else if (request == nullptr){
427     return MPI_ERR_ARG;
428   } else if (root < 0 || root >= comm->size()){
429     return MPI_ERR_ROOT;
430   } else if (count < 0){
431     return MPI_ERR_COUNT;
432   } else {
433     smpi_bench_end();
434     int rank = simgrid::s4u::this_actor::get_pid();
435
436     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED ? "PMPI_Reduce":"PMPI_Ireduce",
437                        new simgrid::instr::CollTIData(request==MPI_REQUEST_IGNORED ? "reduce":"ireduce", root, 0,
438                                                       datatype->is_replayable() ? count : count * datatype->size(), -1,
439                                                       simgrid::smpi::Datatype::encode(datatype), ""));
440     if(request == MPI_REQUEST_IGNORED)
441       simgrid::smpi::Colls::reduce(sendbuf, recvbuf, count, datatype, op, root, comm);
442     else
443       simgrid::smpi::Colls::ireduce(sendbuf, recvbuf, count, datatype, op, root, comm, request);
444
445     TRACE_smpi_comm_out(rank);
446     smpi_bench_begin();
447     return MPI_SUCCESS;
448   }
449 }
450
451 int PMPI_Reduce_local(void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype, MPI_Op op){
452   int retval = 0;
453
454   smpi_bench_end();
455   if (datatype == MPI_DATATYPE_NULL || not datatype->is_valid()){
456     retval = MPI_ERR_TYPE;
457   } else if (op == MPI_OP_NULL) {
458     retval = MPI_ERR_OP;
459   } else if (count < 0){
460     retval = MPI_ERR_COUNT;
461   }  else {
462     op->apply(inbuf, inoutbuf, &count, datatype);
463     retval = MPI_SUCCESS;
464   }
465   smpi_bench_begin();
466   return retval;
467 }
468
469 int PMPI_Allreduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
470 {
471   return PMPI_Iallreduce(sendbuf, recvbuf, count, datatype, op, comm, MPI_REQUEST_IGNORED);
472 }
473
474 int PMPI_Iallreduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
475 {
476   if (comm == MPI_COMM_NULL) {
477     return MPI_ERR_COMM;
478   } if ((sendbuf == nullptr && count > 0) || (recvbuf == nullptr)) {
479     return MPI_ERR_BUFFER;
480   } else if (datatype == MPI_DATATYPE_NULL || not datatype->is_valid()) {
481     return MPI_ERR_TYPE;
482   } else if (count < 0){
483     return MPI_ERR_COUNT;
484   } else if (op == MPI_OP_NULL) {
485     return MPI_ERR_OP;
486   } else if (request == nullptr){
487     return MPI_ERR_ARG;
488   } else {
489     smpi_bench_end();
490     char* sendtmpbuf = static_cast<char*>(sendbuf);
491     if( sendbuf == MPI_IN_PLACE ) {
492       sendtmpbuf = static_cast<char*>(xbt_malloc(count*datatype->get_extent()));
493       simgrid::smpi::Datatype::copy(recvbuf, count, datatype,sendtmpbuf, count, datatype);
494     }
495     int rank = simgrid::s4u::this_actor::get_pid();
496
497     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED ?"PMPI_Allreduce":"PMPI_Iallreduce",
498                        new simgrid::instr::CollTIData(request==MPI_REQUEST_IGNORED ? "allreduce":"iallreduce", -1, 0,
499                                                       datatype->is_replayable() ? count : count * datatype->size(), -1,
500                                                       simgrid::smpi::Datatype::encode(datatype), ""));
501
502     if(request == MPI_REQUEST_IGNORED)
503       simgrid::smpi::Colls::allreduce(sendtmpbuf, recvbuf, count, datatype, op, comm);
504     else
505       simgrid::smpi::Colls::iallreduce(sendtmpbuf, recvbuf, count, datatype, op, comm, request);
506
507     if( sendbuf == MPI_IN_PLACE )
508       xbt_free(sendtmpbuf);
509
510     TRACE_smpi_comm_out(rank);
511     smpi_bench_begin();
512     return MPI_SUCCESS;
513   }
514 }
515
516 int PMPI_Scan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
517 {
518   return PMPI_Iscan(sendbuf, recvbuf, count, datatype, op, comm, MPI_REQUEST_IGNORED);
519 }
520
521 int PMPI_Iscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request* request)
522 {
523   int retval = 0;
524
525   smpi_bench_end();
526
527   if (comm == MPI_COMM_NULL) {
528     retval = MPI_ERR_COMM;
529   } else if (datatype == MPI_DATATYPE_NULL || not datatype->is_valid()){
530     retval = MPI_ERR_TYPE;
531   } else if (op == MPI_OP_NULL) {
532     retval = MPI_ERR_OP;
533   } else if (request == nullptr){
534     retval = MPI_ERR_ARG;
535   } else if (count < 0){
536     retval = MPI_ERR_COUNT;
537   } else {
538     int rank = simgrid::s4u::this_actor::get_pid();
539     void* sendtmpbuf = sendbuf;
540     if (sendbuf == MPI_IN_PLACE) {
541       sendtmpbuf = static_cast<void*>(xbt_malloc(count * datatype->size()));
542       memcpy(sendtmpbuf, recvbuf, count * datatype->size());
543     }
544     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED ? "PMPI_Scan" : "PMPI_Iscan", new simgrid::instr::Pt2PtTIData(
545                                            request==MPI_REQUEST_IGNORED ? "scan":"iscan", -1, 
546                                            datatype->is_replayable() ? count : count * datatype->size(),
547                                            simgrid::smpi::Datatype::encode(datatype)));
548
549     if(request == MPI_REQUEST_IGNORED)
550       retval = simgrid::smpi::Colls::scan(sendtmpbuf, recvbuf, count, datatype, op, comm);
551     else
552       retval = simgrid::smpi::Colls::iscan(sendtmpbuf, recvbuf, count, datatype, op, comm, request);
553
554     TRACE_smpi_comm_out(rank);
555     if (sendbuf == MPI_IN_PLACE)
556       xbt_free(sendtmpbuf);
557   }
558
559   smpi_bench_begin();
560   return retval;
561 }
562
563 int PMPI_Exscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
564 {
565   return PMPI_Iexscan(sendbuf, recvbuf, count, datatype, op, comm, MPI_REQUEST_IGNORED);
566 }
567
568 int PMPI_Iexscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request* request){
569   int retval = 0;
570
571   smpi_bench_end();
572
573   if (comm == MPI_COMM_NULL) {
574     retval = MPI_ERR_COMM;
575   } else if (not datatype->is_valid()) {
576     retval = MPI_ERR_TYPE;
577   } else if (op == MPI_OP_NULL) {
578     retval = MPI_ERR_OP;
579   } else if (request == nullptr){
580     retval = MPI_ERR_ARG;
581   } else if (count < 0){
582     retval = MPI_ERR_COUNT;
583   } else {
584     int rank         = simgrid::s4u::this_actor::get_pid();
585     void* sendtmpbuf = sendbuf;
586     if (sendbuf == MPI_IN_PLACE) {
587       sendtmpbuf = static_cast<void*>(xbt_malloc(count * datatype->size()));
588       memcpy(sendtmpbuf, recvbuf, count * datatype->size());
589     }
590
591     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED ? "PMPI_Exscan" : "PMPI_Iexscan", new simgrid::instr::Pt2PtTIData(
592                                            request==MPI_REQUEST_IGNORED ? "exscan":"iexscan", -1, datatype->is_replayable() ? count : count * datatype->size(),
593                                            simgrid::smpi::Datatype::encode(datatype)));
594
595     if(request == MPI_REQUEST_IGNORED)
596       retval = simgrid::smpi::Colls::exscan(sendtmpbuf, recvbuf, count, datatype, op, comm);
597     else
598       retval = simgrid::smpi::Colls::iexscan(sendtmpbuf, recvbuf, count, datatype, op, comm, request);
599
600     TRACE_smpi_comm_out(rank);
601     if (sendbuf == MPI_IN_PLACE)
602       xbt_free(sendtmpbuf);
603   }
604
605   smpi_bench_begin();
606   return retval;
607 }
608
609 int PMPI_Reduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
610 {
611   return PMPI_Ireduce_scatter(sendbuf, recvbuf, recvcounts, datatype, op, comm, MPI_REQUEST_IGNORED);
612 }
613
614 int PMPI_Ireduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
615 {
616   int retval = 0;
617
618   if (comm == MPI_COMM_NULL) {
619     retval = MPI_ERR_COMM;
620   } else if ((sendbuf == nullptr) || (recvbuf == nullptr)) {
621     retval =  MPI_ERR_BUFFER;
622   } else if (datatype == MPI_DATATYPE_NULL || not datatype->is_valid()){
623     retval = MPI_ERR_TYPE;
624   } else if (op == MPI_OP_NULL) {
625     retval = MPI_ERR_OP;
626   } else if (recvcounts == nullptr) {
627     retval = MPI_ERR_ARG;
628   } else if (request == nullptr){
629     retval = MPI_ERR_ARG;
630   } else {
631     for (int i = 0; i < comm->size(); i++) { // copy data to avoid bad free
632       if(recvcounts[i]<0)
633         return MPI_ERR_COUNT;
634     }
635     smpi_bench_end();
636
637     int rank                           = simgrid::s4u::this_actor::get_pid();
638     std::vector<int>* trace_recvcounts = new std::vector<int>;
639     int dt_send_size                   = datatype->is_replayable() ? 1 : datatype->size();
640     int totalcount    = 0;
641
642     for (int i = 0; i < comm->size(); i++) { // copy data to avoid bad free
643       trace_recvcounts->push_back(recvcounts[i] * dt_send_size);
644       totalcount += recvcounts[i];
645     }
646
647     void* sendtmpbuf = sendbuf;
648     if (sendbuf == MPI_IN_PLACE) {
649       sendtmpbuf = static_cast<void*>(xbt_malloc(totalcount * datatype->size()));
650       memcpy(sendtmpbuf, recvbuf, totalcount * datatype->size());
651     }
652
653     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED ? "PMPI_Reduce_scatter": "PMPI_Ireduce_scatter", new simgrid::instr::VarCollTIData(
654                                            request==MPI_REQUEST_IGNORED ? "reducescatter":"ireducescatter", -1, dt_send_size, nullptr, -1, trace_recvcounts,
655                                            simgrid::smpi::Datatype::encode(datatype), ""));
656
657     if(request == MPI_REQUEST_IGNORED)
658       simgrid::smpi::Colls::reduce_scatter(sendtmpbuf, recvbuf, recvcounts, datatype, op, comm);
659     else
660       simgrid::smpi::Colls::ireduce_scatter(sendtmpbuf, recvbuf, recvcounts, datatype, op, comm, request);
661
662     retval = MPI_SUCCESS;
663     TRACE_smpi_comm_out(rank);
664
665     if (sendbuf == MPI_IN_PLACE)
666       xbt_free(sendtmpbuf);
667     smpi_bench_begin();
668   }
669
670   return retval;
671 }
672
673 int PMPI_Reduce_scatter_block(void *sendbuf, void *recvbuf, int recvcount,
674                               MPI_Datatype datatype, MPI_Op op, MPI_Comm comm)
675 {
676   return PMPI_Ireduce_scatter_block(sendbuf, recvbuf, recvcount, datatype, op, comm, MPI_REQUEST_IGNORED);
677 }
678
679 int PMPI_Ireduce_scatter_block(void *sendbuf, void *recvbuf, int recvcount,
680                               MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request)
681 {
682   int retval;
683   smpi_bench_end();
684
685   if (comm == MPI_COMM_NULL) {
686     retval = MPI_ERR_COMM;
687   } else if (not datatype->is_valid()) {
688     retval = MPI_ERR_TYPE;
689   } else if (op == MPI_OP_NULL) {
690     retval = MPI_ERR_OP;
691   } else if (recvcount < 0) {
692     retval = MPI_ERR_ARG;
693   } else if (request == nullptr){
694     retval = MPI_ERR_ARG;
695   }  else {
696     int count = comm->size();
697
698     int rank                           = simgrid::s4u::this_actor::get_pid();
699     int dt_send_size                   = datatype->is_replayable() ? 1 : datatype->size();
700     std::vector<int>* trace_recvcounts = new std::vector<int>(recvcount * dt_send_size); // copy data to avoid bad free
701
702     void* sendtmpbuf       = sendbuf;
703     if (sendbuf == MPI_IN_PLACE) {
704       sendtmpbuf = static_cast<void*>(xbt_malloc(recvcount * count * datatype->size()));
705       memcpy(sendtmpbuf, recvbuf, recvcount * count * datatype->size());
706     }
707
708     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED ? "PMPI_Reduce_scatter_block":"PMPI_Ireduce_scatter_block",
709                        new simgrid::instr::VarCollTIData(request==MPI_REQUEST_IGNORED ? "reducescatter":"ireducescatter", -1, 0, nullptr, -1, trace_recvcounts,
710                                                          simgrid::smpi::Datatype::encode(datatype), ""));
711
712     int* recvcounts = new int[count];
713     for (int i      = 0; i < count; i++)
714       recvcounts[i] = recvcount;
715     if(request == MPI_REQUEST_IGNORED)
716       simgrid::smpi::Colls::reduce_scatter(sendtmpbuf, recvbuf, recvcounts, datatype, op, comm);
717     else
718       simgrid::smpi::Colls::ireduce_scatter(sendtmpbuf, recvbuf, recvcounts, datatype, op, comm, request);
719     delete[] recvcounts;
720     retval = MPI_SUCCESS;
721
722     TRACE_smpi_comm_out(rank);
723
724     if (sendbuf == MPI_IN_PLACE)
725       xbt_free(sendtmpbuf);
726   }
727
728   smpi_bench_begin();
729   return retval;
730 }
731 int PMPI_Alltoall(void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
732                   MPI_Datatype recvtype, MPI_Comm comm){
733   return PMPI_Ialltoall(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, MPI_REQUEST_IGNORED);
734 }
735                   
736 int PMPI_Ialltoall(void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
737                   MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
738 {
739   int retval = 0;
740   smpi_bench_end();
741
742   if (comm == MPI_COMM_NULL) {
743     retval = MPI_ERR_COMM;
744   } else if ((sendbuf == nullptr && sendcount > 0) || (recvbuf == nullptr && recvcount > 0)) {
745     retval = MPI_ERR_BUFFER;
746   } else if ((sendbuf != MPI_IN_PLACE && sendtype == MPI_DATATYPE_NULL) || recvtype == MPI_DATATYPE_NULL) {
747     retval = MPI_ERR_TYPE;
748   } else if ((sendbuf != MPI_IN_PLACE && sendcount < 0) || recvcount < 0){
749     retval = MPI_ERR_COUNT;
750   } else if (request == nullptr){
751     retval = MPI_ERR_ARG;
752   } else {
753     int rank                 = simgrid::s4u::this_actor::get_pid();
754     void* sendtmpbuf         = static_cast<char*>(sendbuf);
755     int sendtmpcount         = sendcount;
756     MPI_Datatype sendtmptype = sendtype;
757     if (sendbuf == MPI_IN_PLACE) {
758       sendtmpbuf = static_cast<void*>(xbt_malloc(recvcount * comm->size() * recvtype->size()));
759       memcpy(sendtmpbuf, recvbuf, recvcount * comm->size() * recvtype->size());
760       sendtmpcount = recvcount;
761       sendtmptype  = recvtype;
762     }
763
764     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Alltoall":"PMPI_Ialltoall",
765                        new simgrid::instr::CollTIData(
766                            request==MPI_REQUEST_IGNORED ? "alltoall" : "ialltoall", -1, -1.0,
767                            sendtmptype->is_replayable() ? sendtmpcount : sendtmpcount * sendtmptype->size(),
768                            recvtype->is_replayable() ? recvcount : recvcount * recvtype->size(),
769                            simgrid::smpi::Datatype::encode(sendtmptype), simgrid::smpi::Datatype::encode(recvtype)));
770     if(request == MPI_REQUEST_IGNORED)
771       retval = simgrid::smpi::Colls::alltoall(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcount, recvtype, comm);
772     else
773       retval = simgrid::smpi::Colls::ialltoall(sendtmpbuf, sendtmpcount, sendtmptype, recvbuf, recvcount, recvtype, comm, request);
774
775     TRACE_smpi_comm_out(rank);
776
777     if (sendbuf == MPI_IN_PLACE)
778       xbt_free(sendtmpbuf);
779   }
780
781   smpi_bench_begin();
782   return retval;
783 }
784
785 int PMPI_Alltoallv(void* sendbuf, int* sendcounts, int* senddisps, MPI_Datatype sendtype, void* recvbuf,
786                    int* recvcounts, int* recvdisps, MPI_Datatype recvtype, MPI_Comm comm)
787 {
788   return PMPI_Ialltoallv(sendbuf, sendcounts, senddisps, sendtype, recvbuf, recvcounts, recvdisps, recvtype, comm, MPI_REQUEST_IGNORED);
789 }
790
791 int PMPI_Ialltoallv(void* sendbuf, int* sendcounts, int* senddisps, MPI_Datatype sendtype, void* recvbuf,
792                    int* recvcounts, int* recvdisps, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request)
793 {
794   int retval = 0;
795   if (comm == MPI_COMM_NULL) {
796     retval = MPI_ERR_COMM;
797   } else if (sendbuf == nullptr || recvbuf == nullptr) {
798     retval = MPI_ERR_BUFFER;
799   } else if ((sendbuf != MPI_IN_PLACE && sendtype == MPI_DATATYPE_NULL)  || recvtype == MPI_DATATYPE_NULL) {
800     retval = MPI_ERR_TYPE;
801   } else if ((sendbuf != MPI_IN_PLACE && (sendcounts == nullptr || senddisps == nullptr)) || recvcounts == nullptr ||
802              recvdisps == nullptr) {
803     retval = MPI_ERR_ARG;
804   } else if (request == nullptr){
805     retval = MPI_ERR_ARG;
806   }  else {
807     int rank                           = simgrid::s4u::this_actor::get_pid();
808     int size               = comm->size();
809     for (int i = 0; i < size; i++) {
810       if (recvcounts[i] <0 || (sendbuf != MPI_IN_PLACE && sendcounts[i]<0))
811         return MPI_ERR_COUNT;
812     }
813     smpi_bench_end();
814     int send_size                      = 0;
815     int recv_size                      = 0;
816     std::vector<int>* trace_sendcounts = new std::vector<int>;
817     std::vector<int>* trace_recvcounts = new std::vector<int>;
818     int dt_size_recv       = recvtype->size();
819
820     void* sendtmpbuf         = static_cast<char*>(sendbuf);
821     int* sendtmpcounts       = sendcounts;
822     int* sendtmpdisps        = senddisps;
823     MPI_Datatype sendtmptype = sendtype;
824     int maxsize              = 0;
825     for (int i = 0; i < size; i++) { // copy data to avoid bad free
826       recv_size += recvcounts[i] * dt_size_recv;
827       trace_recvcounts->push_back(recvcounts[i] * dt_size_recv);
828       if (((recvdisps[i] + recvcounts[i]) * dt_size_recv) > maxsize)
829         maxsize = (recvdisps[i] + recvcounts[i]) * dt_size_recv;
830     }
831
832     if (sendbuf == MPI_IN_PLACE) {
833       sendtmpbuf = static_cast<void*>(xbt_malloc(maxsize));
834       memcpy(sendtmpbuf, recvbuf, maxsize);
835       sendtmpcounts = static_cast<int*>(xbt_malloc(size * sizeof(int)));
836       memcpy(sendtmpcounts, recvcounts, size * sizeof(int));
837       sendtmpdisps = static_cast<int*>(xbt_malloc(size * sizeof(int)));
838       memcpy(sendtmpdisps, recvdisps, size * sizeof(int));
839       sendtmptype = recvtype;
840     }
841
842     int dt_size_send = sendtmptype->size();
843
844     for (int i = 0; i < size; i++) { // copy data to avoid bad free
845       send_size += sendtmpcounts[i] * dt_size_send;
846       trace_sendcounts->push_back(sendtmpcounts[i] * dt_size_send);
847     }
848
849     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Alltoallv":"PMPI_Ialltoallv",
850                        new simgrid::instr::VarCollTIData(request==MPI_REQUEST_IGNORED ? "alltoallv":"ialltoallv", -1, send_size, trace_sendcounts, recv_size,
851                                                          trace_recvcounts, simgrid::smpi::Datatype::encode(sendtmptype),
852                                                          simgrid::smpi::Datatype::encode(recvtype)));
853
854     if(request == MPI_REQUEST_IGNORED)
855       retval = simgrid::smpi::Colls::alltoallv(sendtmpbuf, sendtmpcounts, sendtmpdisps, sendtmptype, recvbuf, recvcounts,
856                                     recvdisps, recvtype, comm);
857     else
858       retval = simgrid::smpi::Colls::ialltoallv(sendtmpbuf, sendtmpcounts, sendtmpdisps, sendtmptype, recvbuf, recvcounts,
859                                     recvdisps, recvtype, comm, request);
860     TRACE_smpi_comm_out(rank);
861
862     if (sendbuf == MPI_IN_PLACE) {
863       xbt_free(sendtmpbuf);
864       xbt_free(sendtmpcounts);
865       xbt_free(sendtmpdisps);
866     }
867     smpi_bench_begin();
868   }
869   return retval;
870 }
871
872 int PMPI_Alltoallw(void* sendbuf, int* sendcounts, int* senddisps, MPI_Datatype* sendtypes, void* recvbuf,
873                    int* recvcounts, int* recvdisps, MPI_Datatype* recvtypes, MPI_Comm comm)
874 {
875   return PMPI_Ialltoallw(sendbuf, sendcounts, senddisps, sendtypes, recvbuf, recvcounts, recvdisps, recvtypes, comm, MPI_REQUEST_IGNORED);
876 }
877
878 int PMPI_Ialltoallw(void* sendbuf, int* sendcounts, int* senddisps, MPI_Datatype* sendtypes, void* recvbuf,
879                    int* recvcounts, int* recvdisps, MPI_Datatype* recvtypes, MPI_Comm comm, MPI_Request *request)
880 {
881   int retval = 0;
882   if (comm == MPI_COMM_NULL) {
883     retval = MPI_ERR_COMM;
884   } else if (sendbuf == nullptr || recvbuf == nullptr) {
885     retval = MPI_ERR_BUFFER;
886   } else if ((sendbuf != MPI_IN_PLACE && sendtypes == nullptr)  || recvtypes == nullptr) {
887     retval = MPI_ERR_TYPE;
888   } else if ((sendbuf != MPI_IN_PLACE && (sendcounts == nullptr || senddisps == nullptr)) || recvcounts == nullptr ||
889              recvdisps == nullptr) {
890     retval = MPI_ERR_ARG;
891   } else if (request == nullptr){
892     retval = MPI_ERR_ARG;
893   }  else {
894     smpi_bench_end();
895     int rank                           = simgrid::s4u::this_actor::get_pid();
896     int size                           = comm->size();
897     for (int i = 0; i < size; i++) { // copy data to avoid bad free
898       if (recvcounts[i] <0 || (sendbuf != MPI_IN_PLACE && sendcounts[i]<0))
899         return MPI_ERR_COUNT;
900     }
901     int send_size                      = 0;
902     int recv_size                      = 0;
903     std::vector<int>* trace_sendcounts = new std::vector<int>;
904     std::vector<int>* trace_recvcounts = new std::vector<int>;
905
906     void* sendtmpbuf           = static_cast<char*>(sendbuf);
907     int* sendtmpcounts         = sendcounts;
908     int* sendtmpdisps          = senddisps;
909     MPI_Datatype* sendtmptypes = sendtypes;
910     unsigned long maxsize                = 0;
911     for (int i = 0; i < size; i++) { // copy data to avoid bad free
912       if(recvtypes[i]==MPI_DATATYPE_NULL){
913         delete trace_recvcounts;
914         delete trace_sendcounts;
915         return MPI_ERR_TYPE;
916       }
917       recv_size += recvcounts[i] * recvtypes[i]->size();
918       trace_recvcounts->push_back(recvcounts[i] * recvtypes[i]->size());
919       if ((recvdisps[i] + (recvcounts[i] * recvtypes[i]->size())) > maxsize)
920         maxsize = recvdisps[i] + (recvcounts[i] * recvtypes[i]->size());
921     }
922
923     if (sendbuf == MPI_IN_PLACE) {
924       sendtmpbuf = static_cast<void*>(xbt_malloc(maxsize));
925       memcpy(sendtmpbuf, recvbuf, maxsize);
926       sendtmpcounts = static_cast<int*>(xbt_malloc(size * sizeof(int)));
927       memcpy(sendtmpcounts, recvcounts, size * sizeof(int));
928       sendtmpdisps = static_cast<int*>(xbt_malloc(size * sizeof(int)));
929       memcpy(sendtmpdisps, recvdisps, size * sizeof(int));
930       sendtmptypes = static_cast<MPI_Datatype*>(xbt_malloc(size * sizeof(MPI_Datatype)));
931       memcpy(sendtmptypes, recvtypes, size * sizeof(MPI_Datatype));
932     }
933
934     for (int i = 0; i < size; i++) { // copy data to avoid bad free
935       send_size += sendtmpcounts[i] * sendtmptypes[i]->size();
936       trace_sendcounts->push_back(sendtmpcounts[i] * sendtmptypes[i]->size());
937     }
938
939     TRACE_smpi_comm_in(rank, request==MPI_REQUEST_IGNORED?"PMPI_Alltoallw":"PMPI_Ialltoallw",
940                        new simgrid::instr::VarCollTIData(request==MPI_REQUEST_IGNORED ? "alltoallv":"ialltoallv", -1, send_size, trace_sendcounts, recv_size,
941                                                          trace_recvcounts, simgrid::smpi::Datatype::encode(sendtmptypes[0]),
942                                                          simgrid::smpi::Datatype::encode(recvtypes[0])));
943
944     if(request == MPI_REQUEST_IGNORED)
945       retval = simgrid::smpi::Colls::alltoallw(sendtmpbuf, sendtmpcounts, sendtmpdisps, sendtmptypes, recvbuf, recvcounts,
946                                     recvdisps, recvtypes, comm);
947     else
948       retval = simgrid::smpi::Colls::ialltoallw(sendtmpbuf, sendtmpcounts, sendtmpdisps, sendtmptypes, recvbuf, recvcounts,
949                                     recvdisps, recvtypes, comm, request);
950     TRACE_smpi_comm_out(rank);
951
952     if (sendbuf == MPI_IN_PLACE) {
953       xbt_free(sendtmpbuf);
954       xbt_free(sendtmpcounts);
955       xbt_free(sendtmpdisps);
956       xbt_free(sendtmptypes);
957     }
958     smpi_bench_begin();
959   }
960   return retval;
961 }