Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / teshsuite / smpi / coll-alltoallv / coll-alltoallv.c
1 /* Copyright (c) 2013-2014, 2016-2017. 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 /*
8  *  (C) 2001 by Argonne National Laboratory.
9  *      See COPYRIGHT in top-level directory.
10  */
11 #include <string.h>
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include "mpi.h"
15
16 /* This program tests MPI_Alltoallv by having processor i send different amounts of data to each processor.
17
18    TODO As there are separate send and receive types to alltoallv, there need to be tests to rearrange data on the fly.
19    The first test sends i items to processor i from all processors.
20    Currently, the test uses only MPI_INT; this is adequate for testing systems that use point-to-point operations
21
22    Example values for 3 processes:
23  * <0> sbuf: (#9):   [0][1][2][3][4][5][6][7][8]
24    <0> scount: (#3): [0][1][2]
25    <0> rcount: (#3): [0][0][0]
26    <0> sdisp: (#3):  [0][1][3]
27    <0> rdisp: (#3):  [0][0][0]
28
29    <1> sbuf: (#9):   [100][101][102][103][104][105][106][107][108]
30    <1> scount: (#3): [0][1][2]
31    <1> rcount: (#3): [1][1][1]
32    <1> sdisp: (#3):  [0][1][3]
33    <1> rdisp: (#3):  [0][1][2]
34
35    <2> sbuf: (#9):   [200][201][202][203][204][205][206][207][208]
36    <2> scount: (#3): [0][1][2]
37    <2> rcount: (#3): [2][2][2]
38    <2> sdisp: (#3):  [0][1][3]
39    <2> rdisp: (#3):  [0][2][4]
40
41    after MPI_Alltoallv :
42    <0> rbuf: (#9):   [-1][-1][-1][-1][-1][-1][-1][-1][-1]
43    <1> rbuf: (#9):   [1][101][201][-1][-1][-1][-1][-1][-1]
44    <2> rbuf: (#9):   [3][4][103][104][203][204][-1][-1][-1]
45 */
46
47 static void print_buffer_int(void *buf, int len, char *msg, int rank)
48 {
49   printf("[%d] %s (#%d): ", rank, msg, len);
50   for (int tmp = 0; tmp < len; tmp++) {
51     int* v = buf;
52     printf("[%d]", v[tmp]);
53   }
54   printf("\n");
55   free(msg);
56 }
57
58 int main(int argc, char **argv)
59 {
60   MPI_Comm comm;
61   int i;
62   int rank;
63   int size;
64
65   MPI_Init(&argc, &argv);
66
67   comm = MPI_COMM_WORLD;
68
69   /* Create the buffer */
70   MPI_Comm_size(comm, &size);
71   MPI_Comm_rank(comm, &rank);
72   int* sbuf = (int *) xbt_malloc(size * size * sizeof(int));
73   int* rbuf = (int *) xbt_malloc(size * size * sizeof(int));
74
75   /* Load up the buffers */
76   for (i = 0; i < size * size; i++) {
77     sbuf[i] = i + 100 * rank;
78     rbuf[i] = -1;
79   }
80
81   /* Create and load the arguments to alltoallv */
82   int* sendcounts = (int*)xbt_malloc(size * sizeof(int));
83   int* recvcounts = (int*)xbt_malloc(size * sizeof(int));
84   int* rdispls    = (int*)xbt_malloc(size * sizeof(int));
85   int* sdispls    = (int*)xbt_malloc(size * sizeof(int));
86   for (i = 0; i < size; i++) {
87     sendcounts[i] = i;
88     recvcounts[i] = rank;
89     rdispls[i] = i * rank;
90     sdispls[i] = (i * (i + 1)) / 2;
91   }
92
93   print_buffer_int( sbuf, size*size, strdup("sbuf:"),rank);
94   print_buffer_int( sendcounts, size, strdup("scount:"),rank);
95   print_buffer_int( recvcounts, size, strdup("rcount:"),rank);
96   print_buffer_int( sdispls, size, strdup("sdisp:"),rank);
97   print_buffer_int( rdispls, size, strdup("rdisp:"),rank);
98
99   MPI_Alltoallv(sbuf, sendcounts, sdispls, MPI_INT, rbuf, recvcounts, rdispls, MPI_INT, comm);
100
101   print_buffer_int( rbuf, size*size, strdup("rbuf:"),rank);
102
103   MPI_Barrier(MPI_COMM_WORLD);
104   if (0 == rank) {
105     printf("Alltoallv TEST COMPLETE.\n");
106   }
107   free(sdispls);
108   free(rdispls);
109   free(recvcounts);
110   free(sendcounts);
111   free(rbuf);
112   free(sbuf);
113
114   MPI_Finalize();
115   return 0;
116 }