2005-11-07 20:22:48 +03:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-07 20:22:48 +03: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 17:17:54 +04:00
|
|
|
* Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
|
2005-11-07 20:22:48 +03: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 08:58:02 +04:00
|
|
|
#include MCA_timer_IMPLEMENTATION_HEADER
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2005-11-07 20:22:48 +03:00
|
|
|
#include "ompi/runtime/mpiruntime.h"
|
|
|
|
|
2009-05-07 00:11:28 +04:00
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2005-11-07 20:22:48 +03:00
|
|
|
#pragma weak MPI_Wtime = PMPI_Wtime
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/mpi/c/profile/defines.h"
|
2005-11-07 20:22:48 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
double MPI_Wtime(void)
|
|
|
|
{
|
2006-08-29 08:30:33 +04:00
|
|
|
double wtime;
|
2007-03-17 02:11:45 +03:00
|
|
|
|
2006-08-29 14:11:48 +04:00
|
|
|
#if OPAL_TIMER_USEC_NATIVE
|
2007-11-26 21:23:53 +03:00
|
|
|
wtime = ((double) opal_timer_base_get_usec()) / 1000000.0;
|
2006-08-29 14:11:48 +04:00
|
|
|
#else
|
2007-11-26 21:23:53 +03:00
|
|
|
/* Fall back to gettimeofday() if we have nothing else */
|
2006-08-29 08:30:33 +04:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
wtime = tv.tv_sec;
|
2006-08-29 14:11:48 +04:00
|
|
|
wtime += (double)tv.tv_usec / 1000000.0;
|
2007-11-26 21:23:53 +03:00
|
|
|
#endif
|
2007-03-17 02:11:45 +03:00
|
|
|
|
2008-02-21 17:28:08 +03:00
|
|
|
OPAL_CR_NOOP_PROGRESS();
|
|
|
|
|
2006-08-29 14:11:48 +04:00
|
|
|
return wtime;
|
2006-08-27 16:45:54 +04:00
|
|
|
}
|