Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new tracing options to reduce the size of the traces
[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 }