MAIA bb96820c
Multiphysics at AIA
|
Go to the source code of this file.
Functions | |
int | MPI_Comm_create (MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm, const MString &name, const MString &varname) |
same as MPI_Comm_create, but updates the number of MPI communicators More... | |
int | MPI_Comm_split (MPI_Comm comm, int color, int key, MPI_Comm *newcomm, const MString &name, const MString &varname) |
same as MPI_Comm_split, but updates the number of MPI communicators More... | |
int | MPI_Comm_free (MPI_Comm *comm, const MString &name, const MString &varname) |
same as MPI_Comm_free, but updates the number of MPI communicators More... | |
int | MPI_Comm_group (MPI_Comm comm, MPI_Group *group, const MString &name, const MString &varname) |
same as MPI_Comm_group More... | |
int | MPI_Send (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, const MString &name, const MString &varname) |
same as MPI_Send More... | |
int | MPI_Isend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &varname) |
same as MPI_Isend More... | |
int | MPI_Issend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &varname) |
same as MPI_Issend More... | |
int | MPI_Recv (void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status, const MString &name, const MString &varname) |
same as MPI_Recv More... | |
int | MPI_Irecv (void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &varname) |
same as MPI_Irecv More... | |
int | MPI_Send_init (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &varname) |
same as MPI_Send_init More... | |
int | MPI_Recv_init (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &varname) |
same as MPI_Recv_init More... | |
int | MPI_Wait (MPI_Request *request, MPI_Status *status, const MString &name) |
same as MPI_Wait More... | |
int | MPI_Waitall (int count, MPI_Request *request, MPI_Status *status, const MString &name) |
same as MPI_Waitall More... | |
int | MPI_Waitsome (int incount, MPI_Request array_of_requests[], int *outcount, int array_of_indices[], MPI_Status array_of_statuses[], const MString &name) |
same as MPI_Waitsome More... | |
int | MPI_Test (MPI_Request *request, int *flag, MPI_Status *status, const MString &name) |
same as MPI_Test More... | |
int | MPI_Barrier (MPI_Comm comm, const MString &name) |
same as MPI_Barrier More... | |
int | MPI_Reduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Reduce More... | |
int | MPI_Allreduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Allreduce More... | |
int | MPI_Iallreduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Iallreduce More... | |
int | MPI_Scatter (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Scatter More... | |
int | MPI_Scatterv (const void *sendbuf, const int sendcount[], const int displs[], MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Scatterv More... | |
int | MPI_Bcast (void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm, const MString &name, const MString &varname) |
same as MPI_Bcast More... | |
int | MPI_Ibcast (void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm, MPI_Request *request, const MString &name, const MString &varname) |
same as MPI_Ibcast More... | |
int | MPI_Gather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Gather More... | |
int | MPI_Gatherv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Gatherv More... | |
int | MPI_Allgather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Allgather More... | |
int | MPI_Allgatherv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Allgatherv More... | |
int | MPI_Alltoall (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Alltoall More... | |
int | MPI_Alltoallv (const void *sendbuf, const int sendcounts[], const int sdispls[], MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Alltoallv More... | |
int | MPI_Exscan (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, const MString &name, const MString &sndvarname, const MString &rcvvarname) |
same as MPI_Exscan More... | |
int | MPI_Type_commit (MPI_Datatype *datatype, const MString &name) |
same as MPI_Type_commit More... | |
int | MPI_Type_free (MPI_Datatype *datatype, const MString &name) |
same as MPI_Type_free More... | |
int | MPI_Type_create_hindexed (int count, const int array_of_solverlengths[], const MPI_Aint array_of_displacements[], MPI_Datatype oldtype, MPI_Datatype *newtype, const MString &name) |
same as MPI_Type_create_hindexed More... | |
int | MPI_Type_contiguous (int count, MPI_Datatype old_type, MPI_Datatype *new_type_p, const MString &name) |
same as MPI_Type_contiguous More... | |
int | MPI_Group_incl (MPI_Group group, int n, const int ranks[], MPI_Group *newgroup, const MString &name) |
same as MPI_Group_incl More... | |
int | MPI_Group_free (MPI_Group *group, const MString &name) |
same as MPI_Group_free More... | |
int | MPI_Start (MPI_Request *request, const MString &name) |
same as MPI_Start More... | |
int | MPI_Startall (int count, MPI_Request array_of_requests[], const MString &name) |
same as MPI_Startall More... | |
int | MPI_Get_count (const MPI_Status *status, MPI_Datatype datatype, int *count, const MString &name) |
same as MPI_Get_count More... | |
int | MPI_Get_address (const void *location, MPI_Aint *address, const MString &name) |
same as MPI_Get_address More... | |
int | MPI_Abort (MPI_Comm comm, int errorcode, const MString &name) |
same as MPI_Abort More... | |
int | MPI_Request_free (MPI_Request *request, const MString &name) |
same as MPI_Request_free More... | |
int | MPI_Cancel (MPI_Request *request, const MString &name) |
same as MPI_cancel More... | |
int | MPI_Probe (int source, int tag, MPI_Comm comm, MPI_Status *status, const MString &name) |
probe MPI to get status without actually receiving the message More... | |
int | MPI_Iprobe (int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status, const MString &name) |
Iprobe MPI to get status without actually receiving the message. More... | |
int | MPI_Info_create (MPI_Info *info, const MString &name) |
same as MPI_Info_create More... | |
int | MPI_Info_free (MPI_Info *info, const MString &name) |
same as MPI_Info_free More... | |
int | MPI_Info_get (MPI_Info info, const char *key, int valuelen, char *value, int *flag, const MString &name) |
same as MPI_Info_get More... | |
int | MPI_Info_get_nthkey (MPI_Info info, int n, char *key, const MString &name) |
same as MPI_Info_get_nthkey More... | |
int | MPI_Info_get_nkeys (MPI_Info info, int *nkeys, const MString &name) |
same as MPI_Info_get_nkeys More... | |
int | MPI_Info_get_valuelen (MPI_Info info, const char *key, int *valuelen, int *flag, const MString &name) |
same as MPI_Info_get_valuelen More... | |
int | MPI_File_open (MPI_Comm comm, const char *filename, int amode, MPI_Info info, MPI_File *mpi_fh, const MString &name) |
same as MPI_File_open More... | |
int | MPI_File_seek (MPI_File mpi_fh, MPI_Offset offset, int whence, const MString &name) |
same as MPI_File_seek More... | |
int | MPI_File_close (MPI_File *mpi_fh, const MString &name) |
same as MPI_File_close More... | |
int | MPI_File_write_shared (MPI_File mpi_fh, const void *buf, int count, MPI_Datatype datatype, MPI_Status *status, const MString &name) |
same as MPI_File_write_shared More... | |
int | MPI_File_iwrite_shared (MPI_File mpi_fh, const void *buf, int count, MPI_Datatype datatype, MPI_Request *request, const MString &name) |
same as MPI_File_iwrite_shared More... | |
int | MPI_Comm_create (MPI_Comm comm, MPI_Group group, MPI_Comm *newcomm) |
int | MPI_Comm_split (MPI_Comm comm, int color, int key, MPI_Comm *newcomm) |
int | MPI_Comm_free (MPI_Comm *comm) |
int | MPI_Comm_group (MPI_Comm comm, MPI_Group *group) |
int | MPI_Comm_split_type (MPI_Comm comm, int split_type, int key, MPI_Info info, MPI_Comm *newcomm) |
int | MPI_Comm_accept (const char *port_name, MPI_Info info, int root, MPI_Comm comm, MPI_Comm *newcomm) |
int | MPI_Comm_call_errhandler (MPI_Comm comm, int errorcode) |
int | MPI_Comm_compare (MPI_Comm comm1, MPI_Comm comm2, int *result) |
int | MPI_Comm_connect (const char *port_name, MPI_Info info, int root, MPI_Comm comm, MPI_Comm *newcomm) |
int | MPI_Comm_create_errhandler (MPI_Comm_errhandler_function *function, MPI_Errhandler *errhandler) |
int | MPI_Comm_create_group (MPI_Comm comm, MPI_Group group, int tag, MPI_Comm *newcomm) |
int | MPI_Comm_create_keyval (MPI_Comm_copy_attr_function *comm_copy_attr_fn, MPI_Comm_delete_attr_function *comm_delete_attr_fn, int *comm_keyval, void *extra_state) |
int | MPI_Comm_disconnect (MPI_Comm *comm) |
int | MPI_Comm_remote_group (MPI_Comm comm, MPI_Group *group) |
int | MPI_Comm_remote_size (MPI_Comm comm, int *size) |
int | MPI_Send (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) |
int | MPI_Ssend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) |
int | MPI_Ssend_init (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Isend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Issend (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Recv (void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status) |
int | MPI_Irecv (void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Send_init (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Recv_init (void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Sendrecv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag, MPI_Comm comm, MPI_Status *status) |
int | MPI_Sendrecv_replace (void *buf, int count, MPI_Datatype datatype, int dest, int sendtag, int source, int recvtag, MPI_Comm comm, MPI_Status *status) |
int | MPI_Bsend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) |
int | MPI_Ibsend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Bsend_init (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) |
int | MPI_Mrecv (void *buf, int count, MPI_Datatype type, MPI_Message *message, MPI_Status *status) |
int | MPI_Imrecv (void *buf, int count, MPI_Datatype type, MPI_Message *message, MPI_Request *request) |
int | MPI_Rsend (const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) |
int | MPI_Wait (MPI_Request *request, MPI_Status *status) |
int | MPI_Waitall (int count, MPI_Request *request, MPI_Status *status) |
int | MPI_Waitsome (int incount, MPI_Request array_of_requests[], int *outcount, int array_of_indices[], MPI_Status array_of_statuses[]) |
int | MPI_Waitany (int count, MPI_Request array_of_requests[], int *index, MPI_Status *status) |
int | MPI_Test (MPI_Request *request, int *flag, MPI_Status *status) |
int | MPI_Test_cancelled (const MPI_Status *status, int *flag) |
int | MPI_Testany (int count, MPI_Request array_of_requests[], int *index, int *flag, MPI_Status *status) |
int | MPI_Testall (int count, MPI_Request array_of_requests[], int *flag, MPI_Status array_of_statuses[]) |
int | MPI_Testsome (int incount, MPI_Request array_of_requests[], int *outcount, int array_of_indices[], MPI_Status array_of_statuses[]) |
int | MPI_Barrier (MPI_Comm comm) |
int | MPI_Ibarrier (MPI_Comm comm, MPI_Request *request) |
int | MPI_Reduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm) |
int | MPI_Reduce_local (const void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype, MPI_Op op) |
int | MPI_Reduce_scatter (const void *sendbuf, void *recvbuf, const int recvcounts[], MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) |
int | MPI_Ireduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm, MPI_Request *request) |
int | MPI_Ireduce_scatter (const void *sendbuf, void *recvbuf, const int recvcounts[], MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request) |
int | MPI_Allreduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) |
int | MPI_Iallreduce (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request) |
int | MPI_Scatter (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) |
int | MPI_Scatterv (const void *sendbuf, const int sendcounts[], const int displs[], MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) |
int | MPI_Iscatter (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request) |
int | MPI_Iscatterv (const void *sendbuf, const int sendcounts[], const int displs[], MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request) |
int | MPI_Reduce_scatter_solver (const void *sendbuf, void *recvbuf, int recvcount, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) |
int | MPI_Ireduce_scatter_solver (const void *sendbuf, void *recvbuf, int recvcount, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request) |
int | MPI_Bcast (void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm) |
int | MPI_Ibcast (void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm, MPI_Request *request) |
int | MPI_Gather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) |
int | MPI_Igather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request) |
int | MPI_Gatherv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root, MPI_Comm comm) |
int | MPI_Igatherv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Request *request) |
int | MPI_Allgather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) |
int | MPI_Iallgather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request) |
int | MPI_Allgatherv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm) |
int | MPI_Iallgatherv (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request) |
int | MPI_Alltoall (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) |
int | MPI_Ialltoall (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request) |
int | MPI_Alltoallv (const void *sendbuf, const int sendcounts[], const int sdispls[], MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm) |
int | MPI_Ialltoallv (const void *sendbuf, const int sendcounts[], const int sdispls[], MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request) |
int | MPI_Alltoallw (const void *sendbuf, const int sendcounts[], const int sdispls[], const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[], const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm) |
int | MPI_Ialltoallw (const void *sendbuf, const int sendcounts[], const int sdispls[], const MPI_Datatype sendtypes[], void *recvbuf, const int recvcounts[], const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request) |
int | MPI_Scan (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) |
int | MPI_Iscan (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request) |
int | MPI_Exscan (const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) |
int | MPI_Neighbor_allgather (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) |
int | MPIX_Allgather_init (const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request) |
int | MPI_Type_commit (MPI_Datatype *datatype) |
int | MPI_Type_free (MPI_Datatype *datatype) |
int | MPI_Type_create_hindexed (int count, const int array_of_solverlengths[], const MPI_Aint array_of_displacements[], MPI_Datatype oldtype, MPI_Datatype *newtype) |
int | MPI_Type_contiguous (int count, MPI_Datatype old_type, MPI_Datatype *new_type_p) |
int | MPI_Type_vector (int count, int solverlength, int stride, MPI_Datatype oldtype, MPI_Datatype *newtype) |
int | MPI_Type_struct (int count, int *array_of_solverlengths, MPI_Aint *array_of_displacements, MPI_Datatype *array_of_types, MPI_Datatype *newtype) |
int | MPI_Type_create_hvector (int count, int solverlength, MPI_Aint stride, MPI_Datatype oldtype, MPI_Datatype *newtype) |
int | MPI_Type_create_darray (int size, int rank, int ndims, const int array_of_gsizes[], const int array_of_distribs[], const int array_of_dargs[], const int array_of_psizes[], int order, MPI_Datatype oldtype, MPI_Datatype *newtype) |
int | MPI_Type_create_indexed_solver (int count, int solverlength, const int array_of_displacements[], MPI_Datatype oldtype, MPI_Datatype *newtype) |
int | MPI_Type_set_name (MPI_Datatype type, const char *type_name) |
int | MPI_Group_incl (MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) |
int | MPI_Group_free (MPI_Group *group) |
int | MPI_Group_compare (MPI_Group group1, MPI_Group group2, int *result) |
int | MPI_Group_excl (MPI_Group group, int n, const int ranks[], MPI_Group *newgroup) |
int | MPI_Group_difference (MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) |
int | MPI_Group_intersection (MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) |
int | MPI_Group_range_excl (MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) |
int | MPI_Group_range_incl (MPI_Group group, int n, int ranges[][3], MPI_Group *newgroup) |
int | MPI_Group_rank (MPI_Group group, int *rank) |
int | MPI_Group_size (MPI_Group group, int *size) |
int | MPI_Group_union (MPI_Group group1, MPI_Group group2, MPI_Group *newgroup) |
int | MPI_Start (MPI_Request *request) |
int | MPI_Startall (int count, MPI_Request array_of_requests[]) |
int | MPI_Get_count (const MPI_Status *status, MPI_Datatype datatype, int *count) |
int | MPI_Get_address (const void *location, MPI_Aint *address) |
int | MPI_Abort (MPI_Comm comm, int errorcode) |
int | MPI_Status_set_cancelled (MPI_Status *status, int flag) |
int | MPI_Alloc_mem (MPI_Aint size, MPI_Info info, void *baseptr) |
int | MPI_Op_create (MPI_User_function *function, int commute, MPI_Op *op) |
int | MPI_Op_commutative (MPI_Op op, int *commute) |
int | MPI_Op_free (MPI_Op *op) |
int | MPI_Compare_and_swap (const void *origin_addr, const void *compare_addr, void *result_addr, MPI_Datatype datatype, int target_rank, MPI_Aint target_disp, MPI_Win win) |
int | MPI_Probe (int source, int tag, MPI_Comm comm, MPI_Status *status) |
int | MPI_Request_get_status (MPI_Request request, int *flag, MPI_Status *status) |
int | MPI_Request_free (MPI_Request *request) |
int | MPI_Cancel (MPI_Request *request) |
int | MPI_Info_create (MPI_Info *info) |
int | MPI_Info_free (MPI_Info *info) |
int | MPI_Info_get (MPI_Info info, char *key, int valuelen, char *value, int *flag) |
int | MPI_Info_get_nthkey (MPI_Info info, int n, char *key) |
int | MPI_Info_get_nkeys (MPI_Info info, int *nkeys) |
int | MPI_Info_get_valuelen (MPI_Info info, const char *key, int *valuelen, int *flag) |
int | MPI_File_open (MPI_Comm comm, char *filename, int amode, MPI_Info info, MPI_File *mpi_fh) |
int | MPI_File_seek (MPI_File mpi_fh, MPI_Offset offset, int whence) |
int | MPI_File_close (MPI_File *mpi_fh) |
int | MPI_File_write_shared (MPI_File mpi_fh, const void *buf, int count, MPI_Datatype datatype, MPI_Status *status) |
int | MPI_File_iwrite_shared (MPI_File mpi_fh, const void *buf, int count, MPI_Datatype datatype, MPI_Request *request) |
int | MPI_Cart_coords (MPI_Comm comm, int rank, int maxdims, int coords[]) |
int | MPI_Cart_create (MPI_Comm comm_old, int ndims, const int dims[], const int periods[], int reorder, MPI_Comm *comm_cart) |
int | MPI_Graph_create (MPI_Comm comm_old, int nnodes, const int index[], const int edges[], int reorder, MPI_Comm *comm_graph) |
int | MPI_Win_fence (int assert, MPI_Win win) |
int | MPI_Put (const void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win) |
int | MPI_Accumulate (const void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Op op, MPI_Win win) |
int MPI_Abort | ( | MPI_Comm | comm, |
int | errorcode | ||
) |
int MPI_Abort | ( | MPI_Comm | comm, |
int | errorcode, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1823 of file mpioverride.cpp.
int MPI_Accumulate | ( | const void * | origin_addr, |
int | origin_count, | ||
MPI_Datatype | origin_datatype, | ||
int | target_rank, | ||
MPI_Aint | target_disp, | ||
int | target_count, | ||
MPI_Datatype | target_datatype, | ||
MPI_Op | op, | ||
MPI_Win | win | ||
) |
int MPI_Allgather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm | ||
) |
int MPI_Allgather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1274 of file mpioverride.cpp.
int MPI_Allgatherv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | displs[], | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm | ||
) |
int MPI_Allgatherv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | displs[], | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1315 of file mpioverride.cpp.
int MPI_Alloc_mem | ( | MPI_Aint | size, |
MPI_Info | info, | ||
void * | baseptr | ||
) |
int MPI_Allreduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm | ||
) |
int MPI_Allreduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 952 of file mpioverride.cpp.
int MPI_Alltoall | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm | ||
) |
int MPI_Alltoall | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1356 of file mpioverride.cpp.
int MPI_Alltoallv | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | sdispls[], | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | rdispls[], | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm | ||
) |
int MPI_Alltoallv | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | sdispls[], | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | rdispls[], | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1397 of file mpioverride.cpp.
int MPI_Alltoallw | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | sdispls[], | ||
const MPI_Datatype | sendtypes[], | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | rdispls[], | ||
const MPI_Datatype | recvtypes[], | ||
MPI_Comm | comm | ||
) |
int MPI_Barrier | ( | MPI_Comm | comm | ) |
int MPI_Barrier | ( | MPI_Comm | comm, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 874 of file mpioverride.cpp.
int MPI_Bcast | ( | void * | buffer, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | root, | ||
MPI_Comm | comm | ||
) |
int MPI_Bcast | ( | void * | buffer, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | root, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
[in] | name | the name of the calling function |
[in] | varname | name of the variable |
Definition at line 1114 of file mpioverride.cpp.
int MPI_Bsend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm | ||
) |
int MPI_Bsend_init | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Cancel | ( | MPI_Request * | request | ) |
int MPI_Cancel | ( | MPI_Request * | request, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1891 of file mpioverride.cpp.
int MPI_Cart_coords | ( | MPI_Comm | comm, |
int | rank, | ||
int | maxdims, | ||
int | coords[] | ||
) |
int MPI_Cart_create | ( | MPI_Comm | comm_old, |
int | ndims, | ||
const int | dims[], | ||
const int | periods[], | ||
int | reorder, | ||
MPI_Comm * | comm_cart | ||
) |
int MPI_Comm_accept | ( | const char * | port_name, |
MPI_Info | info, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Comm * | newcomm | ||
) |
int MPI_Comm_call_errhandler | ( | MPI_Comm | comm, |
int | errorcode | ||
) |
int MPI_Comm_compare | ( | MPI_Comm | comm1, |
MPI_Comm | comm2, | ||
int * | result | ||
) |
int MPI_Comm_connect | ( | const char * | port_name, |
MPI_Info | info, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Comm * | newcomm | ||
) |
int MPI_Comm_create | ( | MPI_Comm | comm, |
MPI_Group | group, | ||
MPI_Comm * | newcomm | ||
) |
int MPI_Comm_create | ( | MPI_Comm | comm, |
MPI_Group | group, | ||
MPI_Comm * | newcomm, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Comm_create.
[in] | comm | the parent communicator |
[in] | group | MPI group |
[in] | newcomm | the new MPI communicator |
[in] | name | the name of the calling function |
[in] | varname | name of the variable |
Definition at line 249 of file mpioverride.cpp.
int MPI_Comm_create_errhandler | ( | MPI_Comm_errhandler_function * | function, |
MPI_Errhandler * | errhandler | ||
) |
int MPI_Comm_create_group | ( | MPI_Comm | comm, |
MPI_Group | group, | ||
int | tag, | ||
MPI_Comm * | newcomm | ||
) |
int MPI_Comm_create_keyval | ( | MPI_Comm_copy_attr_function * | comm_copy_attr_fn, |
MPI_Comm_delete_attr_function * | comm_delete_attr_fn, | ||
int * | comm_keyval, | ||
void * | extra_state | ||
) |
int MPI_Comm_disconnect | ( | MPI_Comm * | comm | ) |
int MPI_Comm_free | ( | MPI_Comm * | comm | ) |
Also delivers output to m_log on the execution status of MPI_Comm_split.
[in] | comm | the MPI communicator to free |
[in] | name | the name of the calling function |
[in] | varname | name of the variable |
Definition at line 349 of file mpioverride.cpp.
int MPI_Comm_group | ( | MPI_Comm | comm, |
MPI_Group * | group | ||
) |
int MPI_Comm_group | ( | MPI_Comm | comm, |
MPI_Group * | group, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Comm_split.
[in] | comm | the MPI communicator to free |
[in] | name | the name of the calling function |
Definition at line 398 of file mpioverride.cpp.
int MPI_Comm_remote_group | ( | MPI_Comm | comm, |
MPI_Group * | group | ||
) |
int MPI_Comm_remote_size | ( | MPI_Comm | comm, |
int * | size | ||
) |
int MPI_Comm_split | ( | MPI_Comm | comm, |
int | color, | ||
int | key, | ||
MPI_Comm * | newcomm | ||
) |
int MPI_Comm_split | ( | MPI_Comm | comm, |
int | color, | ||
int | key, | ||
MPI_Comm * | newcomm, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Comm_split.
[in] | comm | the parent communicator |
[in] | color | control of subset assignment |
[in] | key | control of rank assignment |
[in] | newcomm | the new MPI communicator |
[in] | name | the name of the calling function |
[in] | varname | name of the variable |
Definition at line 307 of file mpioverride.cpp.
int MPI_Comm_split_type | ( | MPI_Comm | comm, |
int | split_type, | ||
int | key, | ||
MPI_Info | info, | ||
MPI_Comm * | newcomm | ||
) |
int MPI_Compare_and_swap | ( | const void * | origin_addr, |
const void * | compare_addr, | ||
void * | result_addr, | ||
MPI_Datatype | datatype, | ||
int | target_rank, | ||
MPI_Aint | target_disp, | ||
MPI_Win | win | ||
) |
int MPI_Exscan | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm | ||
) |
int MPI_Exscan | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1439 of file mpioverride.cpp.
int MPI_File_close | ( | MPI_File * | mpi_fh | ) |
int MPI_File_close | ( | MPI_File * | mpi_fh, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2273 of file mpioverride.cpp.
int MPI_File_iwrite_shared | ( | MPI_File | mpi_fh, |
const void * | buf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Request * | request | ||
) |
int MPI_File_iwrite_shared | ( | MPI_File | mpi_fh, |
const void * | buf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Request * | request, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2342 of file mpioverride.cpp.
int MPI_File_open | ( | MPI_Comm | comm, |
char * | filename, | ||
int | amode, | ||
MPI_Info | info, | ||
MPI_File * | mpi_fh | ||
) |
int MPI_File_open | ( | MPI_Comm | comm, |
const char * | filename, | ||
int | amode, | ||
MPI_Info | info, | ||
MPI_File * | mpi_fh, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2203 of file mpioverride.cpp.
int MPI_File_seek | ( | MPI_File | mpi_fh, |
MPI_Offset | offset, | ||
int | whence | ||
) |
int MPI_File_seek | ( | MPI_File | mpi_fh, |
MPI_Offset | offset, | ||
int | whence, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2239 of file mpioverride.cpp.
int MPI_File_write_shared | ( | MPI_File | mpi_fh, |
const void * | buf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Status * | status | ||
) |
int MPI_File_write_shared | ( | MPI_File | mpi_fh, |
const void * | buf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Status * | status, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2307 of file mpioverride.cpp.
int MPI_Gather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm | ||
) |
int MPI_Gather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1191 of file mpioverride.cpp.
int MPI_Gatherv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | displs[], | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm | ||
) |
int MPI_Gatherv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | displs[], | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1232 of file mpioverride.cpp.
int MPI_Get_address | ( | const void * | location, |
MPI_Aint * | address | ||
) |
int MPI_Get_address | ( | const void * | location, |
MPI_Aint * | address, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1789 of file mpioverride.cpp.
int MPI_Get_count | ( | const MPI_Status * | status, |
MPI_Datatype | datatype, | ||
int * | count | ||
) |
int MPI_Get_count | ( | const MPI_Status * | status, |
MPI_Datatype | datatype, | ||
int * | count, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1755 of file mpioverride.cpp.
int MPI_Graph_create | ( | MPI_Comm | comm_old, |
int | nnodes, | ||
const int | index[], | ||
const int | edges[], | ||
int | reorder, | ||
MPI_Comm * | comm_graph | ||
) |
int MPI_Group_compare | ( | MPI_Group | group1, |
MPI_Group | group2, | ||
int * | result | ||
) |
int MPI_Group_difference | ( | MPI_Group | group1, |
MPI_Group | group2, | ||
MPI_Group * | newgroup | ||
) |
int MPI_Group_excl | ( | MPI_Group | group, |
int | n, | ||
const int | ranks[], | ||
MPI_Group * | newgroup | ||
) |
int MPI_Group_free | ( | MPI_Group * | group | ) |
int MPI_Group_free | ( | MPI_Group * | group, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1649 of file mpioverride.cpp.
int MPI_Group_incl | ( | MPI_Group | group, |
int | n, | ||
const int | ranks[], | ||
MPI_Group * | newgroup | ||
) |
int MPI_Group_incl | ( | MPI_Group | group, |
int | n, | ||
const int | ranks[], | ||
MPI_Group * | newgroup, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1615 of file mpioverride.cpp.
int MPI_Group_intersection | ( | MPI_Group | group1, |
MPI_Group | group2, | ||
MPI_Group * | newgroup | ||
) |
int MPI_Group_range_excl | ( | MPI_Group | group, |
int | n, | ||
int | ranges[][3], | ||
MPI_Group * | newgroup | ||
) |
int MPI_Group_range_incl | ( | MPI_Group | group, |
int | n, | ||
int | ranges[][3], | ||
MPI_Group * | newgroup | ||
) |
int MPI_Group_rank | ( | MPI_Group | group, |
int * | rank | ||
) |
int MPI_Group_size | ( | MPI_Group | group, |
int * | size | ||
) |
int MPI_Group_union | ( | MPI_Group | group1, |
MPI_Group | group2, | ||
MPI_Group * | newgroup | ||
) |
int MPI_Iallgather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Iallgatherv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | displs[], | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Iallreduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Iallreduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 993 of file mpioverride.cpp.
int MPI_Ialltoall | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Ialltoallv | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | sdispls[], | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | rdispls[], | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Ialltoallw | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | sdispls[], | ||
const MPI_Datatype | sendtypes[], | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | rdispls[], | ||
const MPI_Datatype | recvtypes[], | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Ibarrier | ( | MPI_Comm | comm, |
MPI_Request * | request | ||
) |
int MPI_Ibcast | ( | void * | buffer, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Ibcast | ( | void * | buffer, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
[in] | name | the name of the calling function |
[in] | varname | name of the variable |
Definition at line 1152 of file mpioverride.cpp.
int MPI_Ibsend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Igather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Igatherv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
const int | recvcounts[], | ||
const int | displs[], | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Imrecv | ( | void * | buf, |
int | count, | ||
MPI_Datatype | type, | ||
MPI_Message * | message, | ||
MPI_Request * | request | ||
) |
int MPI_Info_create | ( | MPI_Info * | info | ) |
int MPI_Info_create | ( | MPI_Info * | info, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1996 of file mpioverride.cpp.
int MPI_Info_free | ( | MPI_Info * | info | ) |
int MPI_Info_free | ( | MPI_Info * | info, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2030 of file mpioverride.cpp.
int MPI_Info_get | ( | MPI_Info | info, |
char * | key, | ||
int | valuelen, | ||
char * | value, | ||
int * | flag | ||
) |
int MPI_Info_get | ( | MPI_Info | info, |
const char * | key, | ||
int | valuelen, | ||
char * | value, | ||
int * | flag, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2064 of file mpioverride.cpp.
int MPI_Info_get_nkeys | ( | MPI_Info | info, |
int * | nkeys | ||
) |
int MPI_Info_get_nkeys | ( | MPI_Info | info, |
int * | nkeys, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2132 of file mpioverride.cpp.
int MPI_Info_get_nthkey | ( | MPI_Info | info, |
int | n, | ||
char * | key | ||
) |
int MPI_Info_get_nthkey | ( | MPI_Info | info, |
int | n, | ||
char * | key, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2098 of file mpioverride.cpp.
int MPI_Info_get_valuelen | ( | MPI_Info | info, |
const char * | key, | ||
int * | valuelen, | ||
int * | flag | ||
) |
int MPI_Info_get_valuelen | ( | MPI_Info | info, |
const char * | key, | ||
int * | valuelen, | ||
int * | flag, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 2166 of file mpioverride.cpp.
int MPI_Iprobe | ( | int | source, |
int | tag, | ||
MPI_Comm | comm, | ||
int * | flag, | ||
MPI_Status * | status, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1959 of file mpioverride.cpp.
int MPI_Irecv | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | source, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Irecv | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | source, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Irecv.
\additional param[in] name of the calling function
Definition at line 606 of file mpioverride.cpp.
int MPI_Ireduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Ireduce_scatter | ( | const void * | sendbuf, |
void * | recvbuf, | ||
const int | recvcounts[], | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Ireduce_scatter_solver | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Iscan | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Iscatter | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Iscatterv | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | displs[], | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Isend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Isend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Isend.
\additional param[in] name of the calling function
Definition at line 481 of file mpioverride.cpp.
int MPI_Issend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Issend.
\additional param[in] name of the calling function
Definition at line 523 of file mpioverride.cpp.
int MPI_Issend | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Mrecv | ( | void * | buf, |
int | count, | ||
MPI_Datatype | type, | ||
MPI_Message * | message, | ||
MPI_Status * | status | ||
) |
int MPI_Neighbor_allgather | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm | ||
) |
int MPI_Op_commutative | ( | MPI_Op | op, |
int * | commute | ||
) |
int MPI_Op_create | ( | MPI_User_function * | function, |
int | commute, | ||
MPI_Op * | op | ||
) |
int MPI_Op_free | ( | MPI_Op * | op | ) |
int MPI_Probe | ( | int | source, |
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Status * | status | ||
) |
int MPI_Probe | ( | int | source, |
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Status * | status, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1925 of file mpioverride.cpp.
int MPI_Put | ( | const void * | origin_addr, |
int | origin_count, | ||
MPI_Datatype | origin_datatype, | ||
int | target_rank, | ||
MPI_Aint | target_disp, | ||
int | target_count, | ||
MPI_Datatype | target_datatype, | ||
MPI_Win | win | ||
) |
int MPI_Recv | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | source, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Status * | status | ||
) |
int MPI_Recv | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | source, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Status * | status, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Recv.
\additional param[in] name of the calling function
Definition at line 565 of file mpioverride.cpp.
int MPI_Recv_init | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Recv_init | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Recv_init.
\additional param[in] name of the calling function
Definition at line 689 of file mpioverride.cpp.
int MPI_Reduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
int | root, | ||
MPI_Comm | comm | ||
) |
int MPI_Reduce | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
int | root, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 912 of file mpioverride.cpp.
int MPI_Reduce_local | ( | const void * | inbuf, |
void * | inoutbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op | ||
) |
int MPI_Reduce_scatter | ( | const void * | sendbuf, |
void * | recvbuf, | ||
const int | recvcounts[], | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm | ||
) |
int MPI_Reduce_scatter_solver | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm | ||
) |
int MPI_Request_free | ( | MPI_Request * | request | ) |
int MPI_Request_free | ( | MPI_Request * | request, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1857 of file mpioverride.cpp.
int MPI_Request_get_status | ( | MPI_Request | request, |
int * | flag, | ||
MPI_Status * | status | ||
) |
int MPI_Rsend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm | ||
) |
int MPI_Scan | ( | const void * | sendbuf, |
void * | recvbuf, | ||
int | count, | ||
MPI_Datatype | datatype, | ||
MPI_Op | op, | ||
MPI_Comm | comm | ||
) |
int MPI_Scatter | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm | ||
) |
int MPI_Scatter | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1033 of file mpioverride.cpp.
int MPI_Scatterv | ( | const void * | sendbuf, |
const int | sendcount[], | ||
const int | displs[], | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | sndvarname, | ||
const MString & | rcvvarname | ||
) |
[in] | name | the name of the calling function |
[in] | sndvarname | name of the sendbuf |
[in] | rcvvarname | name of the recvbuf |
Definition at line 1074 of file mpioverride.cpp.
int MPI_Scatterv | ( | const void * | sendbuf, |
const int | sendcounts[], | ||
const int | displs[], | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | root, | ||
MPI_Comm | comm | ||
) |
int MPI_Send | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Send.
\additional param[in] name of the calling function
Definition at line 440 of file mpioverride.cpp.
int MPI_Send | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm | ||
) |
int MPI_Send_init | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request, | ||
const MString & | name, | ||
const MString & | varname | ||
) |
Also delivers output to m_log on the execution status of MPI_Send_init.
\additional param[in] name of the calling function
Definition at line 648 of file mpioverride.cpp.
int MPI_Send_init | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Sendrecv | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
int | dest, | ||
int | sendtag, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
int | source, | ||
int | recvtag, | ||
MPI_Comm | comm, | ||
MPI_Status * | status | ||
) |
int MPI_Sendrecv_replace | ( | void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | sendtag, | ||
int | source, | ||
int | recvtag, | ||
MPI_Comm | comm, | ||
MPI_Status * | status | ||
) |
int MPI_Ssend | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm | ||
) |
int MPI_Ssend_init | ( | const void * | buf, |
int | count, | ||
MPI_Datatype | datatype, | ||
int | dest, | ||
int | tag, | ||
MPI_Comm | comm, | ||
MPI_Request * | request | ||
) |
int MPI_Start | ( | MPI_Request * | request | ) |
int MPI_Start | ( | MPI_Request * | request, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1687 of file mpioverride.cpp.
int MPI_Startall | ( | int | count, |
MPI_Request | array_of_requests[] | ||
) |
int MPI_Startall | ( | int | count, |
MPI_Request | array_of_requests[], | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1721 of file mpioverride.cpp.
int MPI_Status_set_cancelled | ( | MPI_Status * | status, |
int | flag | ||
) |
int MPI_Test | ( | MPI_Request * | request, |
int * | flag, | ||
MPI_Status * | status | ||
) |
int MPI_Test | ( | MPI_Request * | request, |
int * | flag, | ||
MPI_Status * | status, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 836 of file mpioverride.cpp.
int MPI_Test_cancelled | ( | const MPI_Status * | status, |
int * | flag | ||
) |
int MPI_Testall | ( | int | count, |
MPI_Request | array_of_requests[], | ||
int * | flag, | ||
MPI_Status | array_of_statuses[] | ||
) |
int MPI_Testany | ( | int | count, |
MPI_Request | array_of_requests[], | ||
int * | index, | ||
int * | flag, | ||
MPI_Status * | status | ||
) |
int MPI_Testsome | ( | int | incount, |
MPI_Request | array_of_requests[], | ||
int * | outcount, | ||
int | array_of_indices[], | ||
MPI_Status | array_of_statuses[] | ||
) |
int MPI_Type_commit | ( | MPI_Datatype * | datatype | ) |
int MPI_Type_commit | ( | MPI_Datatype * | datatype, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1481 of file mpioverride.cpp.
int MPI_Type_contiguous | ( | int | count, |
MPI_Datatype | old_type, | ||
MPI_Datatype * | new_type_p | ||
) |
int MPI_Type_contiguous | ( | int | count, |
MPI_Datatype | old_type, | ||
MPI_Datatype * | new_type_p, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1578 of file mpioverride.cpp.
int MPI_Type_create_darray | ( | int | size, |
int | rank, | ||
int | ndims, | ||
const int | array_of_gsizes[], | ||
const int | array_of_distribs[], | ||
const int | array_of_dargs[], | ||
const int | array_of_psizes[], | ||
int | order, | ||
MPI_Datatype | oldtype, | ||
MPI_Datatype * | newtype | ||
) |
int MPI_Type_create_hindexed | ( | int | count, |
const int | array_of_solverlengths[], | ||
const MPI_Aint | array_of_displacements[], | ||
MPI_Datatype | oldtype, | ||
MPI_Datatype * | newtype | ||
) |
int MPI_Type_create_hindexed | ( | int | count, |
const int | array_of_solverlengths[], | ||
const MPI_Aint | array_of_displacements[], | ||
MPI_Datatype | oldtype, | ||
MPI_Datatype * | newtype, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1545 of file mpioverride.cpp.
int MPI_Type_create_hvector | ( | int | count, |
int | solverlength, | ||
MPI_Aint | stride, | ||
MPI_Datatype | oldtype, | ||
MPI_Datatype * | newtype | ||
) |
int MPI_Type_create_indexed_solver | ( | int | count, |
int | solverlength, | ||
const int | array_of_displacements[], | ||
MPI_Datatype | oldtype, | ||
MPI_Datatype * | newtype | ||
) |
int MPI_Type_free | ( | MPI_Datatype * | datatype | ) |
int MPI_Type_free | ( | MPI_Datatype * | datatype, |
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 1513 of file mpioverride.cpp.
int MPI_Type_set_name | ( | MPI_Datatype | type, |
const char * | type_name | ||
) |
int MPI_Type_struct | ( | int | count, |
int * | array_of_solverlengths, | ||
MPI_Aint * | array_of_displacements, | ||
MPI_Datatype * | array_of_types, | ||
MPI_Datatype * | newtype | ||
) |
int MPI_Type_vector | ( | int | count, |
int | solverlength, | ||
int | stride, | ||
MPI_Datatype | oldtype, | ||
MPI_Datatype * | newtype | ||
) |
int MPI_Wait | ( | MPI_Request * | request, |
MPI_Status * | status | ||
) |
int MPI_Wait | ( | MPI_Request * | request, |
MPI_Status * | status, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 732 of file mpioverride.cpp.
int MPI_Waitall | ( | int | count, |
MPI_Request * | request, | ||
MPI_Status * | status | ||
) |
int MPI_Waitall | ( | int | count, |
MPI_Request * | request, | ||
MPI_Status * | status, | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 766 of file mpioverride.cpp.
int MPI_Waitany | ( | int | count, |
MPI_Request | array_of_requests[], | ||
int * | index, | ||
MPI_Status * | status | ||
) |
int MPI_Waitsome | ( | int | incount, |
MPI_Request | array_of_requests[], | ||
int * | outcount, | ||
int | array_of_indices[], | ||
MPI_Status | array_of_statuses[] | ||
) |
int MPI_Waitsome | ( | int | incount, |
MPI_Request | array_of_requests[], | ||
int * | outcount, | ||
int | array_of_indices[], | ||
MPI_Status | array_of_statuses[], | ||
const MString & | name | ||
) |
[in] | name | the name of the calling function |
Definition at line 801 of file mpioverride.cpp.
int MPI_Win_fence | ( | int | assert, |
MPI_Win | win | ||
) |
int MPIX_Allgather_init | ( | const void * | sendbuf, |
int | sendcount, | ||
MPI_Datatype | sendtype, | ||
void * | recvbuf, | ||
int | recvcount, | ||
MPI_Datatype | recvtype, | ||
MPI_Comm | comm, | ||
MPI_Info | info, | ||
MPI_Request * | request | ||
) |