2005-11-07 20:22:48 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* 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.
|
2006-08-27 16:45:54 +04:00
|
|
|
* Copyright (c) 2006 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
|
|
|
|
#include "opal/prefetch.h"
|
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"
|
|
|
|
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
|
|
#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
|
|
|
|
|
|
|
|
static const char FUNC_NAME[] = "MPI_Wtime";
|
|
|
|
|
|
|
|
|
|
|
|
double MPI_Wtime(void)
|
|
|
|
{
|
2006-08-29 08:30:33 +04:00
|
|
|
double wtime;
|
2006-08-29 14:11:48 +04:00
|
|
|
#if OPAL_TIMER_USEC_NATIVE
|
|
|
|
wtime = (double)opal_timer_base_get_usec() / 1000000.0;
|
|
|
|
#else
|
|
|
|
|
|
|
|
#if defined(__WINDOWS__)
|
|
|
|
wtime = ((double)opal_timer_base_get_cycles()) / ((double)opal_timer_base_get_freq());
|
|
|
|
return wtime;
|
|
|
|
#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;
|
2006-08-29 08:30:33 +04:00
|
|
|
#endif /* defined(__WINDOWS__) */
|
|
|
|
|
2006-08-29 14:11:48 +04:00
|
|
|
#endif /* OPAL_TIMER_USEC_NATIVE */
|
|
|
|
return wtime;
|
2006-08-27 16:45:54 +04:00
|
|
|
}
|