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
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
2007-02-07 22:56:24 +08:00
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. 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
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2001-11-07 23:28:33 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Purpose:
|
|
|
|
*
|
|
|
|
* This is a module of useful timing functions for performance testing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2001-11-16 06:46:32 +08:00
|
|
|
#include "pio_timer.h"
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2001-11-16 06:46:32 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2001-11-16 06:46:32 +08:00
|
|
|
#include <mpi.h>
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2002-05-07 07:58:57 +08:00
|
|
|
#include "pio_perf.h"
|
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
/*
|
|
|
|
* The number to divide the tv_usec field with to get a nice decimal to add to
|
|
|
|
* the number of seconds.
|
|
|
|
*/
|
2002-05-08 00:56:34 +08:00
|
|
|
#define MICROSECOND 1000000.0
|
2001-11-07 23:28:33 +08:00
|
|
|
|
2002-05-07 23:22:31 +08:00
|
|
|
/* global variables */
|
|
|
|
pio_time *timer_g; /* timer: global for stub functions */
|
|
|
|
|
2006-06-27 22:45:06 +08:00
|
|
|
/*
|
2006-01-27 23:32:04 +08:00
|
|
|
* Function: sub_time
|
|
|
|
* Purpose: Struct two time values, and return the difference, in microseconds
|
2006-06-27 22:45:06 +08:00
|
|
|
*
|
|
|
|
* Note that the function assumes that a > b
|
2006-01-27 23:32:04 +08:00
|
|
|
* Programmer: Leon Arber, 1/27/06
|
|
|
|
*/
|
|
|
|
static double sub_time(struct timeval* a, struct timeval* b)
|
|
|
|
{
|
|
|
|
return (((double)a->tv_sec +
|
|
|
|
((double)a->tv_usec) / MICROSECOND) -
|
|
|
|
((double)b->tv_sec +
|
|
|
|
((double)b->tv_usec) / MICROSECOND));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
/*
|
2001-12-05 06:23:54 +08:00
|
|
|
* Function: pio_time_new
|
2001-11-07 23:28:33 +08:00
|
|
|
* Purpose: Build us a brand, spankin', new performance time object.
|
|
|
|
* The object is a black box to the user. They just tell us
|
|
|
|
* what type of timer they want (MPI_TIMER for MPI_Wtime or
|
|
|
|
* SYS_TIMER for system time).
|
2001-12-05 06:23:54 +08:00
|
|
|
* Return: Pointer to pio_time object
|
2001-11-07 23:28:33 +08:00
|
|
|
* Programmer: Bill Wendling, 01. October 2001
|
|
|
|
* Modifications:
|
|
|
|
*/
|
2001-12-05 06:23:54 +08:00
|
|
|
pio_time *
|
2002-05-23 07:22:46 +08:00
|
|
|
pio_time_new(clock_type type)
|
2001-11-07 23:28:33 +08:00
|
|
|
{
|
2001-12-05 06:23:54 +08:00
|
|
|
pio_time *pt = (pio_time *)calloc(1, sizeof(struct pio_time_));
|
2002-01-12 03:44:51 +08:00
|
|
|
|
2002-05-07 23:22:31 +08:00
|
|
|
/* set global timer variable */
|
|
|
|
timer_g = pt;
|
2001-11-07 23:28:33 +08:00
|
|
|
|
|
|
|
pt->type = type;
|
|
|
|
return pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-12-05 06:23:54 +08:00
|
|
|
* Function: pio_time_destroy
|
|
|
|
* Purpose: Remove the memory allocated for the pio_time object. Only
|
|
|
|
* need to call on a pointer allocated with the ``pio_time_new''
|
2001-11-07 23:28:33 +08:00
|
|
|
* function.
|
|
|
|
* Return: Nothing
|
|
|
|
* Programmer: Bill Wendling, 01. October 2001
|
|
|
|
* Modifications:
|
|
|
|
*/
|
|
|
|
void
|
2001-12-05 06:23:54 +08:00
|
|
|
pio_time_destroy(pio_time *pt)
|
2001-11-07 23:28:33 +08:00
|
|
|
{
|
|
|
|
free(pt);
|
2002-05-07 23:22:31 +08:00
|
|
|
/* reset the global timer pointer too. */
|
|
|
|
timer_g = NULL;
|
2001-11-07 23:28:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function: set_timer_type
|
|
|
|
* Purpose: Set the type of the timer to either MPI_TIMER or SYS_TIMER.
|
|
|
|
* This really only needs to be called if you didn't construct a
|
2001-12-05 06:23:54 +08:00
|
|
|
* timer with the pio_timer_new function (shame!).
|
2001-11-07 23:28:33 +08:00
|
|
|
* Return: Nothing
|
|
|
|
* Programmer: Bill Wendling, 04. October 2001
|
|
|
|
* Modifications:
|
|
|
|
*/
|
|
|
|
void
|
2002-05-23 07:22:46 +08:00
|
|
|
set_timer_type(pio_time *pt, clock_type type)
|
2001-11-07 23:28:33 +08:00
|
|
|
{
|
|
|
|
pt->type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function: get_timer_type
|
|
|
|
* Purpose: Get the type of the timer.
|
|
|
|
* Return: MPI_TIMER or SYS_TIMER.
|
|
|
|
* Programmer: Bill Wendling, 04. October 2001
|
|
|
|
* Modifications:
|
|
|
|
*/
|
2002-05-23 07:22:46 +08:00
|
|
|
clock_type
|
2001-12-05 06:23:54 +08:00
|
|
|
get_timer_type(pio_time *pt)
|
2001-11-07 23:28:33 +08:00
|
|
|
{
|
|
|
|
return pt->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function: set_time
|
2001-12-05 06:23:54 +08:00
|
|
|
* Purpose: Set the time in a ``pio_time'' object.
|
|
|
|
* Return: Pointer to the passed in ``pio_time'' object.
|
2001-11-07 23:28:33 +08:00
|
|
|
* Programmer: Bill Wendling, 01. October 2001
|
|
|
|
* Modifications:
|
|
|
|
*/
|
2001-12-05 06:23:54 +08:00
|
|
|
pio_time *
|
|
|
|
set_time(pio_time *pt, timer_type t, int start_stop)
|
2001-11-07 23:28:33 +08:00
|
|
|
{
|
|
|
|
if (pt) {
|
|
|
|
if (pt->type == MPI_TIMER) {
|
|
|
|
if (start_stop == START) {
|
|
|
|
pt->mpi_timer[t] = MPI_Wtime();
|
2006-01-27 06:45:51 +08:00
|
|
|
|
|
|
|
/* When we start the timer for HDF5_FINE_WRITE_FIXED_DIMS or HDF5_FINE_READ_FIXED_DIMS
|
|
|
|
* we compute the time it took to only open the file */
|
|
|
|
if(t == HDF5_FINE_WRITE_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_WRITE_OPEN] += pt->mpi_timer[t] - pt->mpi_timer[HDF5_GROSS_WRITE_FIXED_DIMS];
|
|
|
|
else if(t == HDF5_FINE_READ_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_READ_OPEN] += pt->mpi_timer[t] - pt->mpi_timer[HDF5_GROSS_READ_FIXED_DIMS];
|
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
} else {
|
|
|
|
pt->total_time[t] += MPI_Wtime() - pt->mpi_timer[t];
|
2006-06-27 22:45:06 +08:00
|
|
|
pt->mpi_timer[t] = MPI_Wtime();
|
2006-01-27 06:45:51 +08:00
|
|
|
|
|
|
|
/* When we stop the timer for HDF5_GROSS_WRITE_FIXED_DIMS or HDF5_GROSS_READ_FIXED_DIMS
|
|
|
|
* we compute the time it took to close the file after the last read/write finished */
|
|
|
|
if(t == HDF5_GROSS_WRITE_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_WRITE_CLOSE] += pt->mpi_timer[t] - pt->mpi_timer[HDF5_FINE_WRITE_FIXED_DIMS];
|
|
|
|
else if(t == HDF5_GROSS_READ_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_READ_CLOSE] += pt->mpi_timer[t] - pt->mpi_timer[HDF5_FINE_READ_FIXED_DIMS];
|
2001-11-07 23:28:33 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (start_stop == START) {
|
|
|
|
gettimeofday(&pt->sys_timer[t], NULL);
|
2006-01-27 06:45:51 +08:00
|
|
|
|
|
|
|
/* When we start the timer for HDF5_FINE_WRITE_FIXED_DIMS or HDF5_FINE_READ_FIXED_DIMS
|
|
|
|
* we compute the time it took to only open the file */
|
|
|
|
if(t == HDF5_FINE_WRITE_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_WRITE_OPEN] += sub_time(&(pt->sys_timer[t]), &(pt->sys_timer[HDF5_GROSS_WRITE_FIXED_DIMS]));
|
|
|
|
else if(t == HDF5_FINE_READ_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_READ_OPEN] += sub_time(&(pt->sys_timer[t]), &(pt->sys_timer[HDF5_GROSS_READ_FIXED_DIMS]));
|
|
|
|
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
} else {
|
|
|
|
struct timeval sys_t;
|
|
|
|
|
|
|
|
gettimeofday(&sys_t, NULL);
|
2006-01-27 06:45:51 +08:00
|
|
|
pt->total_time[t] += sub_time(&sys_t, &(pt->sys_timer[t]));
|
|
|
|
|
|
|
|
/* ((double)sys_t.tv_sec +
|
2002-05-08 00:56:34 +08:00
|
|
|
((double)sys_t.tv_usec) / MICROSECOND) -
|
2001-12-12 04:56:02 +08:00
|
|
|
((double)pt->sys_timer[t].tv_sec +
|
2006-01-27 06:45:51 +08:00
|
|
|
((double)pt->sys_timer[t].tv_usec) / MICROSECOND);*/
|
|
|
|
|
|
|
|
/* When we stop the timer for HDF5_GROSS_WRITE_FIXED_DIMS or HDF5_GROSS_READ_FIXED_DIMS
|
|
|
|
* we compute the time it took to close the file after the last read/write finished */
|
|
|
|
if(t == HDF5_GROSS_WRITE_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_WRITE_CLOSE] += sub_time(&(pt->sys_timer[t]), &(pt->sys_timer[HDF5_FINE_WRITE_FIXED_DIMS]));
|
|
|
|
else if(t == HDF5_GROSS_READ_FIXED_DIMS)
|
|
|
|
pt->total_time[HDF5_FILE_READ_CLOSE] += sub_time(&(pt->sys_timer[t]), &(pt->sys_timer[HDF5_FINE_READ_FIXED_DIMS]));
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-23 07:22:46 +08:00
|
|
|
if (pio_debug_level >= 4) {
|
2002-06-20 00:06:55 +08:00
|
|
|
const char *msg;
|
2002-05-23 07:22:46 +08:00
|
|
|
int myrank;
|
|
|
|
|
|
|
|
MPI_Comm_rank(pio_comm_g, &myrank);
|
|
|
|
|
|
|
|
switch (t) {
|
|
|
|
case HDF5_FILE_OPENCLOSE:
|
|
|
|
msg = "File Open/Close";
|
|
|
|
break;
|
|
|
|
case HDF5_DATASET_CREATE:
|
|
|
|
msg = "Dataset Create";
|
|
|
|
break;
|
|
|
|
case HDF5_MPI_WRITE:
|
|
|
|
msg = "MPI Write";
|
|
|
|
break;
|
|
|
|
case HDF5_MPI_READ:
|
|
|
|
msg = "MPI Read";
|
|
|
|
break;
|
|
|
|
case HDF5_FINE_WRITE_FIXED_DIMS:
|
|
|
|
msg = "Fine Write";
|
|
|
|
break;
|
|
|
|
case HDF5_FINE_READ_FIXED_DIMS:
|
|
|
|
msg = "Fine Read";
|
|
|
|
break;
|
|
|
|
case HDF5_GROSS_WRITE_FIXED_DIMS:
|
|
|
|
msg = "Gross Write";
|
|
|
|
break;
|
|
|
|
case HDF5_GROSS_READ_FIXED_DIMS:
|
|
|
|
msg = "Gross Read";
|
|
|
|
break;
|
|
|
|
case HDF5_RAW_WRITE_FIXED_DIMS:
|
|
|
|
msg = "Raw Write";
|
|
|
|
break;
|
|
|
|
case HDF5_RAW_READ_FIXED_DIMS:
|
|
|
|
msg = "Raw Read";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
msg = "Unknown Timer";
|
|
|
|
break;
|
|
|
|
}
|
2002-05-07 07:58:57 +08:00
|
|
|
|
2002-05-23 07:22:46 +08:00
|
|
|
fprintf(output, " Proc %d: %s %s: %.2f\n", myrank, msg,
|
|
|
|
(start_stop == START ? "Start" : "Stop"),
|
|
|
|
pt->total_time[t]);
|
|
|
|
}
|
2002-05-07 07:58:57 +08:00
|
|
|
}
|
|
|
|
|
2001-11-07 23:28:33 +08:00
|
|
|
return pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function: get_time
|
2001-12-05 06:23:54 +08:00
|
|
|
* Purpose: Get the time from a ``pio_time'' object.
|
2001-11-07 23:28:33 +08:00
|
|
|
* Return: The number of seconds as a DOUBLE.
|
|
|
|
* Programmer: Bill Wendling, 01. October 2001
|
|
|
|
* Modifications:
|
|
|
|
*/
|
|
|
|
double
|
2001-12-05 06:23:54 +08:00
|
|
|
get_time(pio_time *pt, timer_type t)
|
2001-11-07 23:28:33 +08:00
|
|
|
{
|
|
|
|
return pt->total_time[t];
|
|
|
|
}
|
2001-11-16 06:46:32 +08:00
|
|
|
|
|
|
|
#endif /* H5_HAVE_PARALLEL */
|
2005-08-13 23:21:22 +08:00
|
|
|
#ifdef STANDALONE
|
|
|
|
#include "pio_standalone.c"
|
|
|
|
#endif
|