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

◆ slenable()

subroutine slenable

Definition at line 122 of file sltimer.f.

123*
124* -- ScaLAPACK tools routine (version 1.7) --
125* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
126* and University of California, Berkeley.
127* May 1, 1997
128*
129* Purpose
130* =======
131*
132* SLENABLE sets it so calls to SLtimer are not ignored.
133*
134* =====================================================================
135*
136* .. Parameters ..
137 INTEGER NTIMER
138 parameter( ntimer = 64 )
139* ..
140* .. Common Blocks ..
141 LOGICAL DISABLED
142 DOUBLE PRECISION CPUSEC( NTIMER ), CPUSTART( NTIMER ),
143 $ WALLSEC( NTIMER ), WALLSTART( NTIMER )
144 COMMON /sltimer00/ cpusec, wallsec, cpustart, wallstart, disabled
145* ..
146* .. Executable Statements ..
147*
148 disabled = .false.
149*
150 RETURN
151*