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

◆ sldisable()

subroutine sldisable

Definition at line 154 of file sltimer.f.

155*
156* -- ScaLAPACK tools routine (version 1.7) --
157* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
158* and University of California, Berkeley.
159* May 1, 1997
160*
161* Purpose
162* =======
163*
164* SLDISABLE sets it so calls to SLTIMER are ignored.
165*
166* =====================================================================
167*
168* .. Parameters ..
169 INTEGER NTIMER
170 parameter( ntimer = 64 )
171* ..
172* .. Common Blocks ..
173 LOGICAL DISABLED
174 DOUBLE PRECISION CPUSEC( NTIMER ), CPUSTART( NTIMER ),
175 $ WALLSEC( NTIMER ), WALLSTART( NTIMER )
176 COMMON /sltimer00/ cpusec, wallsec, cpustart, wallstart, disabled
177* ..
178* .. Executable Statements ..
179*
180 disabled = .true.
181*
182 RETURN
183*
184* End of SLDISABLE
185*