Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'actor-priority' of https://github.com/Takishipp/simgrid into Takishipp...
[simgrid.git] / teshsuite / smpi / coll-allgather / coll-allgather.c
1 /* Copyright (c) 2009-2010, 2013-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 #include <stdlib.h>
8 #include <stdio.h>
9 #include <string.h>
10 #include <errno.h>
11 #include "mpi.h"
12
13 #ifndef EXIT_SUCCESS
14 #define EXIT_SUCCESS 0
15 #define EXIT_FAILURE 1
16 #endif
17
18 int main(int argc, char *argv[])
19 {
20   int rank;
21   int size;
22   int status;
23
24   MPI_Init(&argc, &argv);
25   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
26   MPI_Comm_size(MPI_COMM_WORLD, &size);
27
28   int count = 2;
29   int* sb = (int *) xbt_malloc(count * sizeof(int));
30   int* rb = (int *) xbt_malloc(count * size * sizeof(int));
31
32   for (int i = 0; i < count; ++i)
33     sb[i] = rank * count + i;
34   for (int i = 0; i < count * size; ++i)
35     rb[i] = 0;
36
37   printf("[%d] sndbuf=[", rank);
38   for (int i = 0; i < count; i++)
39     printf("%d ", sb[i]);
40   printf("]\n");
41
42   status = MPI_Allgather(sb, count, MPI_INT, rb, count, MPI_INT, MPI_COMM_WORLD);
43
44   printf("[%d] rcvbuf=[", rank);
45   for (int i = 0; i < count * size; i++)
46     printf("%d ", rb[i]);
47   printf("]\n");
48
49   if (rank == 0 && status != MPI_SUCCESS) {
50     printf("allgather returned %d\n", status);
51     fflush(stdout);
52   }
53   xbt_free(sb);
54   xbt_free(rb);
55   MPI_Finalize();
56   return (EXIT_SUCCESS);
57 }