LAPACK 3.3.1
Linear Algebra PACKage

dsecnd_EXT_ETIME_.f

Go to the documentation of this file.
00001       DOUBLE PRECISION FUNCTION DSECND( )
00002 *
00003 *  -- LAPACK auxiliary routine (version 3.2) --
00004 *     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
00005 *     February 2007
00006 *
00007 *  Purpose
00008 *  =======
00009 *
00010 *  DSECND returns the user time for a process in seconds.
00011 *  This version gets the time from the system function ETIME_.
00012 *
00013 * =====================================================================
00014 *
00015 *     .. Local Scalars ..
00016       REAL               T1
00017 *     ..
00018 *     .. Local Arrays ..
00019       REAL               TARRAY( 2 )
00020 *     ..
00021 *     .. External Functions ..
00022       REAL               ETIME_
00023       EXTERNAL           ETIME_
00024 *     ..
00025 *     .. Executable Statements ..
00026 *
00027       T1 = ETIME_( TARRAY )
00028       DSECND = TARRAY( 1 )
00029       RETURN
00030 *
00031 *     End of DSECND
00032 *
00033       END
 All Files Functions