Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / examples / smpi / mc / bugged2.c
1 /* A simple bugged MPI_ISend and MPI_IRecv test */
2
3 /* Copyright (c) 2009-2023. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include <mpi.h>
11 #include <simgrid/modelchecker.h>
12
13 int main(int argc, char **argv)
14 {
15   int x;
16   int y;
17   int size;
18   int rank;
19   MPI_Status status;
20
21   /* Initialize MPI */
22   int err = MPI_Init(&argc, &argv);
23   if (err != MPI_SUCCESS) {
24     printf("MPI initialization failed!\n");
25     exit(1);
26   }
27
28   MPI_Comm_size(MPI_COMM_WORLD, &size);   /* Get nr of tasks */
29   MPI_Comm_rank(MPI_COMM_WORLD, &rank);   /* Get id of this process */
30   if (size % 3 != 0) {
31     printf("run this program with exactly 3*N processes \n");
32     MPI_Finalize();
33     exit(0);
34   }
35
36   if (rank % 3 == 0) {
37     MPI_Recv(&x, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
38     printf("(%d) x <- %d\n", rank, x);
39     MPI_Recv(&y, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
40     printf("(%d) y <- %d\n", rank, y);
41   }else{
42     MPI_Send(&rank, 1, MPI_INT, (rank / 3) * 3, 42, MPI_COMM_WORLD);
43     printf("Sent %d to rank %d\n", rank, (rank / 3) * 3);
44   }
45
46   MPI_Finalize();
47
48   return 0;
49 }