![]() |
Ice Sheet System Model
4.18
Code documentation
|
#include <cassert>
#include <cstring>
#include "./issmmpi.h"
#include "../../shared/Numerics/types.h"
Go to the source code of this file.
Functions | |
size_t | sizeHelper (ISSM_MPI_Datatype type) |
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) |
void | ISSM_MPI_ContiguousInAdolc (size_t aSize) |
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) |
Variables | |
ISSM_MPI_Status | ourIssmMPIStatusIgnore =0 |
size_t sizeHelper | ( | ISSM_MPI_Datatype | type | ) |
Definition at line 25 of file issmmpi.cpp.
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.
void ISSM_MPI_ContiguousInAdolc | ( | size_t | aSize | ) |
Definition at line 520 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.
ISSM_MPI_Status ourIssmMPIStatusIgnore =0 |
Definition at line 24 of file issmmpi.cpp.