* Brings CMake updates from develop * Brings reduction in pedantic casts from develop * Purges UFAIL from the library (#637) * Committing clang-format changes * Purges UFAIL from the library * H5HL_insert change requested in PR Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Removes gratuitous (double)x.yF casts (#632) * Committing clang-format changes * Removes gratuitous (double)x.yF casts * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Committing clang-format changes * Cleans up a const warning left over from previous constification (#633) * Committing clang-format changes * Adds consts to a few global variables * Cleans up a const warning left over from previous constification Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Formatted source * Bring over some VOL registration changes * VOL cleanup * H5VL_request_status_t substitutions * H5F.c cleanup * Minor API tweaks from develop * Moves H5G package init/teardown to H5Gint.c * H5G cleanup * H5M cleanup * H5SM cleanup * H5T cleanup * H5R cleanup * H5Lpublic.h cleanup * H5L cleanup * H5O cleanup * H5A, H5CS, and H5AC cleanup * Moved H5A init/teardown code to H5Aint.c * Moves H5D I/O functions to H5D.c * H5D cleanup * Misc minor cleanup * H5P close cleanup * H5Tpublic.h cleanup * Fixes err_compat test * H5PLpublic.h cleanup * Updates H5Ppublic.h * H5Fpublic.h updates * H5A.c cleanup * Brings over H5Aexists and related changes * Brings CMake shell testing changes from develop * Close callback changes * H5R and H5Tcommit normalization * err_compat test works now * H5O tweaks * Updates VOL registration code * Brings over H5VL_create_object * H5Tconv.c reformatting * H5T.c tweaks * Brings datatype and reference updates from develop * Brings VOL plugin loading changes from develop * Brings event sets from develop * Brings async functions over * Tools changes * Brings over many tools changes from develop * Brings VOL flags from develop * Fixes h5dump double/float tests * Updates h5repack tests * Brings h5diff test changes from develop * Last h5dump changes * Brings test changes from develop * Committing clang-format changes * Tidied h5_testing() * Brings chunk iteration code + misc from develop * Updates vds test * Enables external link parallel test * Brings updated property lists from develop * H5G changes from develop * H5MF cleanup * Brings vfd_swmr test back into CMake * Updates threadsafe test * Updates plist test * Brings recent changes from develop Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
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 */
|