Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / examples / smpi / ampi_test / ampi_test.cpp
1 /* Copyright (c) 2009-2020. 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 <simgrid/s4u/Actor.hpp>
7 #include "smpi/smpi.h"
8 #include "smpi/sampi.h"
9
10 int main(int argc, char* argv[])
11 {
12   MPI_Init(&argc, &argv);
13   void* pointer = malloc(100 * sizeof(int));
14   free(pointer);
15   pointer = malloc(100 * sizeof(int));
16   int rank;
17   int err = MPI_Comm_rank(MPI_COMM_WORLD, &rank);   /* Get id of this process */
18   if (err != MPI_SUCCESS) {
19     fprintf(stderr, "MPI_Comm_rank failed: %d", err);
20     MPI_Abort(MPI_COMM_WORLD, EXIT_FAILURE);
21     exit(EXIT_FAILURE);
22   }
23   AMPI_Iteration_in(MPI_COMM_WORLD);
24   simgrid::s4u::this_actor::sleep_for(rank);
25   AMPI_Iteration_out(MPI_COMM_WORLD);
26
27   AMPI_Iteration_in(MPI_COMM_WORLD);
28   simgrid::s4u::this_actor::sleep_for(rank);
29   AMPI_Iteration_out(MPI_COMM_WORLD);
30   if (rank == 0) {
31     free(pointer);
32     pointer = nullptr;
33   }
34   AMPI_Migrate(MPI_COMM_WORLD);
35   if (rank != 0)
36     free(pointer);
37
38   MPI_Finalize();
39   return 0;
40 }
41