Changeset 16560 for issm/trunk/src/c/toolkits/mpi/issmmpi.cpp
- Timestamp:
- 10/28/13 14:43:03 (11 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 16138-16453,16455-16554
- Property svn:mergeinfo changed
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c/toolkits/mpi/issmmpi.cpp
r16137 r16560 110 110 }/*}}}*/ 111 111 int ISSM_MPI_Allreduce(void *sendbuf, void *recvbuf, int count, ISSM_MPI_Datatype datatype, ISSM_MPI_Op op, ISSM_MPI_Comm comm){/*{{{*/ 112 112 113 113 int rc=0; 114 114 #ifdef _HAVE_MPI_ … … 178 178 }/*}}}*/ 179 179 int ISSM_MPI_Comm_free(ISSM_MPI_Comm *comm){ /*{{{*/ 180 180 181 181 int rc=0; 182 182 #ifdef _HAVE_MPI_ … … 203 203 }/*}}}*/ 204 204 int ISSM_MPI_Comm_size( ISSM_MPI_Comm comm, int *size){ /*{{{*/ 205 205 206 206 int rc=0; 207 207 #ifdef _HAVE_MPI_ … … 263 263 }/*}}}*/ 264 264 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){/*{{{*/ 265 265 266 266 int rc=0; 267 267 assert(sendtype==recvtype); // we handle only identical representations
Note:
See TracChangeset
for help on using the changeset viewer.