Cloned library LAPACK-3.11.0 with extra build files for internal package management.
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.
 
 
 
 
 

59 lines
1.3 KiB

*> \brief \b SECOND Using ETIME_
*
* =========== DOCUMENTATION ===========
*
* Online html documentation available at
* http://www.netlib.org/lapack/explore-html/
*
* Definition:
* ===========
*
* REAL FUNCTION SECOND( )
*
*
*> \par Purpose:
* =============
*>
*> \verbatim
*>
*> SECOND returns the user time for a process in seconds.
*> This version gets the time from the system function ETIME_.
*> \endverbatim
*
* Authors:
* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley
*> \author Univ. of Colorado Denver
*> \author NAG Ltd.
*
*> \ingroup auxOTHERauxiliary
*
* =====================================================================
REAL FUNCTION SECOND( )
*
* -- LAPACK auxiliary routine --
* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
*=====================================================================
*
* .. Local Scalars ..
REAL T1
* ..
* .. Local Arrays ..
REAL TARRAY( 2 )
* ..
* .. External Functions ..
REAL ETIME_
EXTERNAL ETIME_
* ..
* .. Executable Statements ..
*
T1 = ETIME_( TARRAY )
SECOND = TARRAY( 1 )
RETURN
*
* End of SECOND
*
END