Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / smpi / colls / alltoall / alltoall-ring.cpp
1 /* Copyright (c) 2013-2022. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "../colls_private.hpp"
8 /*****************************************************************************
9
10  * Function: alltoall_ring
11
12  * Return: int
13
14  * Inputs:
15     send_buff: send input buffer
16     send_count: number of elements to send
17     send_type: data type of elements being sent
18     recv_buff: receive output buffer
19     recv_count: number of elements to received
20     recv_type: data type of elements being received
21     comm: communicator
22
23  * Descrp: Function works in P - 1 steps. In step i, node j - i -> j -> j + i.
24
25  * Author: Ahmad Faraj
26
27  ****************************************************************************/
28 namespace simgrid {
29 namespace smpi {
30 int alltoall__ring(const void *send_buff, int send_count,
31                    MPI_Datatype send_type, void *recv_buff,
32                    int recv_count, MPI_Datatype recv_type,
33                    MPI_Comm comm)
34 {
35   MPI_Status s;
36   MPI_Aint send_chunk, recv_chunk;
37   int i, src, dst, rank, num_procs;
38   int tag = COLL_TAG_ALLTOALL;
39
40   char *send_ptr = (char *) send_buff;
41   char *recv_ptr = (char *) recv_buff;
42
43   rank = comm->rank();
44   num_procs = comm->size();
45   send_chunk = send_type->get_extent();
46   recv_chunk = recv_type->get_extent();
47
48   send_chunk *= send_count;
49   recv_chunk *= recv_count;
50
51   for (i = 0; i < num_procs; i++) {
52     src = (rank - i + num_procs) % num_procs;
53     dst = (rank + i) % num_procs;
54
55     Request::sendrecv(send_ptr + dst * send_chunk, send_count, send_type, dst,
56                  tag, recv_ptr + src * recv_chunk, recv_count, recv_type,
57                  src, tag, comm, &s);
58   }
59   return MPI_SUCCESS;
60 }
61 }
62 }