d377a6b6f4
This code is the implementation of Software-base Performance Counters as described in the paper 'Using Software-Base Performance Counters to Expose Low-Level Open MPI Performance Information' in EuroMPI/USA '17 (http://icl.cs.utk.edu/news_pub/submissions/software-performance-counters.pdf). More practical usage information can be found here: https://github.com/davideberius/ompi/wiki/How-to-Use-Software-Based-Performance-Counters-(SPCs)-in-Open-MPI. All software events functions are put in macros that become no-ops when SOFTWARE_EVENTS_ENABLE is not defined. The internal timer units have been changed to cycles to avoid division operations which was a large source of overhead as discussed in the paper. Added a --with-spc configure option to enable SPCs in the Open MPI build. This defines SOFTWARE_EVENTS_ENABLE. Added an MCA parameter, mpi_spc_enable, for turning on specific counters. Added an MCA parameter, mpi_spc_dump_enabled, for turning on and off dumping SPC counters in MPI_Finalize. Added an SPC test and example. Signed-off-by: David Eberius <deberius@vols.utk.edu>
81 строка
2.4 KiB
C
81 строка
2.4 KiB
C
/*
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2018 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.
|
|
* Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2015 Research Organization for Information Science
|
|
* and Technology (RIST). All rights reserved.
|
|
* Copyright (c) 2017 IBM Corporation. All rights reserved.
|
|
* Copyright (c) 2017 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
#include "ompi_config.h"
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
#include <sys/time.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
#ifdef HAVE_TIME_H
|
|
#include <time.h>
|
|
#endif /* HAVE_TIME_H */
|
|
|
|
#include MCA_timer_IMPLEMENTATION_HEADER
|
|
#include "ompi/mpi/c/bindings.h"
|
|
#include "ompi/runtime/mpiruntime.h"
|
|
#include "ompi/runtime/ompi_spc.h"
|
|
|
|
#if OMPI_BUILD_MPI_PROFILING
|
|
#if OPAL_HAVE_WEAK_SYMBOLS
|
|
#pragma weak MPI_Wtime = PMPI_Wtime
|
|
#endif
|
|
#define MPI_Wtime PMPI_Wtime
|
|
#endif
|
|
|
|
double MPI_Wtime(void)
|
|
{
|
|
double wtime;
|
|
|
|
SPC_RECORD(OMPI_SPC_WTIME, 1);
|
|
|
|
/*
|
|
* See https://github.com/open-mpi/ompi/issues/3003 to find out
|
|
* what's happening here.
|
|
*/
|
|
#if 0
|
|
#if OPAL_TIMER_CYCLE_NATIVE
|
|
wtime = ((double) opal_timer_base_get_cycles()) / opal_timer_base_get_freq();
|
|
#elif OPAL_TIMER_USEC_NATIVE
|
|
wtime = ((double) opal_timer_base_get_usec()) / 1000000.0;
|
|
#endif
|
|
#else
|
|
#if defined(__linux__) && OPAL_HAVE_CLOCK_GETTIME
|
|
struct timespec tp = {.tv_sec = 0, .tv_nsec = 0};
|
|
(void) clock_gettime(CLOCK_MONOTONIC, &tp);
|
|
wtime = tp.tv_sec;
|
|
wtime += tp.tv_nsec/1.0e+9;
|
|
#else
|
|
/* Fall back to gettimeofday() if we have nothing else */
|
|
struct timeval tv;
|
|
gettimeofday(&tv, NULL);
|
|
wtime = tv.tv_sec;
|
|
wtime += (double)tv.tv_usec / 1000000.0;
|
|
#endif
|
|
#endif
|
|
|
|
OPAL_CR_NOOP_PROGRESS();
|
|
|
|
return wtime;
|
|
}
|