37 lines
781 B
Fortran
37 lines
781 B
Fortran
SUBROUTINE SECOND( T )
|
|
*
|
|
REAL T
|
|
*
|
|
* -- LAPACK auxiliary routine (preliminary version) --
|
|
* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
|
|
* Courant Institute, Argonne National Lab, and Rice University
|
|
* July 26, 1991
|
|
*
|
|
* Purpose
|
|
* =======
|
|
*
|
|
* SECOND returns the user time for a process in seconds.
|
|
* This version gets the time from the system function ETIME.
|
|
*
|
|
* .. Local Scalars ..
|
|
REAL T1
|
|
* ..
|
|
* .. Local Arrays ..
|
|
REAL TARRAY( 2 )
|
|
* ..
|
|
* .. External Functions ..
|
|
REAL ETIME
|
|
* EXTERNAL ETIME
|
|
* ..
|
|
* .. Executable Statements ..
|
|
*
|
|
|
|
T1 = ETIME( TARRAY )
|
|
T = TARRAY( 1 )
|
|
|
|
RETURN
|
|
*
|
|
* End of SECOND
|
|
*
|
|
END
|