Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initialize arrays at declaration, and remove use of deprecated bzero().
[simgrid.git] / teshsuite / smpi / dsend.c
1 /* Copyright (c) 2011-2013. 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 /* This program simply does a very small exchange to test whether using SIMIX dsend to model the eager mode works */
8
9 #include <stdio.h>
10 #include <mpi.h>
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(dsend,"the dsend test");
13
14 int main(int argc, char *argv[]) {
15   int rank;
16   int data=11;
17    
18
19   MPI_Init(&argc, &argv);
20   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
21    
22   if (rank==1) {
23     data=22;
24     MPI_Send(&data,1,MPI_INT,(rank+1)%2,666,MPI_COMM_WORLD);
25 //   smpi_sleep(1000);
26   } else {
27     MPI_Recv(&data,1,MPI_INT,MPI_ANY_SOURCE,666,MPI_COMM_WORLD,NULL);
28     if (data !=22) {
29       printf("rank %d: Damn, data does not match (got %d)\n",rank, data);
30     }
31   }
32
33   XBT_INFO("rank %d: data exchanged", rank);
34   MPI_Finalize();
35   return 0;
36 }