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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/*
* Copyright (C) by Argonne National Laboratory
* See COPYRIGHT in top-level directory
*/
/*
The MPI-2.2 specification makes it clear that attributes are called on
MPI_COMM_WORLD and MPI_COMM_SELF at the very beginning of MPI_Finalize in
LIFO order with respect to the order in which they are set. This is
useful for tools that want to perform the MPI equivalent of an "at_exit"
action.
*/
#include <stdio.h>
#include "mpi.h"
#include "mpitest.h"
/* 20 ought to be enough attributes to ensure that hash-table based MPI
* implementations do not accidentally pass the test except by being extremely
* "lucky". There are (20!) possible permutations which means that there is
* about a 1 in 2.43e18 chance of getting LIFO ordering out of a hash table,
* assuming a decent hash function is used. */
#define NUM_TEST_ATTRS (20)
static int exit_keys[NUM_TEST_ATTRS]; /* init to MPI_KEYVAL_INVALID */
static int was_called[NUM_TEST_ATTRS];
int foundError = 0;
int delete_fn(MPI_Comm, int, void *, void *);
int main(int argc, char **argv)
{
int errs = 0, wrank;
int i;
MTest_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &wrank);
#if MTEST_HAVE_MIN_MPI_VERSION(2,2)
for (i = 0; i < NUM_TEST_ATTRS; ++i) {
exit_keys[i] = MPI_KEYVAL_INVALID;
was_called[i] = 0;
/* create the keyval for the exit handler */
MPI_Comm_create_keyval(MPI_COMM_NULL_COPY_FN, delete_fn, &exit_keys[i], NULL);
/* attach to comm_self */
MPI_Comm_set_attr(MPI_COMM_SELF, exit_keys[i], (void *) (long) i);
}
/* we can free the keys now */
for (i = 0; i < NUM_TEST_ATTRS; ++i) {
MPI_Comm_free_keyval(&exit_keys[i]);
}
/* now, exit MPI */
MPI_Finalize();
/* check that the exit handlers were called in LIFO order, and without error */
if (wrank == 0) {
/* In case more than one process exits MPI_Finalize */
for (i = 0; i < NUM_TEST_ATTRS; ++i) {
if (was_called[i] < 1) {
errs++;
printf("Attribute delete function on MPI_COMM_SELF was not called for idx=%d\n", i);
} else if (was_called[i] > 1) {
errs++;
printf
("Attribute delete function on MPI_COMM_SELF was called multiple times for idx=%d\n",
i);
}
}
if (foundError != 0) {
errs++;
printf("Found %d errors while executing delete function in MPI_COMM_SELF\n",
foundError);
}
if (errs == 0) {
printf(" No Errors\n");
} else {
printf(" Found %d errors\n", errs);
}
fflush(stdout);
}
#else /* this is a pre-MPI-2.2 implementation, ordering is not defined */
MPI_Finalize();
if (wrank == 0)
printf(" No Errors\n");
#endif
return MTestReturnValue(errs);
}
int delete_fn(MPI_Comm comm, int keyval, void *attribute_val, void *extra_state)
{
int flag;
int i;
int my_idx = (int) (long) attribute_val;
if (my_idx < 0 || my_idx > NUM_TEST_ATTRS) {
printf("internal error, my_idx=%d is invalid!\n", my_idx);
fflush(stdout);
}
was_called[my_idx]++;
MPI_Finalized(&flag);
if (flag) {
printf("my_idx=%d, MPI_Finalized returned %d, should have been 0", my_idx, flag);
foundError++;
}
/* since attributes were added in 0..(NUM_TEST_ATTRS-1) order, they will be
* called in (NUM_TEST_ATTRS-1)..0 order */
for (i = 0; i < my_idx; ++i) {
if (was_called[i] != 0) {
printf("my_idx=%d, was_called[%d]=%d but should be 0\n", my_idx, i, was_called[i]);
foundError++;
}
}
for (i = my_idx; i < NUM_TEST_ATTRS; ++i) {
if (was_called[i] != 1) {
printf("my_idx=%d, was_called[%d]=%d but should be 1\n", my_idx, i, was_called[i]);
foundError++;
}
}
return MPI_SUCCESS;
}
|