1998-07-02 06:10:04 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef PHDF5TEST_H
|
|
|
|
#define PHDF5TEST_H
|
|
|
|
|
|
|
|
#include <assert.h>
|
1999-04-27 12:12:18 +08:00
|
|
|
#include <stdlib.h>
|
2001-04-06 01:09:42 +08:00
|
|
|
|
|
|
|
#include "hdf5.h"
|
|
|
|
#include "h5test.h"
|
1998-07-02 06:10:04 +08:00
|
|
|
|
|
|
|
/* Define some handy debugging shorthands, routines, ... */
|
|
|
|
/* debugging tools */
|
|
|
|
|
|
|
|
#define MESG(x) \
|
|
|
|
if (verbose) printf("%s\n", x); \
|
|
|
|
|
|
|
|
#define VRFY(val, mesg) do { \
|
|
|
|
if (val) { \
|
|
|
|
if (*mesg != '\0'){ \
|
|
|
|
MESG(mesg); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else{ \
|
2000-11-21 08:55:14 +08:00
|
|
|
printf("Proc %d: ", mpi_rank); \
|
1998-07-08 06:28:39 +08:00
|
|
|
printf("*** PHDF5 Assertion failed (%s) at line %4d in %s\n", \
|
1998-07-02 06:10:04 +08:00
|
|
|
mesg, (int)__LINE__, __FILE__); \
|
|
|
|
nerrors++; \
|
1998-07-13 13:35:14 +08:00
|
|
|
fflush(stdout); \
|
|
|
|
if (!verbose){ \
|
2000-10-10 02:23:20 +08:00
|
|
|
printf("aborting MPI process\n"); \
|
2000-11-21 08:55:14 +08:00
|
|
|
MPI_Finalize(); exit(nerrors); \
|
1998-07-13 13:35:14 +08:00
|
|
|
} \
|
1998-07-02 06:10:04 +08:00
|
|
|
} \
|
|
|
|
H5Eclear(); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define MPI_BANNER(mesg)\
|
|
|
|
{printf("--------------------------------\n");\
|
|
|
|
printf("Proc %d: ", mpi_rank); \
|
|
|
|
printf("*** %s\n", mesg);\
|
|
|
|
printf("--------------------------------\n");}
|
|
|
|
|
|
|
|
#define MAINPROCESS (!mpi_rank) /* define process 0 as main process */
|
|
|
|
|
|
|
|
#define SYNC(comm)\
|
|
|
|
{MPI_BANNER("doing a SYNC"); MPI_Barrier(comm); MPI_BANNER("SYNC DONE");}
|
|
|
|
/* End of Define some handy debugging shorthands, routines, ... */
|
|
|
|
|
|
|
|
/* Constants definitions */
|
2000-10-20 14:19:21 +08:00
|
|
|
#define DIM0 600 /* Default dataset sizes. */
|
2001-03-20 06:32:23 +08:00
|
|
|
#define DIM1 1200 /* Values are from a monitor pixel sizes */
|
1998-07-02 06:10:04 +08:00
|
|
|
#define RANK 2
|
|
|
|
#define DATASETNAME1 "Data1"
|
|
|
|
#define DATASETNAME2 "Data2"
|
|
|
|
#define DATASETNAME3 "Data3"
|
|
|
|
/* hyperslab layout styles */
|
|
|
|
#define BYROW 1 /* divide into slabs of rows */
|
|
|
|
#define BYCOL 2 /* divide into blocks of columns */
|
2000-10-10 02:23:20 +08:00
|
|
|
#define ZROW 3 /* same as BYCOL except process 0 gets 0 rows */
|
|
|
|
#define ZCOL 4 /* same as BYCOL except process 0 gets 0 columns */
|
1998-07-02 06:10:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* dataset data type. Int's can be easily octo dumped. */
|
|
|
|
typedef int DATATYPE;
|
|
|
|
|
|
|
|
/* shared global variables */
|
2000-12-13 07:12:57 +08:00
|
|
|
extern int dim0, dim1; /*Dataset dimensions */
|
|
|
|
extern int chunkdim0, chunkdim1; /*Chunk dimensions */
|
|
|
|
extern int nerrors; /*errors count */
|
|
|
|
extern int verbose; /*verbose, default as no. */
|
|
|
|
extern herr_t (*old_func)(void*); /*previous error handler */
|
|
|
|
extern void *old_client_data; /*previous error handler arg.*/
|
1998-07-02 06:10:04 +08:00
|
|
|
|
|
|
|
#endif /* PHDF5TEST_H */
|