Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / teshsuite / smpi / mpich3-test / coll / coll5.c
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  *  (C) 2001 by Argonne National Laboratory.
4  *      See COPYRIGHT in top-level directory.
5  */
6 #include "mpi.h"
7 #include <stdio.h>
8 #include "mpitest.h"
9
10 #define MAX_PROCESSES 10
11
12 int main(int argc, char **argv)
13 {
14     int rank, size, i, j;
15     int table[MAX_PROCESSES][MAX_PROCESSES];
16     int row[MAX_PROCESSES];
17     int errors = 0;
18     int participants;
19     int displs[MAX_PROCESSES];
20     int send_counts[MAX_PROCESSES];
21
22     MTest_Init(&argc, &argv);
23     MPI_Comm_rank(MPI_COMM_WORLD, &rank);
24     MPI_Comm_size(MPI_COMM_WORLD, &size);
25
26     /* A maximum of MAX_PROCESSES processes can participate */
27     if (size > MAX_PROCESSES)
28         participants = MAX_PROCESSES;
29     else
30         participants = size;
31     if ((rank < participants)) {
32         int recv_count = MAX_PROCESSES;
33
34         /* If I'm the root (process 0), then fill out the big table */
35         /* and setup  send_counts and displs arrays */
36         if (rank == 0)
37             for (i = 0; i < participants; i++) {
38                 send_counts[i] = recv_count;
39                 displs[i] = i * MAX_PROCESSES;
40                 for (j = 0; j < MAX_PROCESSES; j++)
41                     table[i][j] = i + j;
42             }
43
44         /* Scatter the big table to everybody's little table */
45         MPI_Scatterv(&table[0][0], send_counts, displs, MPI_INT,
46                      &row[0], recv_count, MPI_INT, 0, MPI_COMM_WORLD);
47
48         /* Now see if our row looks right */
49         for (i = 0; i < MAX_PROCESSES; i++)
50             if (row[i] != i + rank)
51                 errors++;
52     }
53
54     MTest_Finalize(errors);
55     MPI_Finalize();
56     return MTestReturnValue(errors);
57 }