Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the ISP test suite (not free, superseeded by MBI)
[simgrid.git] / teshsuite / smpi / isp / umpire / intercomm_merge-deadlock.c
diff --git a/teshsuite/smpi/isp/umpire/intercomm_merge-deadlock.c b/teshsuite/smpi/isp/umpire/intercomm_merge-deadlock.c
deleted file mode 100644 (file)
index 6d35a0a..0000000
+++ /dev/null
@@ -1,150 +0,0 @@
-/* -*- Mode: C; -*- */
-/* Creator: Bronis R. de Supinski (bronis@llnl.gov) Fri Mar  17 2000 */
-/* no-error.c -- do some MPI calls without any errors */
-
-#include <stdio.h>
-#include "mpi.h"
-
-#define buf_size 128
-
-#define INTERCOMM_CREATE_TAG 666
-
-int
-main (int argc, char **argv)
-{
-  int nprocs = -1;
-  int rank = -1;
-  char processor_name[128];
-  int namelen = 128;
-  int buf0[buf_size];
-  int buf1[buf_size];
-  MPI_Status status;
-  MPI_Comm temp, intercomm, intercomm2, comm, comm2;
-  int trank, tnprocs;
-  int drank, dnprocs, rleader;
-
-  /* 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_Barrier (MPI_COMM_WORLD);
-
-  if (nprocs < 4) {
-    printf ("not enough tasks\n");
-  }
-  else {
-    /* need to make split communicator temporarily... */
-    MPI_Comm_split (MPI_COMM_WORLD, rank % 2, nprocs - rank, &temp);
-
-    if (temp != MPI_COMM_NULL) {
-      /* create an intercommunicator temporarily so can merge it... */
-      rleader = ((rank + nprocs) % 2) ?  nprocs - 2 : nprocs - 1;
-      MPI_Intercomm_create (temp, 0, MPI_COMM_WORLD, rleader,
-                           INTERCOMM_CREATE_TAG, &intercomm);
-      MPI_Comm_free (&temp);
-      
-      if (intercomm != MPI_COMM_NULL) {
-       /* need to make a different split communicator temporarily... */
-       MPI_Comm_split (MPI_COMM_WORLD, 
-                       rank < nprocs/2, nprocs - rank, &temp);
-
-       if (temp != MPI_COMM_NULL) {
-         /* create another intercommunicator temporarily to merge... */
-         rleader = (rank < nprocs/2) ?  nprocs - 1 : nprocs/2 - 1;
-         MPI_Intercomm_create (temp, 0, MPI_COMM_WORLD, rleader,
-                               INTERCOMM_CREATE_TAG, &intercomm2);
-         MPI_Comm_free (&temp);
-      
-         if (intercomm2 != MPI_COMM_NULL) {
-           if (rank < nprocs/2) {
-             MPI_Intercomm_merge (intercomm2, rank < nprocs/2, &comm2);
-             MPI_Comm_free (&intercomm2);
-             MPI_Intercomm_merge (intercomm, rank % 2, &comm);
-             MPI_Comm_free (&intercomm);
-           }
-           else {
-             MPI_Intercomm_merge (intercomm, rank % 2, &comm);
-             MPI_Comm_free (&intercomm);
-             MPI_Intercomm_merge (intercomm2, rank < nprocs/2, &comm2);
-             MPI_Comm_free (&intercomm2);
-           }
-
-           if ((comm != MPI_COMM_NULL) && (comm2 != MPI_COMM_NULL)) {
-             MPI_Comm_size (comm, &dnprocs);
-             MPI_Comm_rank (comm, &drank);
-
-             if (dnprocs > 1) {
-               if (drank == 1) {
-                 memset (buf1, 1, buf_size);
-
-                 MPI_Recv (buf0, buf_size, MPI_INT, 0, 0, comm, &status);
-
-                 MPI_Send (buf1, buf_size, MPI_INT, 0, 0, comm);
-               }
-               else if (drank == 0) {
-                 memset (buf0, 0, buf_size);
-       
-                 MPI_Send (buf0, buf_size, MPI_INT, 1, 0, comm);
-           
-                 MPI_Recv (buf1, buf_size, MPI_INT, 1, 0, comm, &status);
-               }
-             }
-             else {
-               printf ("(%d) comm too small\n", rank);
-             }
-
-             MPI_Comm_size (comm2, &dnprocs);
-             MPI_Comm_rank (comm2, &drank);
-
-             if (dnprocs > 1) {
-               if (drank == 1) {
-                 memset (buf1, 1, buf_size);
-
-                 MPI_Recv (buf0, buf_size, MPI_INT, 0, 0, comm2, &status);
-
-                 MPI_Send (buf1, buf_size, MPI_INT, 0, 0, comm2);
-               }
-               else if (drank == 0) {
-                 memset (buf0, 0, buf_size);
-       
-                 MPI_Send (buf0, buf_size, MPI_INT, 1, 0, comm2);
-           
-                 MPI_Recv (buf1, buf_size, MPI_INT, 1, 0, comm2, &status);
-               }
-             }
-             else {
-               printf ("(%d) comm2 too small\n", rank);
-             }
-           }
-           else {
-             printf ("(%d) Got MPI_COMM_NULL\n", rank);
-           }
-         }
-         else {
-           printf ("(%d) Got MPI_COMM_NULL for intercomm2\n", rank);
-         }
-       }
-       else {
-         printf ("(%d) Second MPI_Comm_split got MPI_COMM_NULL\n", rank);
-       }
-      }
-      else {
-       printf ("(%d) Got MPI_COMM_NULL for intercomm1\n", rank);
-      }
-    }
-    else {
-      printf ("(%d) First MPI_Comm_split got MPI_COMM_NULL\n", rank);
-    }
-  }
-
-  MPI_Barrier (MPI_COMM_WORLD);
-
-  MPI_Finalize ();
-  printf ("(%d) Finished normally\n", rank);
-}
-
-/* EOF */