Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add mpich3 test suite, to replace older one.
[simgrid.git] / teshsuite / smpi / mpich3-test / coll / redscatbkinter.c
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  *  (C) 2011 by Argonne National Laboratory.
4  *      See COPYRIGHT in top-level directory.
5  */
6 /* 
7  * Test of reduce scatter block with large data on an intercommunicator
8  * (needed in MPICH to trigger the long-data algorithm)
9  *
10  * Each processor contributes its rank + the index to the reduction, 
11  * then receives the ith sum
12  *
13  * Can be called with any number of processors.
14  */
15
16 #include "mpi.h"
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include "mpitest.h"
20
21 int main( int argc, char **argv )
22 {
23     int      err = 0;
24     int      size, rsize, rank, i;
25     int      recvcount, /* Each process receives this much data */
26              sendcount, /* Each process contributes this much data */
27              basecount; /* Unit of elements - basecount *rsize is recvcount, 
28                            etc. */
29     int      isLeftGroup;
30     long long *sendbuf, *recvbuf;
31     long long sumval;
32     MPI_Comm comm;
33
34
35     MTest_Init( &argc, &argv );
36     comm = MPI_COMM_WORLD;
37
38     basecount = 1024;
39
40     while (MTestGetIntercomm( &comm, &isLeftGroup, 2 )) {
41         if (comm == MPI_COMM_NULL) continue;
42
43         MPI_Comm_remote_size( comm, &rsize );
44         MPI_Comm_size( comm, &size );
45         MPI_Comm_rank( comm, &rank );
46
47         if (0) {
48             printf( "[%d] %s (%d,%d) remote %d\n", rank, 
49                     isLeftGroup ? "L" : "R", 
50                     rank, size, rsize );
51         }
52
53         recvcount = basecount * rsize;
54         sendcount = basecount * rsize * size;
55
56         sendbuf = (long long *) malloc( sendcount * sizeof(long long) );
57         if (!sendbuf) {
58             fprintf( stderr, "Could not allocate %d ints for sendbuf\n", 
59                      sendcount );
60             MPI_Abort( MPI_COMM_WORLD, 1 );
61         }
62
63         for (i=0; i<sendcount; i++) {
64             sendbuf[i] = (long long)(rank*sendcount + i);
65         }
66         recvbuf = (long long *)malloc( recvcount * sizeof(long long) );
67         if (!recvbuf) {
68             fprintf( stderr, "Could not allocate %d ints for recvbuf\n", 
69                      recvcount );
70             MPI_Abort( MPI_COMM_WORLD, 1 );
71         }
72         for (i=0; i<recvcount; i++) {
73             recvbuf[i] = (long long)(-i);
74         }
75         
76         MPI_Reduce_scatter_block( sendbuf, recvbuf, recvcount, MPI_LONG_LONG, 
77                                   MPI_SUM, comm );
78
79         /* Check received data */
80         for (i=0; i<recvcount; i++) {
81             sumval = (long long)(sendcount) * (long long)((rsize * (rsize-1))/2) +
82                 (long long)(i + rank * rsize * basecount) * (long long)rsize;
83             if (recvbuf[i] != sumval) {
84                 err++;
85                 if (err < 4) {
86                     fprintf( stdout, "Did not get expected value for reduce scatter\n" );
87                     fprintf( stdout, "[%d] %s recvbuf[%d] = %lld, expected %lld\n",
88                              rank, 
89                              isLeftGroup ? "L" : "R", 
90                              i, recvbuf[i], sumval );
91                 }
92             }
93         }
94         
95         free(sendbuf);
96         free(recvbuf);
97
98         MTestFreeComm( &comm );
99     }
100
101     MTest_Finalize( err );
102
103     MPI_Finalize( );
104
105     return 0;
106 }