[mpich-commits] r10688 - mpich2/trunk/test/mpi/comm

balaji at mcs.anl.gov balaji at mcs.anl.gov
Thu Nov 29 10:20:02 CST 2012


Author: balaji
Date: 2012-11-29 10:20:02 -0600 (Thu, 29 Nov 2012)
New Revision: 10688

Modified:
   mpich2/trunk/test/mpi/comm/cmsplit_type.c
Log:
MPI_Comm_split_type is a part of MPI-3.  We don't need to protect it
in non-strict MPI or MPICH-specific tests.

No reviewer.

Modified: mpich2/trunk/test/mpi/comm/cmsplit_type.c
===================================================================
--- mpich2/trunk/test/mpi/comm/cmsplit_type.c	2012-11-29 16:20:01 UTC (rev 10687)
+++ mpich2/trunk/test/mpi/comm/cmsplit_type.c	2012-11-29 16:20:02 UTC (rev 10688)
@@ -24,11 +24,7 @@
         verbose = 1;
 
     MPI_Comm_rank( MPI_COMM_WORLD, &wrank );
-#if !defined(USE_STRICT_MPI) && defined(MPICH)
     MPI_Comm_split_type(MPI_COMM_WORLD, MPI_COMM_TYPE_SHARED, 0, MPI_INFO_NULL, &comm);
-#else
-    MPI_Comm_split(MPI_COMM_WORLD, 0, 0, &comm);
-#endif /* USE_STRICT_MPI */
 
     MPI_Comm_rank(comm, &rank);
     MPI_Comm_size(comm, &size);



More information about the commits mailing list