Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote-tracking branch 'origin/libdw2'
[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             exit(1);
62         }
63
64         for (i=0; i<sendcount; i++) {
65             sendbuf[i] = (long long)(rank*sendcount + i);
66         }
67         recvbuf = (long long *)malloc( recvcount * sizeof(long long) );
68         if (!recvbuf) {
69             fprintf( stderr, "Could not allocate %d ints for recvbuf\n", 
70                      recvcount );
71             MPI_Abort( MPI_COMM_WORLD, 1 );
72             exit(1);
73         }
74         for (i=0; i<recvcount; i++) {
75             recvbuf[i] = (long long)(-i);
76         }
77         
78         MPI_Reduce_scatter_block( sendbuf, recvbuf, recvcount, MPI_LONG_LONG, 
79                                   MPI_SUM, comm );
80
81         /* Check received data */
82         for (i=0; i<recvcount; i++) {
83             sumval = (long long)(sendcount) * (long long)((rsize * (rsize-1))/2) +
84                 (long long)(i + rank * rsize * basecount) * (long long)rsize;
85             if (recvbuf[i] != sumval) {
86                 err++;
87                 if (err < 4) {
88                     fprintf( stdout, "Did not get expected value for reduce scatter\n" );
89                     fprintf( stdout, "[%d] %s recvbuf[%d] = %lld, expected %lld\n",
90                              rank, 
91                              isLeftGroup ? "L" : "R", 
92                              i, recvbuf[i], sumval );
93                 }
94             }
95         }
96         
97         free(sendbuf);
98         free(recvbuf);
99
100         MTestFreeComm( &comm );
101     }
102
103     MTest_Finalize( err );
104
105     MPI_Finalize( );
106
107     return 0;
108 }