File: dims2.c

package info (click to toggle)
mpich 3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 131,836 kB
  • sloc: ansic: 975,868; cpp: 57,437; f90: 53,762; perl: 19,562; xml: 12,464; sh: 12,303; fortran: 7,875; makefile: 7,078; ruby: 126; java: 100; python: 98; lisp: 19; php: 8; sed: 4
file content (85 lines) | stat: -rw-r--r-- 2,475 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
/*
 *  (C) 2003 by Argonne National Laboratory.
 *      See COPYRIGHT in top-level directory.
 */
#include "mpi.h"
#include <stdio.h>
#include "mpitest.h"

int prodof(int, const int[]);
/*
 * Test edge cases of Dims_create
 */
int prodof(int ndims, const int dims[])
{
    int i, prod = 1;
    for (i = 0; i < ndims; i++)
        prod *= dims[i];
    return prod;
}

int main(int argc, char *argv[])
{
    int errs = 0;
    int dims[4], nnodes;

    MTest_Init(&argc, &argv);

    /* 2 dimensional tests */
    for (nnodes = 1; nnodes <= 32; nnodes = nnodes * 2) {
        dims[0] = 0;
        dims[1] = nnodes;

        MPI_Dims_create(nnodes, 2, dims);
        if (prodof(2, dims) != nnodes) {
            errs++;
            printf("Dims_create returned the wrong decomposition.  ");
            printf("Is [%d x %d], should be 1 x %d\n", dims[0], dims[1], nnodes);
        }

        /* Try calling Dims_create with nothing to do (all dimensions
         * specified) */
        dims[0] = 1;
        dims[1] = nnodes;
        MPI_Dims_create(nnodes, 2, dims);
        if (prodof(2, dims) != nnodes) {
            errs++;
            printf("Dims_create returned the wrong decomposition (all given).  ");
            printf("Is [%d x %d], should be 1 x %d\n", dims[0], dims[1], nnodes);
        }
    }

    /* 4 dimensional tests */
    for (nnodes = 4; nnodes <= 32; nnodes = nnodes * 2) {
        dims[0] = 0;
        dims[1] = nnodes / 2;
        dims[2] = 0;
        dims[3] = 2;

        MPI_Dims_create(nnodes, 4, dims);
        if (prodof(4, dims) != nnodes) {
            errs++;
            printf("Dims_create returned the wrong decomposition.  ");
            printf("Is [%d x %d x %d x %d], should be 1 x %d x 1 x 2\n",
                   dims[0], dims[1], dims[2], dims[3], nnodes / 2);
        }

        /* Try calling Dims_create with nothing to do (all dimensions
         * specified) */
        dims[0] = 1;
        dims[1] = nnodes / 2;
        dims[2] = 1;
        dims[3] = 2;
        MPI_Dims_create(nnodes, 4, dims);
        if (prodof(4, dims) != nnodes) {
            errs++;
            printf("Dims_create returned the wrong decomposition (all given).  ");
            printf("Is [%d x %d x %d x %d], should be 1 x %d x 1 x 2\n",
                   dims[0], dims[1], dims[2], dims[3], nnodes / 2);
        }
    }

    MTest_Finalize(errs);
    return MTestReturnValue(errs);
}