Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / examples / smpi / mc / only_send_deterministic.c
1 /* ../../../smpi_script/bin/smpirun -hostfile hostfile_send_deterministic -platform ../../platforms/cluster_backbone.xml -np 3 --cfg=smpi/send-is-detached-thresh:0 gdb\ --args\ ./send_deterministic */
2
3 /* Copyright (c) 2009-2023. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include <stdio.h>
9 #include <mpi.h>
10
11 int main(int argc, char **argv)
12 {
13   int recv_buff;
14   int size;
15   int rank;
16   MPI_Status status;
17
18   /* Initialize MPI */
19   int err = MPI_Init(&argc, &argv);
20   if (err != MPI_SUCCESS) {
21     printf("MPI initialization failed!\n");
22     exit(1);
23   }
24
25   MPI_Comm_size(MPI_COMM_WORLD, &size);   /* Get nr of tasks */
26   MPI_Comm_rank(MPI_COMM_WORLD, &rank);   /* Get id of this process */
27   if (size < 2) {
28     printf("run this program with at least 2 processes \n");
29     MPI_Finalize();
30     exit(0);
31   }
32
33   if (rank == 0) {
34     for (int i = 0; i < size - 1; i++) {
35       MPI_Recv(&recv_buff, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
36     }
37   }else{
38     MPI_Send(&rank, 1, MPI_INT, 0, 42, MPI_COMM_WORLD);
39   }
40
41   MPI_Finalize();
42
43   return 0;
44 }