Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > b96b0d782c858619536ab397b702cc7e > files > 66

mpich2-doc-1.0.8-2mdv2010.0.i586.rpm

/*
 *  (C) 2001 by Argonne National Laboratory.
 *      See COPYRIGHT in top-level directory.
 */
#include <stdlib.h>
#include <stdio.h>
#include "mpi.h"

/*
  This program tests MPI_Alltoallv by having processor i send different
  amounts of data to each processor.

  Because there are separate send and receive types to alltoallv,
  there need to be tests to rearrange data on the fly.  Not done yet.
  
  The first test sends i items to processor i from all processors.

  Currently, the test uses only MPI_INT; this is adequate for testing systems
  that use point-to-point operations
 */

#define BLOCK_SIZE 131072

int main( int argc, char **argv )
{

    MPI_Comm      comm;
    MPI_Datatype  elemtype;
    double        time_init, time_final;
    double       *sbuff, *rbuff;
    int           rank, size;
    int          *sendcounts, *recvcounts, *rdispls, *sdispls;
    int           num_itr, block_size, ii, jj, idx;

    MPI_Init( &argc, &argv );

      comm = MPI_COMM_WORLD;

      MPI_Comm_size( comm, &size );
      MPI_Comm_rank( comm, &rank );

      if ( argv != NULL && argv[1] != NULL )
          block_size = atoi( argv[1] );
      else
          block_size = 1;

      if ( argv != NULL && argv[2] != NULL )
          num_itr = atoi( argv[2] );
      else
          num_itr = 1;

      /* Create the buffer */
      MPI_Type_contiguous( block_size, MPI_DOUBLE, &elemtype );
      MPI_Type_commit( &elemtype );
      sbuff = (double *)malloc( size * size * block_size * sizeof(double) );
      rbuff = (double *)malloc( size * size * block_size * sizeof(double) );
      if (!sbuff || !rbuff) {
        fprintf( stderr, "Could not allocated buffers!\n" );
        MPI_Abort( comm, 1 );
      }

      /* Load up the buffers */
      for ( ii = 0; ii < size*size; ii++ ) {
        for ( jj = 0; jj < block_size; jj++ ) {
          idx        = ii * block_size + jj;
          sbuff[idx] = ii + 100*rank;
          rbuff[idx] = -ii;
        }
      }

      /* Create and load the arguments to alltoallv */
      sendcounts = (int *)malloc( size * sizeof(int) );
      recvcounts = (int *)malloc( size * sizeof(int) );
      rdispls    = (int *)malloc( size * sizeof(int) );
      sdispls    = (int *)malloc( size * sizeof(int) );
      if (!sendcounts || !recvcounts || !rdispls || !sdispls) {
        fprintf( stderr, "Could not allocate arg items!\n" );
        MPI_Abort( comm, 1 );
      }
      for ( ii = 0; ii < size; ii++ ) {
        sendcounts[ii] = ii;
        sdispls[ii]    = (ii * (ii+1))/2;
        recvcounts[ii] = rank;
        rdispls[ii]    = ii * rank;
      }

      MPI_Barrier( comm );
      MPI_Barrier( comm );
      time_init   = MPI_Wtime();

      for ( idx = 0; idx < num_itr; idx++ ) {
          MPI_Alltoallv( sbuff, sendcounts, sdispls, elemtype,
                         rbuff, recvcounts, rdispls, elemtype, comm );
      }
     
      /* MPI_Barrier( comm ); */
      time_final  = MPI_Wtime();
      
      fprintf( stdout, "time taken by %dx%d MPI_AlltoAllv() at rank %d = %f\n",
                       block_size, num_itr, rank, time_final - time_init );

      MPI_Type_free( &elemtype );
      
      free( sdispls );
      free( rdispls );
      free( recvcounts );
      free( sendcounts );
      free( rbuff );
      free( sbuff );

    MPI_Finalize( );
    return 0;
}