You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
*> \brief \b DSECND Using ETIME
|
|
*
|
|
* =========== DOCUMENTATION ===========
|
|
*
|
|
* Online html documentation available at
|
|
* http://www.netlib.org/lapack/explore-html/
|
|
*
|
|
* Definition:
|
|
* ===========
|
|
*
|
|
* DOUBLE PRECISION FUNCTION DSECND( )
|
|
*
|
|
*
|
|
*> \par Purpose:
|
|
* =============
|
|
*>
|
|
*> \verbatim
|
|
*>
|
|
*> DSECND returns the user time for a process in seconds.
|
|
*> This version gets the time from the EXTERNAL system function ETIME.
|
|
*> \endverbatim
|
|
*
|
|
* Authors:
|
|
* ========
|
|
*
|
|
*> \author Univ. of Tennessee
|
|
*> \author Univ. of California Berkeley
|
|
*> \author Univ. of Colorado Denver
|
|
*> \author NAG Ltd.
|
|
*
|
|
*> \ingroup auxOTHERauxiliary
|
|
*
|
|
* =====================================================================
|
|
DOUBLE PRECISION FUNCTION DSECND( )
|
|
*
|
|
* -- LAPACK auxiliary routine --
|
|
* -- LAPACK is a software package provided by Univ. of Tennessee, --
|
|
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
|
|
*
|
|
*
|
|
* =====================================================================
|
|
*
|
|
* .. Local Scalars ..
|
|
REAL T1
|
|
* ..
|
|
* .. Local Arrays ..
|
|
REAL TARRAY( 2 )
|
|
* ..
|
|
* .. External Functions ..
|
|
REAL ETIME
|
|
EXTERNAL ETIME
|
|
* ..
|
|
* .. Executable Statements ..
|
|
*
|
|
T1 = ETIME( TARRAY )
|
|
DSECND = TARRAY( 1 )
|
|
RETURN
|
|
*
|
|
* End of DSECND
|
|
*
|
|
END
|
|
|