X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c81c99a491282f76757c2673961e3cdee6853539..b7dc075d2c3bdf2b384cb8897d16a4c0aa8ab0f7:/teshsuite/smpi/mpich-test/coll/coll5.c diff --git a/teshsuite/smpi/mpich-test/coll/coll5.c b/teshsuite/smpi/mpich-test/coll/coll5.c deleted file mode 100644 index 971bca328a..0000000000 --- a/teshsuite/smpi/mpich-test/coll/coll5.c +++ /dev/null @@ -1,51 +0,0 @@ -#include "mpi.h" -#include -#include "test.h" - -#define MAX_PROCESSES 10 - -int main( int argc, char **argv ) -{ - int rank, size, i,j; - int table[MAX_PROCESSES][MAX_PROCESSES]; - int row[MAX_PROCESSES]; - int errors=0; - int participants; - int displs[MAX_PROCESSES]; - int send_counts[MAX_PROCESSES]; - - MPI_Init( &argc, &argv ); - MPI_Comm_rank( MPI_COMM_WORLD, &rank ); - MPI_Comm_size( MPI_COMM_WORLD, &size ); - - /* A maximum of MAX_PROCESSES processes can participate */ - if ( size > MAX_PROCESSES ) participants = MAX_PROCESSES; - else participants = size; - if ( (rank < participants) ) { - int recv_count = MAX_PROCESSES; - - /* If I'm the root (process 0), then fill out the big table */ - /* and setup send_counts and displs arrays */ - if (rank == 0) - for ( i=0; i