Changed MPI routines to hypre_MPI routines. Added hypre_printf, etc. routines. Added AUTOTEST tests to look for 'int' and 'MPI_' calls. Added a new approach for the Fortran interface (not implemented everywhere yet).
19 lines
333 B
C
19 lines
333 B
C
|
|
#include "_hypre_utilities.h"
|
|
|
|
/* This file will eventually contain functions needed to support
|
|
a runtime decision of whether to use the assumed partition */
|
|
|
|
|
|
/* returns 1 if the assumed partition is in use */
|
|
HYPRE_Int HYPRE_AssumedPartitionCheck()
|
|
{
|
|
#ifdef HYPRE_NO_GLOBAL_PARTITION
|
|
return 1;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
|
|
}
|
|
|