X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c81c99a491282f76757c2673961e3cdee6853539..b7dc075d2c3bdf2b384cb8897d16a4c0aa8ab0f7:/teshsuite/smpi/mpich-test/coll/redtst.c diff --git a/teshsuite/smpi/mpich-test/coll/redtst.c b/teshsuite/smpi/mpich-test/coll/redtst.c deleted file mode 100644 index b865e2a982..0000000000 --- a/teshsuite/smpi/mpich-test/coll/redtst.c +++ /dev/null @@ -1,21 +0,0 @@ -#include "mpi.h" -#include -#include "test.h" - -int main( int argc, char **argv ) -{ - int rank, value, result; - - MPI_Init (&argc, &argv); - MPI_Comm_rank (MPI_COMM_WORLD, &rank); - - value = (rank == 0) ? 3 : 6; - MPI_Allreduce (&value, &result, 1, MPI_INT, MPI_BOR, MPI_COMM_WORLD); - if (rank == 0) printf ("Result of 3 BOR 6 is %d, result of 3|6 is %d\n", - result, 3|6); - - Test_Waitforall( ); - MPI_Finalize (); - - return 0; -}