Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Template implem of cond_timedwait in sthread
[simgrid.git] / teshsuite / smpi / coll-reduce / coll-reduce.c
index 6bec6714a468dd7010e93b8e77404fa14c30992a..1f3560df44dc46e8f0ac4e271ed594d35f5029cc 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2019. The SimGrid Team.
+/* Copyright (c) 2009-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -20,6 +20,7 @@ int main(int argc, char *argv[])
   MPI_Init(&argc, &argv);
   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
   MPI_Comm_size(MPI_COMM_WORLD, &size);
+  MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_RETURN);
 
   unsigned long long* sb = (unsigned long long *) xbt_malloc(size * sizeof(unsigned long long));
   unsigned long long* rb = (unsigned long long *) xbt_malloc(size * sizeof(unsigned long long));
@@ -45,7 +46,7 @@ int main(int argc, char *argv[])
     printf("MPI_Reduce did not return MPI_ERR_TYPE for MPI_DATATYPE_NULL type\n");
   status = MPI_Reduce(sb, rb, size, MPI_UNSIGNED_LONG_LONG, MPI_OP_NULL, root, MPI_COMM_WORLD);
   if(status!=MPI_ERR_OP)
-    printf("MPI_Reduce did not return MPI_ERR_COMM for MPI_OP_NULL op\n");
+    printf("MPI_Reduce did not return MPI_ERR_OP for MPI_OP_NULL op\n");
   status = MPI_Reduce(sb, rb, size, MPI_UNSIGNED_LONG_LONG, MPI_SUM, -1, MPI_COMM_WORLD);
   if(status!=MPI_ERR_ROOT)
     printf("MPI_Reduce did not return MPI_ERR_ROOT for root -1\n");
@@ -89,8 +90,8 @@ int main(int argc, char *argv[])
       fflush(stdout);
     }
   }
-  free(sb);
-  free(rb);
+  xbt_free(sb);
+  xbt_free(rb);
   MPI_Finalize();
-  return (EXIT_SUCCESS);
+  return EXIT_SUCCESS;
 }