Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1039812b9567ed1e8e7051350fc15e376308e41b
[simgrid.git] / src / smpi / colls / alltoallv-pair-one-barrier.c
1 /* Copyright (c) 2013-2014. 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.h"
8 /*****************************************************************************
9
10  * Function: alltoall_pair
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 when P is power of two. In each phase of P - 1
24            phases, nodes in pair communicate their data.
25
26  * Auther: Ahmad Faraj
27
28  ****************************************************************************/
29 int
30 smpi_coll_tuned_alltoallv_pair_one_barrier(void *send_buff, int *send_counts, int *send_disps,
31                                           MPI_Datatype send_type,
32                                           void *recv_buff,  int *recv_counts, int *recv_disps,                                                                                  MPI_Datatype recv_type, MPI_Comm comm)
33 {
34
35   MPI_Aint send_chunk, recv_chunk;
36   MPI_Status s;
37   int i, src, dst, rank, num_procs;
38   int tag = COLL_TAG_ALLTOALLV;
39
40   char *send_ptr = (char *) send_buff;
41   char *recv_ptr = (char *) recv_buff;
42
43   rank = smpi_comm_rank(comm);
44   num_procs = smpi_comm_size(comm);
45
46   if((num_procs&(num_procs-1)))
47     THROWF(arg_error,0, "alltoallv pair algorithm can't be used with non power of two number of processes ! ");
48
49   send_chunk = smpi_datatype_get_extent(send_type);
50   recv_chunk = smpi_datatype_get_extent(recv_type);
51
52   smpi_mpi_barrier(comm);
53   for (i = 0; i < num_procs; i++) {
54     src = dst = rank ^ i;
55     smpi_mpi_sendrecv(send_ptr + send_disps[dst] * send_chunk, send_counts[dst], send_type, dst,
56                  tag, recv_ptr + recv_disps[src] * recv_chunk, recv_counts[src], recv_type,
57                  src, tag, comm, &s);
58   }
59
60   return MPI_SUCCESS;
61 }