7ea00c38f8
Finished integrating H5Block and the Fortran interface (untested). Started adding an H5Block regression test with a few simple tests (all pass). Added automatic detection of stripe information on lustre, and config option to compile against lustre API. Moved buffers for H5Block ghost zone disolving out of the file handle and into the h5b_3d_set_view function. Fixed bug with pointers in the H5Fed file data not being initialized to NULL.
27 lines
621 B
C
27 lines
621 B
C
#ifndef _H5HUT_TEST_PARAMS_H_
|
|
#define _H5HUT_TEST_PARAMS_H_
|
|
|
|
#define FILENAME "test.h5"
|
|
#define LONGNAME "thisisaverylongnamethatshouldexceedthelimitof64charcausingawarningtoprint"
|
|
#define NTIMESTEPS 10
|
|
|
|
/* do not decrease this value below 99, or it will break assumptions
|
|
* made in the read tests! */
|
|
#define NPARTICLES 99
|
|
|
|
#define NBLOCKX 16
|
|
#define NBLOCKY 12
|
|
#define NBLOCKZ 18
|
|
|
|
/* do not increase this value past 32! */
|
|
#define MAX_MPI_TASKS 32
|
|
|
|
#define ATTR_NAME_SIZE 16
|
|
#define ATTR_STR_VAL "test"
|
|
#define ATTR_INT32_VAL -2147483648
|
|
#define ATTR_INT64_VAL 2147483648
|
|
#define ATTR_FLOAT_VAL 3.14159265F
|
|
|
|
#endif
|
|
|