summaryrefslogtreecommitdiffstats
path: root/perform/pio_perf.h
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-05-22 23:22:46 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-05-22 23:22:46 (GMT)
commitef5d0e1675cbbdae8904fd1850e7d764dd1ba945 (patch)
treecf7ba661d5d959a4b93531e20e97329d737a3789 /perform/pio_perf.h
parent6f64a5d838fd1958806ac32c9c1315988f695f80 (diff)
downloadhdf5-ef5d0e1675cbbdae8904fd1850e7d764dd1ba945.zip
hdf5-ef5d0e1675cbbdae8904fd1850e7d764dd1ba945.tar.gz
hdf5-ef5d0e1675cbbdae8904fd1850e7d764dd1ba945.tar.bz2
[svn-r5456] Purpose:
Update Description: Updating the source for the PIO performance tests with the current code that's in the V1.4 branch. It includes the newest command-line parameters. Platforms tested: Linux-pp
Diffstat (limited to 'perform/pio_perf.h')
-rw-r--r--perform/pio_perf.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/perform/pio_perf.h b/perform/pio_perf.h
index bea92f4..89aa879 100644
--- a/perform/pio_perf.h
+++ b/perform/pio_perf.h
@@ -11,7 +11,7 @@
#include "H5private.h"
typedef enum iotype_ {
- RAWIO,
+ POSIXIO,
MPIO,
PHDF5
/*NUM_TYPES*/
@@ -22,9 +22,13 @@ typedef struct parameters_ {
int num_procs; /* Maximum number of processes to use */
int num_files; /* Number of files to create */
long num_dsets; /* Number of datasets to create */
- long num_elmts; /* Number of native ints in each dset */
+ off_t num_elmts; /* Number of native ints in each dset */
int num_iters; /* Number of times to loop doing the IO */
size_t buf_size; /* Buffer size */
+ hsize_t h5_align; /* HDF5 object alignment */
+ hsize_t h5_thresh; /* HDF5 object alignment threshold */
+ unsigned h5_use_chunks; /* Make HDF5 dataset chunked */
+ unsigned h5_no_fill; /* Disable HDF5 writing fill values */
} parameters;
typedef struct results_ {