Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8f6137bb796d6685be8839b1e6d8830a77dcbe63
[simgrid.git] / src / smpi / colls / alltoall-native.c
1 int
2 alltoall_native(void * send_buff, int send_count,
3                 MPI_Datatype send_type, void * recv_buff,
4                 int recv_count, MPI_Datatype recv_type,
5                 MPI_Comm comm)
6 {
7   return MPI_Alltoall(send_buff, send_count, send_type, recv_buff, recv_count,
8                       recv_type, comm);
9 }