blob: 4a9d26e051670352ffcaf1b65febd3e22d61a7c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
REAL FUNCTION SECOND( )
*
* -- LAPACK auxiliary routine (version 3.2) --
* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
* February 2007
*
* 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 )
SECOND = TARRAY( 1 )
RETURN
*
* End of SECOND
*
END
|