LAPACK  3.7.0
LAPACK: Linear Algebra PACKage
real function second ( )

SECOND Using ETIME_

Purpose:
  SECOND returns the user time for a process in seconds.
  This version gets the time from the system function ETIME_.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
December 2016

Definition at line 37 of file second_EXT_ETIME_.f.

37 *
38 * -- LAPACK auxiliary routine (version 3.7.0) --
39 * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
40 * February 2007
41 * =====================================================================
42 *
43 * .. Local Scalars ..
44  REAL t1
45 * ..
46 * .. Local Arrays ..
47  REAL tarray( 2 )
48 * ..
49 * .. External Functions ..
50  REAL etime_
51  EXTERNAL etime_
52 * ..
53 * .. Executable Statements ..
54 *
55  t1 = etime_( tarray )
56  second = tarray( 1 )
57  RETURN
58 *
59 * End of SECOND
60 *
real function second()
SECOND Using ETIME

Here is the call graph for this function: