2001-11-07 23:28:33 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001
|
|
|
|
* National Center for Supercomputing Applications
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
2001-11-16 06:46:32 +08:00
|
|
|
#ifndef PIO_TIMER__
|
|
|
|
#define PIO_TIMER__
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2001-11-16 06:46:32 +08:00
|
|
|
#include "hdf5.h"
|
2001-11-07 23:28:33 +08:00
|
|
|
|
|
|
|
#if defined(H5_TIME_WITH_SYS_TIME)
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <time.h>
|
|
|
|
#elif defined(H5_HAVE_SYS_TIME_H)
|
|
|
|
# include <sys/time.h>
|
|
|
|
#else
|
|
|
|
# include <time.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 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,
|
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_ {
|
2001-11-07 23:28:33 +08:00
|
|
|
MPI_TIMER = 0, /* Use MPI timer to measure time */
|
2002-05-23 07:22:46 +08:00
|
|
|
SYS_TIMER = 1 /* Use system clock to measure time */
|
|
|
|
} clock_type;
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2002-05-23 07:22:46 +08:00
|
|
|
/* Miscellaneous identifiers */
|
|
|
|
enum {
|
2001-11-07 23:28:33 +08:00
|
|
|
START, /* Start a specified timer */
|
|
|
|
STOP /* Stop a specified timer */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The performance time structure */
|
2001-12-05 06:23:54 +08:00
|
|
|
typedef struct pio_time_ {
|
2002-05-23 07:22:46 +08:00
|
|
|
clock_type type;
|
2001-11-07 23:28:33 +08:00
|
|
|
double total_time[NUM_TIMERS];
|
|
|
|
double mpi_timer[NUM_TIMERS];
|
|
|
|
struct timeval sys_timer[NUM_TIMERS];
|
2001-12-05 06:23:54 +08:00
|
|
|
} pio_time;
|
2001-11-07 23:28:33 +08:00
|
|
|
|
|
|
|
/* External function declarations */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
2002-05-23 07:22:46 +08:00
|
|
|
extern pio_time *pio_time_new(clock_type t);
|
2001-12-05 06:23:54 +08:00
|
|
|
extern void pio_time_destroy(pio_time *pt);
|
2002-05-23 07:22:46 +08:00
|
|
|
extern void set_timer_type(pio_time *pt, clock_type type);
|
|
|
|
extern clock_type get_timer_type(pio_time *pt);
|
2001-12-05 06:23:54 +08:00
|
|
|
extern pio_time *set_time(pio_time *pt, timer_type t, int start_stop);
|
|
|
|
extern double get_time(pio_time *pt, timer_type t);
|
2001-11-07 23:28:33 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2001-11-16 06:46:32 +08:00
|
|
|
#endif /* PIO_TIMER__ */
|