Files
lapack/INSTALL/second_INT_ETIME.f
T
Julie e18d437924 Making LAPACK's code eternal... no more version and date in source files.
GitHub is now enabling us to track accurately version and date.
No need for this anymore.
2021-03-25 10:16:58 -07:00

61 lines
1.4 KiB
FortranFixed

*> \brief \b SECOND Using the INTERNAL function 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 INTERNAL 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 --
* -- 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 )
* ..
* .. Intrinsic Functions ..
REAL ETIME
INTRINSIC ETIME
* ..
* .. Executable Statements ..
*
T1 = ETIME( TARRAY )
SECOND = TARRAY( 1 )
RETURN
*
* End of SECOND
*
END