Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix build without tracing
[simgrid.git] / src / smpi / colls / alltoallv-ring-one-barrier.c
1 #include "colls_private.h"
2 /*****************************************************************************
3
4  * Function: alltoall_ring
5
6  * Return: int
7
8  * Inputs:
9     send_buff: send input buffer
10     send_count: number of elements to send
11     send_type: data type of elements being sent
12     recv_buff: receive output buffer
13     recv_count: number of elements to received
14     recv_type: data type of elements being received
15     comm: communicator
16
17  * Descrp: Function works in P - 1 steps. In step i, node j - i -> j -> j + i.
18
19  * Auther: Ahmad Faraj
20
21  ****************************************************************************/
22 int
23 smpi_coll_tuned_alltoallv_ring_one_barrier(void *send_buff, int *send_counts, int *send_disps,
24                                           MPI_Datatype send_type,
25                                           void *recv_buff, int *recv_counts, int *recv_disps,
26                                           MPI_Datatype recv_type, MPI_Comm comm)
27 {
28   MPI_Status s;
29   MPI_Aint send_chunk, recv_chunk;
30   int i, src, dst, rank, num_procs;
31   int tag = COLL_TAG_ALLTOALLV;
32
33   char *send_ptr = (char *) send_buff;
34   char *recv_ptr = (char *) recv_buff;
35
36   rank = smpi_comm_rank(comm);
37   num_procs = smpi_comm_size(comm);
38   send_chunk = smpi_datatype_get_extent(send_type);
39   recv_chunk = smpi_datatype_get_extent(recv_type);
40
41   smpi_mpi_barrier(comm);
42   for (i = 0; i < num_procs; i++) {
43     src = (rank - i + num_procs) % num_procs;
44     dst = (rank + i) % num_procs;
45
46     smpi_mpi_sendrecv(send_ptr + send_disps[dst] * send_chunk, send_counts[dst], send_type, dst,
47                  tag, recv_ptr + recv_disps[src] * recv_chunk, recv_counts[src], recv_type,
48                  src, tag, comm, &s);
49   }
50   return MPI_SUCCESS;
51 }