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

◆ pb_boot()

subroutine pb_boot

Definition at line 2926 of file pblastim.f.

2927*
2928* -- PBLAS test routine (version 2.0) --
2929* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
2930* and University of California, Berkeley.
2931* April 1, 1998
2932*
2933*
2934* Purpose
2935* =======
2936*
2937* PB_BOOT (re)sets all timers to 0, and enables PB_TIMER.
2938*
2939* -- Written on April 1, 1998 by
2940* R. Clint Whaley, University of Tennessee, Knoxville 37996, USA.
2941*
2942* =====================================================================
2943*
2944* .. Parameters ..
2945 INTEGER NTIMER
2946 parameter( ntimer = 64 )
2947 DOUBLE PRECISION STARTFLAG, ZERO
2948 parameter( startflag = -5.0d+0, zero = 0.0d+0 )
2949* ..
2950* .. Local Scalars ..
2951 INTEGER I
2952* ..
2953* .. Common Blocks ..
2954 LOGICAL DISABLED
2955 DOUBLE PRECISION CPUSEC( NTIMER ), CPUSTART( NTIMER ),
2956 $ WALLSEC( NTIMER ), WALLSTART( NTIMER )
2957 COMMON /sltimer00/ cpusec, wallsec, cpustart, wallstart, disabled
2958* ..
2959* .. Executable Statements ..
2960*
2961 disabled = .false.
2962 DO 10 i = 1, ntimer
2963 cpusec( i ) = zero
2964 wallsec( i ) = zero
2965 cpustart( i ) = startflag
2966 wallstart( i ) = startflag
2967 10 CONTINUE
2968*
2969 RETURN
2970*
2971* End of PB_BOOT
2972*
Here is the caller graph for this function: