![]() |
Ice Sheet System Model
4.18
Code documentation
|
Go to the source code of this file.
Macros | |
#define | ISSM_MPI_CHAR 1 |
#define | ISSM_MPI_DOUBLE 2 |
#define | ISSM_MPI_PDOUBLE 3 |
#define | ISSM_MPI_INT 4 |
#define | ISSM_MPI_LONG_LONG_INT 5 |
#define | ISSM_MPI_MAX 1 |
#define | ISSM_MPI_MIN 2 |
#define | ISSM_MPI_PROD 3 |
#define | ISSM_MPI_SUM 4 |
#define | ISSM_MPI_COMM_WORLD 1 |
#define | ISSM_MPI_STATUS_IGNORE &ourIssmMPIStatusIgnore |
#define | ISSM_MPI_ANY_TAG 2 |
#define | ISSM_MPI_ANY_SOURCE 3 |
Typedefs | |
typedef int | ISSM_MPI_Comm |
typedef int | ISSM_MPI_Datatype |
typedef int | ISSM_MPI_Op |
typedef int | ISSM_MPI_Status |
Functions | |
template<class T > | |
ISSM_MPI_Datatype | TypeToMPIType () |
template<> | |
ISSM_MPI_Datatype | TypeToMPIType< IssmDouble > () |
template<> | |
ISSM_MPI_Datatype | TypeToMPIType< int > () |
template<> | |
ISSM_MPI_Datatype | TypeToMPIType< char > () |
template<class T > | |
int | ISSM_MPI_Bcast (T *buffer, int count, int root, ISSM_MPI_Comm comm) |
int | ISSM_MPI_Allgather (void *sendbuf, int sendcount, ISSM_MPI_Datatype sendtype, void *recvbuf, int recvcount, ISSM_MPI_Datatype recvtype, ISSM_MPI_Comm comm) |
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) |
int | ISSM_MPI_Allreduce (void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, ISSM_MPI_Comm comm) |
int | ISSM_MPI_Barrier (ISSM_MPI_Comm comm) |
int | ISSM_MPI_Bcast (void *buffer, int count, ISSM_MPI_Datatype datatype, int root, ISSM_MPI_Comm comm) |
int | ISSM_MPI_Comm_free (ISSM_MPI_Comm *comm) |
int | ISSM_MPI_Comm_rank (ISSM_MPI_Comm comm, int *rank) |
int | ISSM_MPI_Comm_size (ISSM_MPI_Comm comm, int *size) |
int | ISSM_MPI_Finalize (void) |
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) |
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) |
int | ISSM_MPI_Init (int *argc, char ***argv) |
int | ISSM_MPI_Recv (void *buf, int count, ISSM_MPI_Datatype datatype, int source, int tag, ISSM_MPI_Comm comm, ISSM_MPI_Status *status) |
int | ISSM_MPI_Reduce (void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, int root, ISSM_MPI_Comm comm) |
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) |
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) |
int | ISSM_MPI_Send (void *buf, int count, ISSM_MPI_Datatype datatype, int dest, int tag, ISSM_MPI_Comm comm) |
double | ISSM_MPI_Wtime (void) |
int | ISSM_MPI_Comm_split (ISSM_MPI_Comm comm, int color, int key, ISSM_MPI_Comm *newcomm) |
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) |
void | ISSM_MPI_ContiguousInAdolc (size_t aSize) |
Variables | |
ISSM_MPI_Status | ourIssmMPIStatusIgnore |
#define ISSM_MPI_STATUS_IGNORE &ourIssmMPIStatusIgnore |
typedef int ISSM_MPI_Comm |
typedef int ISSM_MPI_Datatype |
typedef int ISSM_MPI_Op |
typedef int ISSM_MPI_Status |
ISSM_MPI_Datatype TypeToMPIType | ( | ) |
|
inline |
|
inline |
|
inline |
int ISSM_MPI_Bcast | ( | T * | buffer, |
int | count, | ||
int | root, | ||
ISSM_MPI_Comm | comm | ||
) |
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 at line 45 of file issmmpi.cpp.
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 at line 79 of file issmmpi.cpp.
int ISSM_MPI_Allreduce | ( | void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
ISSM_MPI_Datatype | datatype, | ||
ISSM_MPI_Op | op, | ||
ISSM_MPI_Comm | comm | ||
) |
Definition at line 116 of file issmmpi.cpp.
int ISSM_MPI_Barrier | ( | ISSM_MPI_Comm | comm | ) |
Definition at line 148 of file issmmpi.cpp.
int ISSM_MPI_Bcast | ( | void * | buffer, |
int | count, | ||
ISSM_MPI_Datatype | datatype, | ||
int | root, | ||
ISSM_MPI_Comm | comm | ||
) |
Definition at line 162 of file issmmpi.cpp.
int ISSM_MPI_Comm_free | ( | ISSM_MPI_Comm * | comm | ) |
Definition at line 184 of file issmmpi.cpp.
int ISSM_MPI_Comm_rank | ( | ISSM_MPI_Comm | comm, |
int * | rank | ||
) |
Definition at line 198 of file issmmpi.cpp.
int ISSM_MPI_Comm_size | ( | ISSM_MPI_Comm | comm, |
int * | size | ||
) |
Definition at line 209 of file issmmpi.cpp.
int ISSM_MPI_Finalize | ( | void | ) |
Definition at line 220 of file issmmpi.cpp.
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 at line 242 of file issmmpi.cpp.
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 at line 279 of file issmmpi.cpp.
int ISSM_MPI_Init | ( | int * | argc, |
char *** | argv | ||
) |
Definition at line 319 of file issmmpi.cpp.
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 at line 342 of file issmmpi.cpp.
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 at line 373 of file issmmpi.cpp.
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 at line 407 of file issmmpi.cpp.
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 at line 444 of file issmmpi.cpp.
int ISSM_MPI_Send | ( | void * | buf, |
int | count, | ||
ISSM_MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
ISSM_MPI_Comm | comm | ||
) |
Definition at line 484 of file issmmpi.cpp.
double ISSM_MPI_Wtime | ( | void | ) |
Definition at line 511 of file issmmpi.cpp.
int ISSM_MPI_Comm_split | ( | ISSM_MPI_Comm | comm, |
int | color, | ||
int | key, | ||
ISSM_MPI_Comm * | newcomm | ||
) |
Definition at line 528 of file issmmpi.cpp.
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 at line 542 of file issmmpi.cpp.
void ISSM_MPI_ContiguousInAdolc | ( | size_t | aSize | ) |
Definition at line 520 of file issmmpi.cpp.
|
extern |
Definition at line 24 of file issmmpi.cpp.