Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / teshsuite / smpi / coll-allgather / coll-allgather.c
index a8c7a5d..a6600f8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -8,6 +8,8 @@
 #include <string.h>
 #include <errno.h>
 #include "mpi.h"
+#include <time.h>
+#include "simgrid/actor.h"
 
 int main(int argc, char *argv[])
 {
@@ -15,6 +17,9 @@ int main(int argc, char *argv[])
   int size;
   int status;
 
+  int randomTime = sg_actor_self_get_pid() % 5;
+  sleep(randomTime);
+
   MPI_Init(&argc, &argv);
   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
   MPI_Comm_size(MPI_COMM_WORLD, &size);
@@ -70,5 +75,5 @@ int main(int argc, char *argv[])
   xbt_free(sb);
   xbt_free(rb);
   MPI_Finalize();
-  return (EXIT_SUCCESS);
+  return EXIT_SUCCESS;
 }