Ice Sheet System Model  4.18
Code documentation
issmmpi.cpp
Go to the documentation of this file.
1 /* \file issmmpi.cpp
2  * \brief: implementation of all the mpi wrappers that ISSM requires. The goal is to control
3  * which MPI layer we are using at compile time: the standard mpi, the autodiff mpi or no mpi at all.
4  */
5 
6 #ifdef HAVE_CONFIG_H
7  #include <config.h>
8 #else
9 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
10 #endif
11 
12 #include <cassert>
13 #include <cstring> // for memcpy
14 
15 #include "./issmmpi.h"
16 
17 #if defined(_HAVE_MPI_) && defined(_HAVE_CODIPACK_)
18 MpiTypes* mpiTypes;
19 #endif
20 
21 #include "../../shared/Numerics/types.h"
22 
23 #ifndef _HAVE_MPI_
25 size_t sizeHelper(ISSM_MPI_Datatype type) { /*{{{*/
26 
27  switch(type) {
28  case ISSM_MPI_CHAR:
29  return sizeof(char);
30  break;
31  case ISSM_MPI_DOUBLE:
32  return sizeof(double);
33  break;
34  case ISSM_MPI_INT:
35  return sizeof(int);
36  break;
37  default:
38  assert(0);
39  break;
40  }
41  return 0;
42 }/*}}}*/
43 #endif
44 
45 int ISSM_MPI_Allgather(void *sendbuf, int sendcount, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcount, ISSM_MPI_Datatype recvtype, ISSM_MPI_Comm comm) { /*{{{*/
46  int rc=0;
47  assert(sendcount==recvcount || sendtype==recvtype); // we handle only identical representations
48 #ifdef _HAVE_MPI_
49 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
50  rc=AMPI_Allgather(sendbuf,
51  sendcount,
52  sendtype,
53  recvbuf,
54  recvcount,
55  recvtype,
56  comm);
57 # else
58  rc=MPI_Allgather(sendbuf,
59  sendcount,
60  sendtype,
61  recvbuf,
62  recvcount,
63  recvtype,
64  comm);
65 # endif
66 #else
67 # ifdef _HAVE_AD_
68  if (sendtype==ISSM_MPI_DOUBLE) {
69  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
70  IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf;
71  for(int i=0;i<sendcount;++i) activeRecvBuf[i]=activeSendBuf[i];
72  }
73  else
74 # endif
75  memcpy(recvbuf,sendbuf,sizeHelper(sendtype)*sendcount);
76 #endif
77  return rc;
78 } /*}}}*/
79 int ISSM_MPI_Allgatherv(void *sendbuf, int sendcount, ISSM_MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs, ISSM_MPI_Datatype recvtype, ISSM_MPI_Comm comm) { /*{{{*/
80  int rc=0;
81  assert(sendtype==recvtype); // we handle only identical representations
82 #ifdef _HAVE_MPI_
83 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
84  rc=AMPI_Allgatherv(sendbuf,
85  sendcount,
86  sendtype,
87  recvbuf,
88  recvcounts,
89  displs,
90  recvtype,
91  comm);
92 # else
93  rc=MPI_Allgatherv(sendbuf,
94  sendcount,
95  sendtype,
96  recvbuf,
97  recvcounts,
98  displs,
99  recvtype,
100  comm);
101 # endif
102 #else
103  assert(sendcount==recvcounts[0]); // we handle only identical representations
104 # ifdef _HAVE_AD_
105  if (sendtype==ISSM_MPI_DOUBLE) {
106  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
107  IssmDouble* activeRecvBuf=(IssmDouble*)(recvbuf)+displs[0];
108  for(int i=0;i<sendcount;++i) activeRecvBuf[i]=activeSendBuf[i];
109  }
110  else
111 # endif
112  memcpy((char*)recvbuf+(sizeHelper(recvtype)*displs[0]),sendbuf,sizeHelper(sendtype)*sendcount);
113 #endif
114  return rc;
115 }/*}}}*/
116 int ISSM_MPI_Allreduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, ISSM_MPI_Comm comm){/*{{{*/
117 
118  int rc=0;
119 #ifdef _HAVE_MPI_
120 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
121  rc=AMPI_Allreduce(sendbuf,
122  recvbuf,
123  count,
124  datatype,
125  op,
126  comm);
127 # else
128  rc=MPI_Allreduce(sendbuf,
129  recvbuf,
130  count,
131  datatype,
132  op,
133  comm);
134 # endif
135 #else
136 #ifdef _HAVE_AD_
137  if (datatype==ISSM_MPI_DOUBLE) {
138  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
139  IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf;
140  for(int i=0;i<count;++i) activeRecvBuf[i]=activeSendBuf[i];
141  }
142  else
143 # endif
144  memcpy(recvbuf,sendbuf,sizeHelper(datatype)*count);
145 #endif
146  return rc;
147 }/*}}}*/
148 int ISSM_MPI_Barrier(ISSM_MPI_Comm comm){ /*{{{*/
149 
150  int rc=0;
151 #ifdef _HAVE_MPI_
152 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
153  rc=AMPI_Barrier(comm);
154 # else
155  rc=MPI_Barrier(comm);
156 # endif
157 #else
158 // do nothing
159 #endif
160  return rc;
161 }/*}}}*/
162 int ISSM_MPI_Bcast(void *buffer, int count, ISSM_MPI_Datatype datatype, int root, ISSM_MPI_Comm comm){ /*{{{*/
163 
164  int rc=0;
165 #ifdef _HAVE_MPI_
166 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
167  rc=AMPI_Bcast(buffer,
168  count,
169  datatype,
170  root,
171  comm);
172 # else
173  rc=MPI_Bcast(buffer,
174  count,
175  datatype,
176  root,
177  comm);
178 # endif
179 #else
180 // nothing to be done here
181 #endif
182  return rc;
183 }/*}}}*/
185 
186  int rc=0;
187 #ifdef _HAVE_MPI_
188 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
189  assert(0); // to be implemented
190 # else
191  rc=MPI_Comm_free(comm);
192 # endif
193 #else
194 // do nothing
195 #endif
196  return rc;
197 }/*}}}*/
198 int ISSM_MPI_Comm_rank(ISSM_MPI_Comm comm, int *rank){ /*{{{*/
199 
200  int rc=0;
201 #ifdef _HAVE_MPI_
202  rc=MPI_Comm_rank(comm,
203  rank);
204 #else
205  *rank=0;
206 #endif
207  return rc;
208 }/*}}}*/
209 int ISSM_MPI_Comm_size( ISSM_MPI_Comm comm, int *size){ /*{{{*/
210 
211  int rc=0;
212 #ifdef _HAVE_MPI_
213  rc=MPI_Comm_size(comm,
214  size);
215 #else
216  *size=1;
217 #endif
218  return rc;
219 }/*}}}*/
220 int ISSM_MPI_Finalize(void){ /*{{{*/
221 
222  int rc=0;
223  #ifdef _HAVE_MPI_
224  #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
225  #if defined(_HAVE_ADJOINTMPI_)
226  rc=AMPI_Finalize();
227  #elif defined(_HAVE_MEDIPACK_)
228  /*Old implementation*/
229  //TOOL::finalize();
230  /*New implementation*/
231  delete mpiTypes;
232  rc=AMPI_Finalize();
233  #else
234  rc=AMPI_Finalize_NT();
235  #endif
236  #else
237  rc=MPI_Finalize();
238  #endif
239  #endif
240  return rc;
241 }/*}}}*/
242 int ISSM_MPI_Gather(void *sendbuf, int sendcnt, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcnt, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm){ /*{{{*/
243 
244  int rc=0;
245  assert(sendtype==recvtype && sendcnt==recvcnt); // we handle only identical representations
246 #ifdef _HAVE_MPI_
247 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
248  rc=AMPI_Gather(sendbuf,
249  sendcnt,
250  sendtype,
251  recvbuf,
252  recvcnt,
253  recvtype,
254  root,
255  comm);
256 # else
257  rc=MPI_Gather(sendbuf,
258  sendcnt,
259  sendtype,
260  recvbuf,
261  recvcnt,
262  recvtype,
263  root,
264  comm);
265 # endif
266 #else
267 # ifdef _HAVE_AD_
268  if (sendtype==ISSM_MPI_DOUBLE) {
269  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
270  IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf;
271  for(int i=0;i<sendcnt;++i) activeRecvBuf[i]=activeSendBuf[i];
272  }
273  else
274 # endif
275  memcpy(recvbuf,sendbuf,sizeHelper(sendtype)*sendcnt);
276 #endif
277  return rc;
278 }/*}}}*/
279 int ISSM_MPI_Gatherv(void *sendbuf, int sendcnt, ISSM_MPI_Datatype sendtype, void *recvbuf, int *recvcnts, int *displs, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm){/*{{{*/
280 
281  int rc=0;
282  assert(sendtype==recvtype); // we handle only identical representations
283 #ifdef _HAVE_MPI_
284 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
285  rc=AMPI_Gatherv(sendbuf,
286  sendcnt,
287  sendtype,
288  recvbuf,
289  recvcnts,
290  displs,
291  recvtype,
292  root,
293  comm);
294 # else
295  rc=MPI_Gatherv(sendbuf,
296  sendcnt,
297  sendtype,
298  recvbuf,
299  recvcnts,
300  displs,
301  recvtype,
302  root,
303  comm);
304 # endif
305 #else
306  assert(sendcnt==recvcnts[0]); // we handle only identical representations
307 #ifdef _HAVE_AD_
308  if (sendtype==ISSM_MPI_DOUBLE) {
309  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
310  IssmDouble* activeRecvBuf=(IssmDouble*)(recvbuf)+displs[0];
311  for(int i=0;i<sendcnt;++i) activeRecvBuf[i]=activeSendBuf[i];
312  }
313  else
314 # endif
315  memcpy((char*)recvbuf+(sizeHelper(recvtype)*displs[0]),sendbuf,sizeHelper(sendtype)*sendcnt);
316 #endif
317  return rc;
318 }/*}}}*/
319 int ISSM_MPI_Init(int *argc, char ***argv){ /*{{{*/
320 
321  int rc=0;
322  #ifdef _HAVE_MPI_
323  #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
324  #if defined(_HAVE_ADJOINTMPI_)
325  rc=AMPI_Init(argc,argv);
326  #elif defined(_HAVE_MEDIPACK_)
327  rc=AMPI_Init(argc,argv);
328  /*Old implementation of Medipack*/
329  //TOOL::init();
330  /*New*/
331  //MpiTypes* mpiTypes;
332  mpiTypes = new MpiTypes();
333  #else
334  rc=AMPI_Init_NT(argc,argv);
335  #endif
336  #else
337  rc=MPI_Init(argc,argv);
338  #endif
339  #endif
340  return rc;
341 }/*}}}*/
342 int ISSM_MPI_Recv(void *buf, int count, ISSM_MPI_Datatype datatype, int source, int tag, ISSM_MPI_Comm comm, ISSM_MPI_Status *status){ /*{{{*/
343 
344  int rc=0;
345 #ifdef _HAVE_MPI_
346 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
347  rc=AMPI_Recv(buf,
348  count,
349  datatype,
350  source,
351  tag,
352  #if !defined(_HAVE_ADJOINTMPI_) && !defined(_HAVE_MEDIPACK_)
353  AMPI_FROM_SEND, // as long as there are no other variants
354  #endif
355  comm,
356  status);
357 # else
358  rc=MPI_Recv(buf,
359  count,
360  datatype,
361  source,
362  tag,
363  comm,
364  status);
365 # endif
366 #else
367 // nothing to be done here
368 // as long as nobody tries to do anything with 'status'
369 // we won't do anything to it here either
370 #endif
371  return rc;
372 }/*}}}*/
373 int ISSM_MPI_Reduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, int root, ISSM_MPI_Comm comm){ /*{{{*/
374 
375  int rc=0;
376 #ifdef _HAVE_MPI_
377 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
378  rc=AMPI_Reduce(sendbuf,
379  recvbuf,
380  count,
381  datatype,
382  op,
383  root,
384  comm);
385 # else
386  rc=MPI_Reduce(sendbuf,
387  recvbuf,
388  count,
389  datatype,
390  op,
391  root,
392  comm);
393 # endif
394 #else
395 # ifdef _HAVE_AD_
396  if (datatype==ISSM_MPI_DOUBLE) {
397  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
398  IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf;
399  for(int i=0;i<count;++i) activeRecvBuf[i]=activeSendBuf[i];
400  }
401  else
402 # endif
403  memcpy(recvbuf,sendbuf,sizeHelper(datatype)*count);
404 #endif
405  return rc;
406 }/*}}}*/
407 int ISSM_MPI_Scatter(void *sendbuf, int sendcnt, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcnt, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm){ /*{{{*/
408 
409  int rc=0;
410  assert(sendtype==recvtype && sendcnt==recvcnt); // we handle only identical representations
411 #ifdef _HAVE_MPI_
412 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
413  rc=AMPI_Scatter(sendbuf,
414  sendcnt,
415  sendtype,
416  recvbuf,
417  recvcnt,
418  recvtype,
419  root,
420  comm);
421 # else
422  rc=MPI_Scatter(sendbuf,
423  sendcnt,
424  sendtype,
425  recvbuf,
426  recvcnt,
427  recvtype,
428  root,
429  comm);
430 # endif
431 #else
432 # ifdef _HAVE_AD_
433  if (sendtype==ISSM_MPI_DOUBLE) {
434  IssmDouble* activeSendBuf=(IssmDouble*)sendbuf;
435  IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf;
436  for(int i=0;i<recvcnt;++i) activeRecvBuf[i]=activeSendBuf[i];
437  }
438  else
439 # endif
440  memcpy(recvbuf,sendbuf,sizeHelper(sendtype)*recvcnt);
441 #endif
442  return rc;
443 }/*}}}*/
444 int ISSM_MPI_Scatterv(void *sendbuf, int *sendcnts, int *displs, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcnt, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm){ /*{{{*/
445 
446  int rc=0;
447  assert(sendtype==recvtype); // we handle only identical representations
448 #ifdef _HAVE_MPI_
449 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
450  rc=AMPI_Scatterv(sendbuf,
451  sendcnts,
452  displs,
453  sendtype,
454  recvbuf,
455  recvcnt,
456  recvtype,
457  root,
458  comm);
459 # else
460  rc=MPI_Scatterv(sendbuf,
461  sendcnts,
462  displs,
463  sendtype,
464  recvbuf,
465  recvcnt,
466  recvtype,
467  root,
468  comm);
469 # endif
470 #else
471  assert(sendcnts[0]==recvcnt); // we handle only identical representations
472 # ifdef _HAVE_AD_
473  if (sendtype==ISSM_MPI_DOUBLE) {
474  IssmDouble* activeSendBuf=(IssmDouble*)(sendbuf)+displs[0];
475  IssmDouble* activeRecvBuf=(IssmDouble*)recvbuf;
476  for(int i=0;i<recvcnt;++i) activeRecvBuf[i]=activeSendBuf[i];
477  }
478  else
479 # endif
480  memcpy(recvbuf,(char*)sendbuf+(sizeHelper(sendtype)*displs[0]),sizeHelper(sendtype)*recvcnt);
481 #endif
482  return rc;
483 }/*}}}*/
484 int ISSM_MPI_Send(void *buf, int count, ISSM_MPI_Datatype datatype, int dest, int tag, ISSM_MPI_Comm comm){ /*{{{*/
485 
486  int rc=0;
487 #ifdef _HAVE_MPI_
488 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
489  rc=AMPI_Send(buf,
490  count,
491  datatype,
492  dest,
493  tag,
494  #if !defined(_HAVE_ADJOINTMPI_) && !defined(_HAVE_MEDIPACK_)
495  AMPI_TO_RECV, // as long as there are no other variants
496  #endif
497  comm);
498 # else
499  rc=MPI_Send(buf,
500  count,
501  datatype,
502  dest,
503  tag,
504  comm);
505 # endif
506 #else
507 // nothing to be done here
508 #endif
509  return rc;
510 }/*}}}*/
511 double ISSM_MPI_Wtime(void){/*{{{*/
512 
513 #ifdef _HAVE_MPI_
514  return MPI_Wtime();
515 #else
516  assert(0); // to be implemented
517  return 0.0;
518 #endif
519 }/*}}}*/
520 void ISSM_MPI_ContiguousInAdolc(size_t aSize) { /*{{{*/
521 
522 #ifdef _HAVE_ADOLC_
523  ensureContiguousLocations(aSize);
524 #else
525  fprintf(stderr, "*** Codipack ISSM_MPI_ContiguousInAdolc()\n");
526 #endif
527 }/*}}}*/
528 int ISSM_MPI_Comm_split(ISSM_MPI_Comm comm, int color, int key, ISSM_MPI_Comm *newcomm){ /*{{{*/
529 
530 int rc=0;
531 #ifdef _HAVE_MPI_
532 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
533 rc=MPI_Comm_split(comm, color, key, newcomm);
534 #else
535 rc=MPI_Comm_split(comm, color, key, newcomm);
536 #endif
537 #else
538 // nothing to be done here
539 #endif
540  return rc;
541 }/*}}}*/
542 int ISSM_MPI_Intercomm_create(ISSM_MPI_Comm comm,int local_leader,ISSM_MPI_Comm peer_comm, int remote_leader, int tag,ISSM_MPI_Comm *newintercomm){ /*{{{*/
543 
544  int rc=0;
545 #ifdef _HAVE_MPI_
546 #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
547  rc=MPI_Intercomm_create(comm,local_leader,peer_comm,remote_leader,tag,newintercomm);
548 #else
549  rc=MPI_Intercomm_create(comm,local_leader,peer_comm,remote_leader,tag,newintercomm);
550 #endif
551 #else
552  // nothing to be done here
553 #endif
554  return rc;
555 }/*}}}*/
ISSM_MPI_Comm_split
int ISSM_MPI_Comm_split(ISSM_MPI_Comm comm, int color, int key, ISSM_MPI_Comm *newcomm)
Definition: issmmpi.cpp:528
IssmDouble
double IssmDouble
Definition: types.h:37
ISSM_MPI_Allreduce
int ISSM_MPI_Allreduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:116
ISSM_MPI_Gatherv
int ISSM_MPI_Gatherv(void *sendbuf, int sendcnt, ISSM_MPI_Datatype sendtype, void *recvbuf, int *recvcnts, int *displs, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:279
ISSM_MPI_Datatype
int ISSM_MPI_Datatype
Definition: issmmpi.h:119
ISSM_MPI_Comm_free
int ISSM_MPI_Comm_free(ISSM_MPI_Comm *comm)
Definition: issmmpi.cpp:184
ISSM_MPI_Comm_rank
int ISSM_MPI_Comm_rank(ISSM_MPI_Comm comm, int *rank)
Definition: issmmpi.cpp:198
ISSM_MPI_DOUBLE
#define ISSM_MPI_DOUBLE
Definition: issmmpi.h:125
ISSM_MPI_INT
#define ISSM_MPI_INT
Definition: issmmpi.h:127
issmmpi.h
ISSM_MPI_Finalize
int ISSM_MPI_Finalize(void)
Definition: issmmpi.cpp:220
ISSM_MPI_Send
int ISSM_MPI_Send(void *buf, int count, ISSM_MPI_Datatype datatype, int dest, int tag, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:484
ISSM_MPI_ContiguousInAdolc
void ISSM_MPI_ContiguousInAdolc(size_t aSize)
Definition: issmmpi.cpp:520
ISSM_MPI_Status
int ISSM_MPI_Status
Definition: issmmpi.h:121
ISSM_MPI_Intercomm_create
int ISSM_MPI_Intercomm_create(ISSM_MPI_Comm comm, int local_leader, ISSM_MPI_Comm peer_comm, int remote_leader, int tag, ISSM_MPI_Comm *newintercomm)
Definition: issmmpi.cpp:542
ISSM_MPI_Init
int ISSM_MPI_Init(int *argc, char ***argv)
Definition: issmmpi.cpp:319
ISSM_MPI_Bcast
int ISSM_MPI_Bcast(void *buffer, int count, ISSM_MPI_Datatype datatype, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:162
sizeHelper
size_t sizeHelper(ISSM_MPI_Datatype type)
Definition: issmmpi.cpp:25
ISSM_MPI_Allgather
int ISSM_MPI_Allgather(void *sendbuf, int sendcount, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcount, ISSM_MPI_Datatype recvtype, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:45
ISSM_MPI_CHAR
#define ISSM_MPI_CHAR
Definition: issmmpi.h:124
ISSM_MPI_Wtime
double ISSM_MPI_Wtime(void)
Definition: issmmpi.cpp:511
ISSM_MPI_Comm
int ISSM_MPI_Comm
Definition: issmmpi.h:118
ISSM_MPI_Allgatherv
int ISSM_MPI_Allgatherv(void *sendbuf, int sendcount, ISSM_MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs, ISSM_MPI_Datatype recvtype, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:79
ISSM_MPI_Barrier
int ISSM_MPI_Barrier(ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:148
ISSM_MPI_Recv
int ISSM_MPI_Recv(void *buf, int count, ISSM_MPI_Datatype datatype, int source, int tag, ISSM_MPI_Comm comm, ISSM_MPI_Status *status)
Definition: issmmpi.cpp:342
ourIssmMPIStatusIgnore
ISSM_MPI_Status ourIssmMPIStatusIgnore
Definition: issmmpi.cpp:24
ISSM_MPI_Op
int ISSM_MPI_Op
Definition: issmmpi.h:120
ISSM_MPI_Reduce
int ISSM_MPI_Reduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:373
ISSM_MPI_Scatter
int ISSM_MPI_Scatter(void *sendbuf, int sendcnt, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcnt, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:407
ISSM_MPI_Gather
int ISSM_MPI_Gather(void *sendbuf, int sendcnt, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcnt, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:242
ISSM_MPI_Scatterv
int ISSM_MPI_Scatterv(void *sendbuf, int *sendcnts, int *displs, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcnt, ISSM_MPI_Datatype recvtype, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:444
ISSM_MPI_Comm_size
int ISSM_MPI_Comm_size(ISSM_MPI_Comm comm, int *size)
Definition: issmmpi.cpp:209