2005-11-07 17:22:48 +00:00
|
|
|
/*
|
2007-03-16 23:11:45 +00:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-07 17:22:48 +00:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2014-03-12 13:17:54 +00:00
|
|
|
* Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
|
2005-11-07 17:22:48 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2006-08-27 04:58:02 +00:00
|
|
|
#include MCA_timer_IMPLEMENTATION_HEADER
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2005-11-07 17:22:48 +00:00
|
|
|
#include "ompi/runtime/mpiruntime.h"
|
|
|
|
|
2009-05-06 20:11:28 +00:00
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2005-11-07 17:22:48 +00:00
|
|
|
#pragma weak MPI_Wtime = PMPI_Wtime
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/mpi/c/profile/defines.h"
|
2005-11-07 17:22:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
double MPI_Wtime(void)
|
|
|
|
{
|
2006-08-29 04:30:33 +00:00
|
|
|
double wtime;
|
2007-03-16 23:11:45 +00:00
|
|
|
|
2006-08-29 10:11:48 +00:00
|
|
|
#if OPAL_TIMER_USEC_NATIVE
|
2007-11-26 18:23:53 +00:00
|
|
|
wtime = ((double) opal_timer_base_get_usec()) / 1000000.0;
|
2006-08-29 10:11:48 +00:00
|
|
|
#else
|
2007-11-26 18:23:53 +00:00
|
|
|
/* Fall back to gettimeofday() if we have nothing else */
|
2006-08-29 04:30:33 +00:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
wtime = tv.tv_sec;
|
2006-08-29 10:11:48 +00:00
|
|
|
wtime += (double)tv.tv_usec / 1000000.0;
|
2007-11-26 18:23:53 +00:00
|
|
|
#endif
|
2007-03-16 23:11:45 +00:00
|
|
|
|
2008-02-21 14:28:08 +00:00
|
|
|
OPAL_CR_NOOP_PROGRESS();
|
|
|
|
|
2006-08-29 10:11:48 +00:00
|
|
|
return wtime;
|
2006-08-27 12:45:54 +00:00
|
|
|
}
|