Ice Sheet System Model  4.18
Code documentation
issmmpi.h
Go to the documentation of this file.
1 /* \file issmmpi.h
2  * \brief: header file that defines 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 #ifndef _ISSM_MPI_H_
7 #define _ISSM_MPI_H_
8 
9 #ifdef HAVE_CONFIG_H
10  #include <config.h>
11 #else
12 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
13 #endif
14 #include <cstddef>
15 #include <cassert>
16 #include "../../shared/Numerics/types.h"
17 
18 #if defined(_HAVE_MPI_)
19  /*Include header files: {{{*/
20  #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
21  #if defined(_HAVE_ADJOINTMPI_)
22  #include <ampi_tape.hpp>
23 
24  #elif defined(_HAVE_MEDIPACK_)
25  #include "medi/medi.hpp"
26  using namespace medi;
27  #if defined(_HAVE_CODIPACK_)
28  /*Old implementation of MeDiPack*/
29  //#include "codi/externals/codiMediPackTypes.hpp"
30  //#define TOOL CoDiPackTool<IssmDouble>
31  //#define AMPI_ADOUBLE TOOL::MPI_TYPE
32  //
33  /*New implementation*/
34  #include <codi/externals/codiMpiTypes.hpp>
35  using MpiTypes = CoDiMpiTypes<IssmDouble>;
36  extern MpiTypes* mpiTypes;
37  #define AMPI_ADOUBLE mpiTypes->MPI_TYPE
38  #elif defined(_HAVE_ADOLC_)
39  #include "adolc/medipacksupport.h"
40  #define TOOL AdolcTool
41  #else
42  #error "don't know about AD tool"
43  #endif
44 
45  #else
46  #include <ampi/ampi.h>
47  #endif
48  #elif _HAVE_PETSC_MPI_ // PETSc now hides their MPI header. It can be reached through PETSc's header file.
49  #include <petsc.h>
50  #else
51  #include <mpi.h>
52  #endif
53  /*}}}*/
54  /*MPI defines: *{{{*/
55 
56  // types
57  #if defined(_HAVE_MEDIPACK_) && !defined(_WRAPPERS_)
58  typedef AMPI_Comm ISSM_MPI_Comm;
59  typedef AMPI_Datatype ISSM_MPI_Datatype;
60  typedef AMPI_Op ISSM_MPI_Op;
61  typedef AMPI_Status ISSM_MPI_Status;
62  #else
63  typedef MPI_Comm ISSM_MPI_Comm;
64  typedef MPI_Datatype ISSM_MPI_Datatype;
65  typedef MPI_Op ISSM_MPI_Op;
66  typedef MPI_Status ISSM_MPI_Status;
67  #endif
68 
69  #if defined(_HAVE_MEDIPACK_) && !defined(_WRAPPERS_)
70  #define ISSM_MPI_CHAR AMPI_CHAR
71  #define ISSM_MPI_DOUBLE AMPI_ADOUBLE // corresponds to IssmDouble
72  #define ISSM_MPI_PDOUBLE AMPI_DOUBLE // corresponds to IssmPDouble
73  #define ISSM_MPI_INT AMPI_INT
74  #define ISSM_MPI_LONG_LONG_INT AMPI_LONG_LONG_INT
75 
76  // operations
77  #define ISSM_MPI_MAX AMPI_MAX
78  #define ISSM_MPI_MIN AMPI_MIN
79  #define ISSM_MPI_PROD AMPI_PROD
80  #define ISSM_MPI_SUM AMPI_SUM
81 
82  // others
83  #define ISSM_MPI_COMM_WORLD AMPI_COMM_WORLD
84  #define ISSM_MPI_STATUS_IGNORE AMPI_STATUS_IGNORE
85  #define ISSM_MPI_ANY_TAG AMPI_ANY_TAG
86  #define ISSM_MPI_ANY_SOURCE AMPI_ANY_SOURCE
87 
88  #else
89  #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
90  #define ISSM_MPI_DOUBLE AMPI_ADOUBLE
91  #else
92  #define ISSM_MPI_DOUBLE MPI_DOUBLE
93  #endif
94  #define ISSM_MPI_PDOUBLE MPI_DOUBLE
95  #define ISSM_MPI_INT MPI_INT
96  #define ISSM_MPI_LONG_LONG_INT MPI_LONG_LONG_INT
97  #define ISSM_MPI_CHAR MPI_CHAR
98 
99  // operations
100  #define ISSM_MPI_MAX MPI_MAX
101  #define ISSM_MPI_MIN MPI_MIN
102  #define ISSM_MPI_PROD MPI_PROD
103  #define ISSM_MPI_SUM MPI_SUM
104 
105  // others
106  #define ISSM_MPI_COMM_WORLD MPI_COMM_WORLD
107  #define ISSM_MPI_STATUS_IGNORE MPI_STATUS_IGNORE
108  #define ISSM_MPI_ANY_TAG MPI_ANY_TAG
109  #define ISSM_MPI_ANY_SOURCE MPI_ANY_SOURCE
110  #endif
111 
112  /*other include files: */
113  #include "./commops/commops.h"
114  /*}}}*/
115 #else
116  /*Our ISSM MPI defines: {{{*/
117  // types
118  typedef int ISSM_MPI_Comm;
119  typedef int ISSM_MPI_Datatype;
120  typedef int ISSM_MPI_Op;
121  typedef int ISSM_MPI_Status;
122 
123  // data types
124  #define ISSM_MPI_CHAR 1
125  #define ISSM_MPI_DOUBLE 2
126  #define ISSM_MPI_PDOUBLE 3
127  #define ISSM_MPI_INT 4
128  #define ISSM_MPI_LONG_LONG_INT 5
129 
130  // operations
131  #define ISSM_MPI_MAX 1
132  #define ISSM_MPI_MIN 2
133  #define ISSM_MPI_PROD 3
134  #define ISSM_MPI_SUM 4
135 
136  // others
137  #define ISSM_MPI_COMM_WORLD 1
139  #define ISSM_MPI_STATUS_IGNORE &ourIssmMPIStatusIgnore
140  #define ISSM_MPI_ANY_TAG 2
141  #define ISSM_MPI_ANY_SOURCE 3
142  /*}}}*/
143 #endif
144 
145 /*Dynamically return ISSM_MPI type from variable type */
146 template <class T> ISSM_MPI_Datatype TypeToMPIType(){assert(false);};
148 #if defined(_HAVE_AD_) && !defined(_WRAPPERS_)
149 template <> inline ISSM_MPI_Datatype TypeToMPIType<IssmPDouble>(){return ISSM_MPI_PDOUBLE;};
150 #endif
151 template <> inline ISSM_MPI_Datatype TypeToMPIType<int>(){return ISSM_MPI_INT;};
153 
154 template <class T> int ISSM_MPI_Bcast(T *buffer, int count,int root, ISSM_MPI_Comm comm){ /*{{{*/
155 
156  int rc=0;
157 
158  /*Get MPI type*/
159  ISSM_MPI_Datatype datatype = TypeToMPIType<T>();
160 
161 #ifdef _HAVE_MPI_
162 # ifdef _HAVE_AMPI_
163  rc=AMPI_Bcast(buffer,
164  count,
165  datatype,
166  root,
167  comm);
168 # else
169  rc=MPI_Bcast(buffer,
170  count,
171  datatype,
172  root,
173  comm);
174 # endif
175 #else
176  // nothing to be done here
177 #endif
178  return rc;
179 }/*}}}*/
180 /* interfaces {{{*/
181 int ISSM_MPI_Allgather(void *sendbuf, int sendcount, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcount, ISSM_MPI_Datatype recvtype, ISSM_MPI_Comm comm);
182 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);
183 int ISSM_MPI_Allreduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, ISSM_MPI_Comm comm);
185 int ISSM_MPI_Bcast(void *buffer, int count, ISSM_MPI_Datatype datatype, int root, ISSM_MPI_Comm comm);
187 int ISSM_MPI_Comm_rank(ISSM_MPI_Comm comm, int *rank);
188 int ISSM_MPI_Comm_size( ISSM_MPI_Comm comm, int *size);
189 int ISSM_MPI_Finalize(void);
190 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);
191 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);
192 int ISSM_MPI_Init(int *argc, char ***argv);
193 int ISSM_MPI_Recv(void *buf, int count, ISSM_MPI_Datatype datatype, int source, int tag, ISSM_MPI_Comm comm, ISSM_MPI_Status *status);
194 int ISSM_MPI_Reduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, int root, ISSM_MPI_Comm comm);
195 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);
196 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);
197 int ISSM_MPI_Send(void *buf, int count, ISSM_MPI_Datatype datatype, int dest, int tag, ISSM_MPI_Comm comm);
198 double ISSM_MPI_Wtime(void);
199 int ISSM_MPI_Comm_split(ISSM_MPI_Comm comm, int color, int key, ISSM_MPI_Comm *newcomm);
200 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);
201 
202 // special for Adol-C locations when buffers are allocated with new
203 // this could end up in the xNew template specialized for adoubles
204 // so as to not litter the code with it.
205 void ISSM_MPI_ContiguousInAdolc(size_t aSize);
206 /*}}}*/
207 
208 #endif //#ifndef _ISSM_MPI_H_
TypeToMPIType< int >
ISSM_MPI_Datatype TypeToMPIType< int >()
Definition: issmmpi.h:151
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_Comm_free
int ISSM_MPI_Comm_free(ISSM_MPI_Comm *comm)
Definition: issmmpi.cpp:184
ISSM_MPI_Datatype
int ISSM_MPI_Datatype
Definition: issmmpi.h:119
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
ISSM_MPI_ContiguousInAdolc
void ISSM_MPI_ContiguousInAdolc(size_t aSize)
Definition: issmmpi.cpp:520
TypeToMPIType
ISSM_MPI_Datatype TypeToMPIType()
Definition: issmmpi.h:146
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
ISSM_MPI_Comm_rank
int ISSM_MPI_Comm_rank(ISSM_MPI_Comm comm, int *rank)
Definition: issmmpi.cpp:198
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_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_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_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
TypeToMPIType< char >
ISSM_MPI_Datatype TypeToMPIType< char >()
Definition: issmmpi.h:152
ISSM_MPI_DOUBLE
#define ISSM_MPI_DOUBLE
Definition: issmmpi.h:125
ISSM_MPI_INT
#define ISSM_MPI_INT
Definition: issmmpi.h:127
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
commops.h
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_Finalize
int ISSM_MPI_Finalize(void)
Definition: issmmpi.cpp:220
ISSM_MPI_Status
int ISSM_MPI_Status
Definition: issmmpi.h:121
ISSM_MPI_PDOUBLE
#define ISSM_MPI_PDOUBLE
Definition: issmmpi.h:126
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_Comm_size
int ISSM_MPI_Comm_size(ISSM_MPI_Comm comm, int *size)
Definition: issmmpi.cpp:209
ISSM_MPI_Init
int ISSM_MPI_Init(int *argc, char ***argv)
Definition: issmmpi.cpp:319
ISSM_MPI_CHAR
#define ISSM_MPI_CHAR
Definition: issmmpi.h:124
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_Wtime
double ISSM_MPI_Wtime(void)
Definition: issmmpi.cpp:511
ISSM_MPI_Bcast
int ISSM_MPI_Bcast(T *buffer, int count, int root, ISSM_MPI_Comm comm)
Definition: issmmpi.h:154
ISSM_MPI_Comm
int ISSM_MPI_Comm
Definition: issmmpi.h:118
ISSM_MPI_Barrier
int ISSM_MPI_Barrier(ISSM_MPI_Comm comm)
Definition: issmmpi.cpp:148
ourIssmMPIStatusIgnore
ISSM_MPI_Status ourIssmMPIStatusIgnore
Definition: issmmpi.cpp:24
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_Op
int ISSM_MPI_Op
Definition: issmmpi.h:120
TypeToMPIType< IssmDouble >
ISSM_MPI_Datatype TypeToMPIType< IssmDouble >()
Definition: issmmpi.h:147