2002-06-30 08:11:42 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2002-06-30 08:11:42 +08:00
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:36 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2002-06-30 08:11:42 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2021-03-04 20:29:10 +08:00
|
|
|
#ifndef IO_TIMER
|
|
|
|
#define IO_TIMER
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2022-07-20 20:38:07 +08:00
|
|
|
#include "H5private.h"
|
2020-01-18 00:08:10 +08:00
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
/* The different types of timers we can have */
|
|
|
|
typedef enum timer_type_ {
|
|
|
|
HDF5_FILE_OPENCLOSE,
|
|
|
|
HDF5_DATASET_CREATE,
|
2002-05-07 07:58:57 +08:00
|
|
|
HDF5_MPI_WRITE,
|
|
|
|
HDF5_MPI_READ,
|
2006-01-27 06:45:51 +08:00
|
|
|
HDF5_FILE_READ_OPEN,
|
|
|
|
HDF5_FILE_READ_CLOSE,
|
|
|
|
HDF5_FILE_WRITE_OPEN,
|
|
|
|
HDF5_FILE_WRITE_CLOSE,
|
2001-12-20 06:10:15 +08:00
|
|
|
HDF5_FINE_WRITE_FIXED_DIMS,
|
|
|
|
HDF5_FINE_READ_FIXED_DIMS,
|
|
|
|
HDF5_GROSS_WRITE_FIXED_DIMS,
|
|
|
|
HDF5_GROSS_READ_FIXED_DIMS,
|
2002-05-23 07:22:46 +08:00
|
|
|
HDF5_RAW_WRITE_FIXED_DIMS,
|
|
|
|
HDF5_RAW_READ_FIXED_DIMS,
|
2001-11-07 23:28:33 +08:00
|
|
|
NUM_TIMERS
|
|
|
|
} timer_type;
|
|
|
|
|
2002-05-23 07:22:46 +08:00
|
|
|
typedef enum clock_type_ {
|
2020-09-30 22:27:10 +08:00
|
|
|
SYS_CLOCK = 0, /* Use system clock to measure time */
|
|
|
|
MPI_CLOCK = 1 /* Use MPI clock to measure time */
|
2002-05-23 07:22:46 +08:00
|
|
|
} clock_type;
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2002-05-23 07:22:46 +08:00
|
|
|
/* Miscellaneous identifiers */
|
|
|
|
enum {
|
2020-09-30 22:27:10 +08:00
|
|
|
TSTART, /* Start a specified timer */
|
|
|
|
TSTOP /* Stop a specified timer */
|
2001-11-07 23:28:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The performance time structure */
|
2014-12-30 13:56:05 +08:00
|
|
|
typedef struct io_time_t {
|
2020-09-30 22:27:10 +08:00
|
|
|
clock_type type;
|
|
|
|
double total_time[NUM_TIMERS];
|
|
|
|
double mpi_timer[NUM_TIMERS];
|
2001-11-07 23:28:33 +08:00
|
|
|
struct timeval sys_timer[NUM_TIMERS];
|
2014-12-30 13:56:05 +08:00
|
|
|
} io_time_t;
|
2001-11-07 23:28:33 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
2022-07-20 20:38:07 +08:00
|
|
|
#endif
|
2020-01-18 02:15:16 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TOOLS_DLL io_time_t *io_time_new(clock_type t);
|
|
|
|
H5TOOLS_DLL void io_time_destroy(io_time_t *pt);
|
|
|
|
H5TOOLS_DLL io_time_t *io_time_set(io_time_t *pt, timer_type t, int start_stop);
|
|
|
|
H5TOOLS_DLL double io_time_get(io_time_t *pt, timer_type t);
|
2020-01-18 02:15:16 +08:00
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-07-20 20:38:07 +08:00
|
|
|
#endif
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2021-03-04 20:29:10 +08:00
|
|
|
#endif /* IO_TIMER */
|