File: dims2.c

package info (click to toggle)
mpich 4.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 101,184 kB
  • sloc: ansic: 1,040,629; cpp: 82,270; javascript: 40,763; perl: 27,933; python: 16,041; sh: 14,676; xml: 14,418; f90: 12,916; makefile: 9,270; fortran: 8,046; java: 4,635; asm: 324; ruby: 103; awk: 27; lisp: 19; php: 8; sed: 4
file content (85 lines) | stat: -rw-r--r-- 2,412 bytes parent folder | download | duplicates (5)
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
/*
 * Copyright (C) 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);
}