* OESS-98 convert plugin option to FetchContent, add tests * Fixes for pkcfg files because of plugin option * OESS-98 fix tools test for plugins * Keep doxygen comments under 100 chars long - format hint * Whitespace * HDFFV-11144 - Reclassify CMake messages * HDFFV-11099/11100 added help text * Reworked switch statement to compare string instead * Fix typo * Update CDash mode * Correct name of threadsafe * Correct option name * Undo accidental commit * Note LLVM 10 to 11 format default changes * Update format plugin * Undo clang-format version 11 changes * One more correction * Update supported platforms * Revert whitespace changes * Correct whitespace * Changes from PR#3 * HDFFV-11213 added option to control gcc10 warnings diagnostics * HDFFV-11212 Use the new references correctly in JNI utility and tests * format source * Fix typo * Add new test file * HDFFV-11212 - update test and remove unused arg * Minor non-space formatting changes * Use H5I_INVALID_ID instead of "-1" * source formatting * add missing testfile, update jni function * Undo commit of debug code * remove mislocated file * Fix h5repack test for handling of fapls and id close * Update h5diff test files usage text * HDFFV-11212 add new ref tests for JNI export dataset * src format update * Remove blank line typo * src format typo * long double requires %Lg * Another long double foramt specifer S.B. %Lg * issue with t128bit test * Windows issue with h5dump and type. * Fix review issues * refactor function nesting and fix error checks * format fixes * Remove untested functions and javadoc quiet comments * Restore TRY block. * Change string append errors to memory exception * revert to H5_JNI_FATAL_ERROR - support functions need work * Add assertion error for h5util functions * remove duplicate function * format fix * Revert HD function error handling * Update copyright comments * GH #386 java folder copyright corrections * Whitespace * GH #359 implement and fix tools 1.6 API usage * remove excessive comments * Flip inits to correct ifdef section * rework ifdef to be simpler * format issue * Reformat ifdef inits * remove static attribute * format compliance * Update names * Revert because logic relies on float not being int * Changes noticed from creating merge of #412 * Double underscore change * Correct compiler version variable used * Remove header guard underscores * Whitespace cleanup
105 lines
3.5 KiB
C
105 lines
3.5 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by The HDF Group. *
|
|
* All rights reserved. *
|
|
* *
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
|
* If you do not have access to either file, you may request a copy from *
|
|
* help@hdfgroup.org. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef SIO_PERF_H
|
|
#define SIO_PERF_H
|
|
|
|
#ifndef STANDALONE
|
|
#include "io_timer.h"
|
|
#include "h5test.h"
|
|
#include "h5tools.h"
|
|
#include "h5tools_utils.h"
|
|
#else
|
|
#include "io_timer.h"
|
|
#include "sio_standalone.h"
|
|
#endif
|
|
|
|
/* setup the dataset no fill option if this is v1.5 or more */
|
|
#if H5_VERS_MAJOR > 1 || H5_VERS_MINOR > 4
|
|
#define H5_HAVE_NOFILL 1
|
|
#endif
|
|
|
|
#define MAX_DIMS 32
|
|
|
|
typedef enum iotype_ {
|
|
POSIXIO,
|
|
HDF5
|
|
/*NUM_TYPES*/
|
|
} iotype;
|
|
|
|
typedef enum vfdtype_ {
|
|
sec2,
|
|
stdio,
|
|
core,
|
|
split,
|
|
multi,
|
|
family,
|
|
direct
|
|
/*NUM_TYPES*/
|
|
} vfdtype;
|
|
|
|
typedef struct parameters_ {
|
|
iotype io_type; /* The type of IO test to perform */
|
|
vfdtype vfd;
|
|
long num_files; /* Number of files to create */
|
|
long num_dsets; /* Number of datasets to create */
|
|
hsize_t num_bytes; /* Number of bytes in each dset */
|
|
int num_iters; /* Number of times to loop doing the IO */
|
|
int rank; /* Rank of dataset */
|
|
hsize_t dset_size[MAX_DIMS]; /* Dataset size */
|
|
size_t buf_size[MAX_DIMS]; /* Buffer size */
|
|
size_t chk_size[MAX_DIMS]; /* Chunk size */
|
|
int order[MAX_DIMS]; /* Buffer size */
|
|
hsize_t h5_align; /* HDF5 object alignment */
|
|
hsize_t h5_thresh; /* HDF5 object alignment threshold */
|
|
int h5_use_chunks; /* Make HDF5 dataset chunked */
|
|
int h5_extendable; /* Make HDF5 dataset chunked */
|
|
int h5_write_only; /* Perform the write tests only */
|
|
int verify; /* Verify data correctness */
|
|
size_t page_size;
|
|
size_t page_buffer_size;
|
|
} parameters;
|
|
|
|
typedef struct results_ {
|
|
herr_t ret_code;
|
|
io_time_t *timers;
|
|
} results;
|
|
|
|
#ifndef SUCCESS
|
|
#define SUCCESS 0
|
|
#endif /* !SUCCESS */
|
|
|
|
#ifndef FAIL
|
|
#define FAIL -1
|
|
#endif /* !FAIL */
|
|
|
|
extern FILE * output; /* output file */
|
|
extern io_time_t *timer_g; /* timer: global for stub functions */
|
|
extern int sio_debug_level; /* The debug level:
|
|
* 0 - Off
|
|
* 1 - Minimal
|
|
* 2 - Some more
|
|
* 3 - Maximal
|
|
* 4 - Even More Debugging (timer stuff)
|
|
*/
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
extern void do_sio(parameters param, results *res);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* SIO_PERF_H */
|