Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
68dd966cc978d932bfe5523c1b102caf9dff23fc
[simgrid.git] / examples / smpi / mc / bugged1.c
1 /* A simple bugged MPI_ISend and MPI_IRecv test */
2
3 /* Copyright (c) 2009, 2011. 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
14 int main(int argc, char **argv)
15 {
16   int recv_buff, err, size, rank, i;
17   MPI_Status status;
18
19   /* Initialize MPI */
20   err = MPI_Init(&argc, &argv);
21   if (err != MPI_SUCCESS) {
22     printf("MPI initialization failed!\n");
23     exit(1);
24   }
25
26   err = MPI_Comm_size(MPI_COMM_WORLD, &size);   /* Get nr of tasks */
27   err = MPI_Comm_rank(MPI_COMM_WORLD, &rank);   /* Get id of this process */
28   if (size < 2) {
29     printf("run this program with exactly 2 processes (-np 2)\n");
30     MPI_Finalize();
31     exit(0);
32   }
33
34   if (rank == 0) {
35     printf("MPI_ISend / MPI_IRecv Test \n");
36
37     for(i=0; i < size - 1; i++){
38       MPI_Recv(&recv_buff, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
39       printf("Message received from %d\n", recv_buff);
40     }
41
42     printf("recv_buff = %d\n", recv_buff);
43     //#ifdef HAVE_MC
44     //MC_assert(recv_buff == size - 1);
45     //#endif
46
47   }else{
48     MPI_Send(&rank, 1, MPI_INT, 0, 42, MPI_COMM_WORLD);
49     printf("Sent %d to rank 0\n", rank);
50   }
51
52   MPI_Finalize();
53
54   return 0;
55 }