LAPACK  3.4.2
LAPACK: Linear Algebra PACKage
 All Files Functions Groups
dsecnd_INT_CPU_TIME.f
Go to the documentation of this file.
1 *> \brief \b DSECND Using INTERNAL function CPU_TIME.
2 *
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 * Definition:
9 * ===========
10 *
11 * DOUBLE PRECISION FUNCTION DSECND( )
12 *
13 *
14 *> \par Purpose:
15 * =============
16 *>
17 *> \verbatim
18 *>
19 *> DSECND returns the user time for a process in seconds.
20 *> This version gets the time from the INTERNAL function CPU_TIME.
21 *> \endverbatim
22 *
23 * Authors:
24 * ========
25 *
26 *> \author Univ. of Tennessee
27 *> \author Univ. of California Berkeley
28 *> \author Univ. of Colorado Denver
29 *> \author NAG Ltd.
30 *
31 *> \date November 2011
32 *
33 *> \ingroup auxOTHERauxiliary
34 *
35 * =====================================================================
36  DOUBLE PRECISION FUNCTION dsecnd( )
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 * .. Local Scalars ..
46 *
47  REAL t
48 *
49 * .. Intrinsic Functions ..
50 *
51  INTRINSIC cpu_time
52 *
53 * .. Executable Statements .. *
54 *
55  CALL cpu_time( t )
56  dsecnd = t
57  return
58 *
59 * End of DSECND
60 *
61  END