C $Header: /u/gcmpack/MITgcm/pkg/showflops/showflops_inloop.F,v 1.3 2012/07/07 00:08:09 jmc Exp $
C $Name: $
#include "SHOWFLOPS_OPTIONS.h"
CBOP
C !ROUTINE: SHOWFLOPS_INLOOP
C !INTERFACE:
SUBROUTINE SHOWFLOPS_INLOOP( iloop, myThid )
C !DESCRIPTION: \bv
C *================================================================*
C | SUBROUTINE showflops_inloop
C | o Do runtime timing
C *================================================================*
C \ev
C !USES:
IMPLICIT NONE
C == Global variables ==
#include "SIZE.h"
#include "EEPARAMS.h"
#include "PARAMS.h"
#include "SHOWFLOPS.h"
C !INPUT/OUTPUT PARAMETERS:
C == Routine arguments ==
C note: under the multi-threaded model myiter and
C mytime are local variables passed around as routine
C arguments. Although this is fiddly it saves the need to
C impose additional synchronisation points when they are
C updated.
C myThid - thread number for this instance of the routine.
integer iloop
INTEGER myThid
C !FUNCTIONS:
C == Functions ==
#ifdef ALLOW_RUNCLOCK
LOGICAL RUNCLOCK_CONTINUE
LOGICAL RC_CONT
#endif
C !LOCAL VARIABLES:
C == Local variables ==
CEOP
#ifdef ALLOW_DEBUG
IF (debugMode) CALL DEBUG_ENTER('SHOWFLOPS_INLOOP',myThid)
#endif
#ifdef ALLOW_RUNCLOCK
IF (useRunClock) THEN
RC_CONT=RUNCLOCK_CONTINUE( myThid )
IF (.NOT.RC_CONT) RETURN
ENDIF
#endif /* ALLOW_RUNCLOCK */
#ifdef TIME_PER_TIMESTEP
CCE107 Time per timestep information
_BEGIN_MASTER( myThid )
CALL TIMER_GET_TIME( utnew, stnew, wtnew )
WRITE(msgBuf,'(A34,3F10.6,I8)')
$ 'User, system and wallclock time:', utnew - utold,
$ stnew - stold, wtnew - wtold, iloop
CALL PRINT_MESSAGE(msgBuf,standardMessageUnit,SQUEEZE_RIGHT,1)
utold = utnew
stold = stnew
wtold = wtnew
_END_MASTER( myThid )
#endif
#ifdef USE_PAPI_FLOPS
CCE107 PAPI summary performance
_BEGIN_MASTER( myThid )
#ifdef USE_FLIPS
call PAPIF_FLIPS(real_time, proc_time, flpops, mflops, check)
#else
call PAPIF_FLOPS(real_time, proc_time, flpops, mflops, check)
#endif
WRITE(msgBuf,'(F12.6,A,F12.6,A34,I8)')
$ mflops, ' ', mflops*proc_time/(real_time + 1E-36),
$ 'Mflop/s during timestep ', iloop
CALL PRINT_MESSAGE(msgBuf,standardMessageUnit,SQUEEZE_RIGHT,1)
#ifdef PAPI_VERSION
call PAPIF_IPC(real_time, proc_time, instr, ipc, check)
WRITE(msgBuf,'(F12.6,A,F12.6,A34,I8)')
$ ipc, ' ', ipc*proc_time/(real_time + 1E-36),
$ 'IPC during timestep ', iloop
CALL PRINT_MESSAGE(msgBuf,standardMessageUnit,SQUEEZE_RIGHT,1)
#endif
_END_MASTER( myThid )
#else
#ifdef USE_PCL_FLOPS
CCE107 PCL summary performance
_BEGIN_MASTER( myThid )
res = PCLstop(descr, i_result, fp_result, nevents)
do ipcl = 1, nevents
WRITE(msgBuf,'(F12.6,A2,A22,A17,I8)'), fp_result(ipcl),
$ ' ', pcl_counter_name(pcl_counter_list(ipcl)),
$ 'during timestep ', iloop
CALL PRINT_MESSAGE(msgBuf,standardMessageUnit,SQUEEZE_RIGHT,1)
enddo
res = PCLstart(descr, pcl_counter_list, nevents, flags)
_END_MASTER( myThid )
#endif
#endif
#ifdef ALLOW_DEBUG
IF (debugMode) CALL DEBUG_LEAVE('SHOWFLOPS_INLOOP',myThid)
#endif
END