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

◆ pb_enable()

subroutine pb_enable

Definition at line 3053 of file pblastim.f.

3054*
3055* -- PBLAS test routine (version 2.0) --
3056* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
3057* and University of California, Berkeley.
3058* April 1, 1998
3059*
3060*
3061* Purpose
3062* =======
3063*
3064* PB_ENABLE sets it so calls to PB_TIMER are not ignored.
3065*
3066* -- Written on April 1, 1998 by
3067* R. Clint Whaley, University of Tennessee, Knoxville 37996, USA.
3068*
3069* =====================================================================
3070*
3071* .. Parameters ..
3072 INTEGER NTIMER
3073 parameter( ntimer = 64 )
3074* ..
3075* .. Common Blocks ..
3076 LOGICAL DISABLED
3077 DOUBLE PRECISION CPUSEC( NTIMER ), CPUSTART( NTIMER ),
3078 $ WALLSEC( NTIMER ), WALLSTART( NTIMER )
3079 COMMON /sltimer00/ cpusec, wallsec, cpustart, wallstart, disabled
3080* ..
3081* .. Executable Statements ..
3082*
3083 disabled = .false.
3084*
3085 RETURN
3086*
3087* End of PB_ENABLE
3088*