Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enum ResultStatus: valid is not a valid value. Use value.
[simgrid.git] / teshsuite / smpi / coll-alltoall / coll-alltoall.c
1 /* Copyright (c) 2009-2010, 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 <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 i;
23   int status;
24
25   MPI_Init(&argc, &argv);
26   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
27   MPI_Comm_size(MPI_COMM_WORLD, &size);
28
29   int* sb = (int *) xbt_malloc(size * sizeof(int) * 2);
30   int* rb = (int *) xbt_malloc(size * sizeof(int) * 2);
31
32   for (i = 0; i < size; ++i) {
33     sb[i] = rank*size + i;
34     rb[i] = 0;
35   }
36
37   printf("[%d] sndbuf=[", rank);
38   for (i = 0; i < size; i++)
39     printf("%d ", sb[i]);
40   printf("]\n");
41
42   status = MPI_Alltoall(sb, 1, MPI_INT, rb, 1, MPI_INT, MPI_COMM_WORLD);
43
44   printf("[%d] rcvbuf=[", rank);
45   for (i = 0; i < size; i++)
46     printf("%d ", rb[i]);
47   printf("]\n");
48
49   if (rank == 0) {
50     if (status != MPI_SUCCESS) {
51       printf("all_to_all returned %d\n", status);
52       fflush(stdout);
53     }
54   }
55   xbt_free(sb);
56   xbt_free(rb);
57   MPI_Finalize();
58   return (EXIT_SUCCESS);
59 }