LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
double precision function dsecnd ( )

DSECND Using ETIME

DSECND returns nothing

DSECND Using the INTERNAL function ETIME.

DSECND Using INTERNAL function CPU_TIME.

DSECND Using ETIME_

Purpose:
  DSECND returns the user time for a process in seconds.
  This version gets the time from the EXTERNAL system function ETIME.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011
Purpose:
  DSECND 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
November 2011
Purpose:
  DSECND returns the user time for a process in seconds.
  This version gets the time from the INTERNAL function CPU_TIME.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011
Purpose:
  DSECND returns the user time for a process in seconds.
  This version gets the time from the INTERNAL function ETIME.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011
Purpose:
  DSECND returns nothing instead of returning the user time for a process in seconds.
  If you are using that routine, it means that neither EXTERNAL ETIME,
  EXTERNAL ETIME_, INTERNAL ETIME, INTERNAL CPU_TIME is available  on
  your machine.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 37 of file dsecnd_EXT_ETIME.f.

37 *
38 * -- LAPACK auxiliary routine (version 3.4.0) --
39 * -- LAPACK is a software package provided by Univ. of Tennessee, --
40 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
41 * November 2011
42 *
43 *
44 * =====================================================================
45 *
46 * .. Local Scalars ..
47  REAL t1
48 * ..
49 * .. Local Arrays ..
50  REAL tarray( 2 )
51 * ..
52 * .. External Functions ..
53  REAL etime
54  EXTERNAL etime
55 * ..
56 * .. Executable Statements ..
57 *
58  t1 = etime( tarray )
59  dsecnd = tarray( 1 )
60  RETURN
61 *
62 * End of DSECND
63 *
double precision function dsecnd()
DSECND Using ETIME

Here is the caller graph for this function: