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.
|
2007-11-26 18:23:53 +00:00
|
|
|
* Copyright (c) 2007 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"
|
|
|
|
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Wtick = PMPI_Wtick
|
|
|
|
#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
|
|
|
|
|
|
|
|
static const char FUNC_NAME[] = "MPI_Wtick";
|
|
|
|
|
|
|
|
|
|
|
|
double MPI_Wtick(void)
|
|
|
|
{
|
2008-02-19 22:15:52 +00:00
|
|
|
OPAL_CR_NOOP_PROGRESS();
|
2007-03-16 23:11:45 +00:00
|
|
|
|
2006-08-27 04:58:02 +00:00
|
|
|
#if OPAL_TIMER_USEC_NATIVE
|
2007-11-26 18:23:53 +00:00
|
|
|
/* We may or may not have native usec precision on Windows, so put
|
|
|
|
this #if before the #ifdef checking for Windows. */
|
2006-08-27 04:58:02 +00:00
|
|
|
return 0.000001;
|
2007-11-26 18:23:53 +00:00
|
|
|
#elif defined(__WINDOWS__)
|
2006-08-28 10:27:27 +00:00
|
|
|
if( (opal_timer_t)0 == opal_timer_base_get_freq() ) {
|
2008-06-09 14:53:58 +00:00
|
|
|
opal_output( 0, "No timer frequency\n" );
|
2006-08-28 10:27:27 +00:00
|
|
|
}
|
|
|
|
return (double)opal_timer_base_get_freq();
|
2006-08-29 04:30:33 +00:00
|
|
|
#else
|
2007-11-26 18:23:53 +00:00
|
|
|
/* Otherwise, we already return usec precision. */
|
2006-08-29 04:30:33 +00:00
|
|
|
return 0.000001;
|
2007-11-26 18:23:53 +00:00
|
|
|
#endif
|
2005-11-07 17:22:48 +00:00
|
|
|
}
|