Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a small bug-inducing test, for the previous fix.
[simgrid.git] / teshsuite / smpi / coll-allgather / coll-allgather.c
1 /* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <stdlib.h>
7 #include <stdio.h>
8 #include <string.h>
9 #include <errno.h>
10 #include "mpi.h"
11 #include <time.h>
12 #include "simgrid/actor.h"
13
14 int main(int argc, char *argv[])
15 {
16   int rank;
17   int size;
18   int status;
19
20   srand(sg_actor_self_get_pid());
21   int randomTime = rand() %5;
22   sleep(randomTime);
23
24   MPI_Init(&argc, &argv);
25   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
26   MPI_Comm_size(MPI_COMM_WORLD, &size);
27   MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_RETURN);
28
29   int count = 2;
30   int* sb = (int *) xbt_malloc(count * sizeof(int));
31   int* rb = (int *) xbt_malloc(count * size * sizeof(int));
32
33   for (int i = 0; i < count; ++i)
34     sb[i] = rank * count + i;
35   for (int i = 0; i < count * size; ++i)
36     rb[i] = 0;
37
38   status = MPI_Allgather(NULL, count, MPI_INT, rb, count, MPI_INT, MPI_COMM_WORLD);
39   if(status!=MPI_ERR_BUFFER)
40     printf("MPI_Allgather did not return MPI_ERR_BUFFER for empty sendbuf\n");
41   status = MPI_Allgather(sb, -1, MPI_INT, rb, count, MPI_INT, MPI_COMM_WORLD);
42   if(status!=MPI_ERR_COUNT)
43     printf("MPI_Allgather did not return MPI_ERR_COUNT for -1 sendcount\n");
44   status = MPI_Allgather(sb, count, MPI_DATATYPE_NULL, rb, count, MPI_INT, MPI_COMM_WORLD);
45   if(status!=MPI_ERR_TYPE)
46     printf("MPI_Allgather did not return MPI_ERR_TYPE for MPI_DATATYPE_NULL sendtype\n");
47   status = MPI_Allgather(sb, count, MPI_INT, NULL, count, MPI_INT, MPI_COMM_WORLD);
48   if(status!=MPI_ERR_BUFFER)
49     printf("MPI_Allgather did not return MPI_ERR_BUFFER for empty recvbuf\n");
50   status = MPI_Allgather(sb, count, MPI_INT, rb, -1, MPI_INT, MPI_COMM_WORLD);
51   if(status!=MPI_ERR_COUNT)
52     printf("MPI_Allgather did not return MPI_ERR_COUNT for -1 recvcount\n");
53   status = MPI_Allgather(sb, count, MPI_INT, rb, count, MPI_DATATYPE_NULL, MPI_COMM_WORLD);
54   if(status!=MPI_ERR_TYPE)
55     printf("MPI_Allgather did not return MPI_ERR_TYPE for MPI_DATATYPE_NULL recvtype\n");
56   status = MPI_Allgather(sb, count, MPI_INT, rb, count, MPI_INT, MPI_COMM_NULL);
57   if(status!=MPI_ERR_COMM)
58     printf("MPI_Allgather did not return MPI_ERR_COMM for MPI_COMM_NULL comm\n");
59
60   printf("[%d] sndbuf=[", rank);
61   for (int i = 0; i < count; i++)
62     printf("%d ", sb[i]);
63   printf("]\n");
64
65   status = MPI_Allgather(sb, count, MPI_INT, rb, count, MPI_INT, MPI_COMM_WORLD);
66
67   printf("[%d] rcvbuf=[", rank);
68   for (int i = 0; i < count * size; i++)
69     printf("%d ", rb[i]);
70   printf("]\n");
71
72   if (rank == 0 && status != MPI_SUCCESS) {
73     printf("allgather returned %d\n", status);
74     fflush(stdout);
75   }
76   xbt_free(sb);
77   xbt_free(rb);
78   MPI_Finalize();
79   return EXIT_SUCCESS;
80 }