Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Try to improve getline portability...
[simgrid.git] / src / smpi / smpi_coll_private.h
index 7647b0e..31a0bd7 100644 (file)
@@ -19,3 +19,11 @@ int smpi_coll_tuned_alltoall_pairwise (void *sendbuf, int sendcount, MPI_Datatyp
                                           void* recvbuf, int recvcount, MPI_Datatype recvdatatype,
                                                   MPI_Comm comm);
 
+int smpi_coll_tuned_alltoall_basic_linear(void *sbuf, int scount, MPI_Datatype sdtype,
+                                void* rbuf, int rcount, MPI_Datatype rdtype, MPI_Comm comm);
+
+int smpi_coll_basic_alltoallv(void *sendbuf, int *scounts, int *sdisps, MPI_Datatype datatype, 
+                                 void *recvbuf, int *rcounts, int *rdisps, MPI_Datatype recvtype,
+                                   MPI_Comm comm);
+
+