X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c73f2fe7c4b3dc6deeae12389ae22387928f0872..d74bb413a4b25a580d7cfc96065b638292a2e679:/src/smpi/private.h diff --git a/src/smpi/private.h b/src/smpi/private.h index bc1580e55c..8b61ea7387 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -1,7 +1,7 @@ #ifndef SMPI_PRIVATE_H #define SMPI_PRIVATE_H -#include "xbt/mallocator.h" +#include "xbt.h" #include "xbt/xbt_os_time.h" #include "simix/simix.h" #include "smpi/smpi.h" @@ -83,6 +83,7 @@ void smpi_mpi_scatter(void* sendbuf, int sendcount, MPI_Datatype sendtype, void* void smpi_mpi_scatterv(void* sendbuf, int* sendcounts, int* displs, MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm); void smpi_mpi_reduce(void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm); void smpi_mpi_allreduce(void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm); +void smpi_mpi_scan(void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm); void nary_tree_bcast(void* buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm, int arity); void nary_tree_barrier(MPI_Comm comm, int arity);