summaryrefslogtreecommitdiffstats
path: root/perform/pio_timer.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-11-07 15:28:33 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-11-07 15:28:33 (GMT)
commitbb76b558e6d5c3e1c35a5f08da480435db039e19 (patch)
tree9eac65359e20b54a5d367ee7a501e901edf826a8 /perform/pio_timer.h
parent965e3bc3e20cefeb81b0b88002c1dc42d197c2ff (diff)
downloadhdf5-bb76b558e6d5c3e1c35a5f08da480435db039e19.zip
hdf5-bb76b558e6d5c3e1c35a5f08da480435db039e19.tar.gz
hdf5-bb76b558e6d5c3e1c35a5f08da480435db039e19.tar.bz2
[svn-r4592] Purpose:
New addition Description: Initial version of the Parallel I/O performance measurement program. Not fully implemented yet but checking them in before I may destroy them by accident. Don't run this in small file system (like AFS or eirene) since it generates gigabytes test files. Platforms tested: modi4 64bits. It compiled and ran but took a long time because the current test parametes are too "wild".
Diffstat (limited to 'perform/pio_timer.h')
-rw-r--r--perform/pio_timer.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/perform/pio_timer.h b/perform/pio_timer.h
new file mode 100644
index 0000000..637b2bb
--- /dev/null
+++ b/perform/pio_timer.h
@@ -0,0 +1,70 @@
+/*
+ * Copyright (C) 2001
+ * National Center for Supercomputing Applications
+ * All rights reserved.
+ *
+ */
+#ifndef PERF_TIMER__
+#define PERF_TIMER__
+
+#if 0
+
+#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
+
+#else
+
+#include <sys/time.h>
+#include <time.h>
+
+#endif /* 0 */
+
+/* The different types of timers we can have */
+typedef enum timer_type_ {
+ HDF5_MPI_OVERHEAD,
+ HDF5_FILE_OPENCLOSE,
+ HDF5_GROUP_CREATE,
+ HDF5_DATASET_CREATE,
+ HDF5_WRITE_FIXED_DIMS,
+ HDF5_READ_FIXED_DIMS,
+ NUM_TIMERS
+} timer_type;
+
+/* Miscellaneous identifiers */
+enum {
+ MPI_TIMER = 0, /* Use MPI timer to measure time */
+ SYS_TIMER = 1, /* Use system clock to measure time */
+
+ START, /* Start a specified timer */
+ STOP /* Stop a specified timer */
+};
+
+/* The performance time structure */
+typedef struct perf_time_ {
+ unsigned int type : 1;
+ double total_time[NUM_TIMERS];
+ double mpi_timer[NUM_TIMERS];
+ struct timeval sys_timer[NUM_TIMERS];
+} perf_time;
+
+/* External function declarations */
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+extern perf_time *perf_time_new(unsigned int);
+extern void perf_time_destroy(perf_time *pt);
+extern void set_timer_type(perf_time *pt, timer_type type);
+extern timer_type get_timer_type(perf_time *pt);
+extern perf_time *set_time(perf_time *pt, timer_type t, int start_stop);
+extern double get_time(perf_time *pt, timer_type t);
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* PERF_TIMER__ */