1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
package mpi.comm;
/****************************************************************************
MESSAGE PASSING INTERFACE TEST CASE SUITE
Copyright IBM Corp. 1995
IBM Corp. hereby grants a non-exclusive license to use, copy, modify, and
distribute this software for any purpose and without fee provided that the
above copyright notice and the following paragraphs appear in all copies.
IBM Corp. makes no representation that the test cases comprising this
suite are correct or are an accurate representation of any standard.
In no event shall IBM be liable to any party for direct, indirect, special
incidental, or consequential damage arising out of the use of this software
even if IBM Corp. has been advised of the possibility of such damage.
IBM CORP. SPECIFICALLY DISCLAIMS ANY WARRANTIES INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS AND IBM
CORP. HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
ENHANCEMENTS, OR MODIFICATIONS.
****************************************************************************
These test cases reflect an interpretation of the MPI Standard. They are
are, in most cases, unit tests of specific MPI behaviors. If a user of any
test case from this set believes that the MPI Standard requires behavior
different than that implied by the test case we would appreciate feedback.
Comments may be sent to:
Richard Treumann
treumann@kgn.ibm.com
****************************************************************************
MPI-Java version :
Sung-Hoon Ko(shko@npac.syr.edu)
Northeast Parallel Architectures Center at Syracuse University
03/22/98
****************************************************************************/
import mpi.*;
public class compare {
static public void main(String[] args) throws Exception {
try {
compare a = new compare(args);
}
catch (Exception e) {
}
}
public compare() {
}
public compare(String[] args) throws Exception {
Intracomm comm1, comm2;
int me, result, color, key;
MPI.Init(args);
me = MPI.COMM_WORLD.Rank();
comm1 = (Intracomm) MPI.COMM_WORLD.clone();
result = Comm.Compare(comm1, comm1);
if (result != MPI.IDENT)
System.out.println("ERROR in MPI_Comm_compare, result = " + result
+ ", should be " + (MPI.IDENT) + "(MPI_IDENT)");
result = Comm.Compare(MPI.COMM_WORLD, comm1);
if (result != MPI.CONGRUENT)
System.out.println("ERROR in MPI_Comm_compare, result = " + result
+ ", should be " + (MPI.CONGRUENT) + "(MPI_CONGRUENT)");
color = 1;
key = -me;
comm2 = comm1.Split(color, key);
result = Comm.Compare(comm1, comm2);
if (result != MPI.SIMILAR)
System.out.println("ERROR in MPI_Comm_compare, result = " + result
+ ", should be " + (MPI.SIMILAR) + "(MPI_SIMILAR)");
color = me;
comm2 = comm1.Split(color, key);
result = Comm.Compare(comm1, comm2);
if (result != MPI.UNEQUAL)
System.out.println("ERROR in MPI_Comm_compare, result = " + result
+ ", should be " + (MPI.UNEQUAL) + "(MPI_UNEQUAL)");
MPI.COMM_WORLD.Barrier();
if (me == 0)
System.out.println("Compare TEST COMPLETE");
MPI.Finalize();
}
}
|