X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f186fd6470cd6853b97c53782c710745c628e810..28335d43a1e64d3a412e8d6b86e59a389852b0d1:/teshsuite/smpi/isp/umpire/group-no-error3.c diff --git a/teshsuite/smpi/isp/umpire/group-no-error3.c b/teshsuite/smpi/isp/umpire/group-no-error3.c deleted file mode 100644 index 2587eb1a10..0000000000 --- a/teshsuite/smpi/isp/umpire/group-no-error3.c +++ /dev/null @@ -1,63 +0,0 @@ -/* -*- Mode: C; -*- */ -/* Creator: Bronis R. de Supinski (bronis@llnl.gov) */ - -/* group-no-error3.c -- "correctly" construct many groups and free them */ - -#ifndef lint -static char *rcsid = - "$Header: /usr/gapps/asde/cvs-vault/umpire/tests/group-no-error3.c,v 1.1 2003/01/13 18:31:48 bronis Exp $"; -#endif - - -/* NOTE: Some value of ITERATIONS will imply resource exhaustion */ -/* either in Umpire or MPI no matter how things are implemented */ -/* the best we can hope for is to fail gracefully... */ -/* UNKNOWN N breaks umpire due to running out of memory as of 12/20/02... */ -/* FAILURE IS NOT GRACEFUL AS OF THIS TIME... */ -#define ITERATIONS 100 - - -#include -#include -#include "mpi.h" - -#define buf_size 128 - -int -main (int argc, char **argv) -{ - int nprocs = -1; - int rank = -1; - int i; - char processor_name[128]; - int namelen = 128; - MPI_Group worldgroup, newgroup[ITERATIONS]; - - /* init */ - MPI_Init (&argc, &argv); - MPI_Comm_size (MPI_COMM_WORLD, &nprocs); - MPI_Comm_rank (MPI_COMM_WORLD, &rank); - MPI_Get_processor_name (processor_name, &namelen); - printf ("(%d) is alive on %s\n", rank, processor_name); - fflush (stdout); - - MPI_Comm_group (MPI_COMM_WORLD, &worldgroup); - - MPI_Barrier (MPI_COMM_WORLD); - - for (i = 0; i < ITERATIONS; i++) { - /* create groups that don't include the local rank... */ - MPI_Group_excl (worldgroup, 1, &rank, &newgroup[i]); - } - - for (i = 0; i < ITERATIONS; i++) { - MPI_Group_free (&newgroup[i]); - } - - MPI_Group_free (&worldgroup); - MPI_Barrier (MPI_COMM_WORLD); - printf ("(%d) Finished normally\n", rank); - MPI_Finalize (); -} - -/* EOF */