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
|
/*
* Copyright (C) by Argonne National Laboratory
* See COPYRIGHT in top-level directory
*/
#include <stdlib.h>
#include <stdio.h>
#include "mpi.h"
#include "mpitest.h"
/* Some MPI implementations should not support MPI_LONG_DOUBLE because it has
* different representations/sizes among several concurrently supported
* compilers. For example, a 16-byte GCC implementation and an 8-byte Cray
* compiler implementation.
*
* This test ensures that simplistic build logic/configuration did not result in
* a defined, yet incorrectly sized, MPI predefined datatype for long double and
* long double _Complex. See tt#1671 for more info.
*
* Based on a test suggested by Jim Hoekstra @ Iowa State University. */
int main(int argc, char *argv[])
{
int rank, size, type_size;
int errs = 0;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &size);
if (rank == 0) {
#ifdef HAVE_LONG_DOUBLE
if (MPI_LONG_DOUBLE != MPI_DATATYPE_NULL) {
MPI_Type_size(MPI_LONG_DOUBLE, &type_size);
if (type_size != sizeof(long double)) {
printf("type_size != sizeof(long double) : (%d != %zd)\n",
type_size, sizeof(long double));
++errs;
}
}
#endif
#if defined(HAVE_LONG_DOUBLE__COMPLEX) && defined(USE_LONG_DOUBLE_COMPLEX)
if (MPI_C_LONG_DOUBLE_COMPLEX != MPI_DATATYPE_NULL) {
MPI_Type_size(MPI_C_LONG_DOUBLE_COMPLEX, &type_size);
if (type_size != sizeof(long double _Complex)) {
printf("type_size != sizeof(long double _Complex) : (%d != %zd)\n",
type_size, sizeof(long double _Complex));
++errs;
}
}
#endif
if (errs) {
printf("found %d errors\n", errs);
} else {
printf(" No errors\n");
}
}
MPI_Finalize();
return MTestReturnValue(errs);
}
|