SCALAPACK 2.2.2
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ pb_disable()

subroutine pb_disable

Definition at line 3091 of file pblastim.f.

3092*
3093* -- PBLAS test routine (version 2.0) --
3094* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
3095* and University of California, Berkeley.
3096* April 1, 1998
3097*
3098* Purpose
3099* =======
3100*
3101* PB_DISABLE sets it so calls to PB_TIMER are ignored.
3102*
3103* -- Written on April 1, 1998 by
3104* R. Clint Whaley, University of Tennessee, Knoxville 37996, USA.
3105*
3106* =====================================================================
3107*
3108* .. Parameters ..
3109 INTEGER NTIMER
3110 parameter( ntimer = 64 )
3111* ..
3112* .. Common Blocks ..
3113 LOGICAL DISABLED
3114 DOUBLE PRECISION CPUSEC( NTIMER ), CPUSTART( NTIMER ),
3115 $ WALLSEC( NTIMER ), WALLSTART( NTIMER )
3116 COMMON /sltimer00/ cpusec, wallsec, cpustart, wallstart, disabled
3117* ..
3118* .. Executable Statements ..
3119*
3120 disabled = .true.
3121*
3122 RETURN
3123*
3124* End of PB_DISABLE
3125*