X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f7bfc7f9646c3f1c3b350a78b2fae5a35ea939f7..da41b147264c6eb7febc5be6cfb2380eab69ba70:/src/smpi/private.h diff --git a/src/smpi/private.h b/src/smpi/private.h index cf468565ca..156337f827 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -211,6 +211,8 @@ void smpi_mpi_barrier(MPI_Comm comm); void smpi_mpi_gather(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm); +void smpi_mpi_reduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts, + MPI_Datatype datatype, MPI_Op op, MPI_Comm comm); void smpi_mpi_gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs, MPI_Datatype recvtype, int root, MPI_Comm comm);