1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="DOCTEXT">
<TITLE>PetscGetTime</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<A NAME="PetscGetTime"><H1>PetscGetTime</H1></A>
Returns the current time of day in seconds. This returns wall-clock time.
<H3><FONT COLOR="#CC3333">Synopsis</FONT></H3>
<PRE>
#include "petsc.h"
int PetscGetTime(PetscLogDouble *t)
</PRE>
Not Collective
<P>
<H3><FONT COLOR="#CC3333">Output Parameter</FONT></H3>
<DT><B>v </B> -time counter
<br>
<P>
<H3><FONT COLOR="#CC3333">Usage</FONT></H3>
<PRE>
PetscLogDouble v1,v2,elapsed_time;
ierr = <A HREF="../Profiling/PetscGetTime.html#PetscGetTime">PetscGetTime</A>(&v1);CHKERR(ierr);
.... perform some calculation ...
ierr = <A HREF="../Profiling/PetscGetTime.html#PetscGetTime">PetscGetTime</A>(&v2);CHKERR(ierr);
elapsed_time = v2 - v1;
</PRE>
<P>
<H3><FONT COLOR="#CC3333">Notes</FONT></H3>
Since the PETSc libraries incorporate timing of phases and operations,
<A HREF="../Profiling/PetscGetTime.html#PetscGetTime">PetscGetTime</A>() is intended only for timing of application codes.
The options database commands -log, -log_summary, and -log_all activate
PETSc library timing. See the users manual for further details.
<P>
<P>
<H3><FONT COLOR="#CC3333">See Also</FONT></H3>
<A HREF="../Profiling/PetscLogEventRegister.html#PetscLogEventRegister">PetscLogEventRegister</A>(), <A HREF="../Profiling/PetscLogEventBegin.html#PetscLogEventBegin">PetscLogEventBegin</A>(), <A HREF="../Profiling/PetscLogEventEnd.html#PetscLogEventEnd">PetscLogEventEnd</A>(), <A HREF="../Profiling/PetscLogStagePush.html#PetscLogStagePush">PetscLogStagePush</A>(),
<BR><A HREF="../Profiling/PetscLogStagePop.html#PetscLogStagePop">PetscLogStagePop</A>(), <A HREF="../Profiling/PetscLogStageRegister.html#PetscLogStageRegister">PetscLogStageRegister</A>(), <A HREF="../Profiling/PetscGetFlops.html#PetscGetFlops">PetscGetFlops</A>()
<P>
<H3><FONT COLOR="#CC3333">Keywords</FONT></H3>
get, time
<BR><P><B><P><B><FONT COLOR="#CC3333">Level:</FONT></B>intermediate
<BR><FONT COLOR="#CC3333">Location:</FONT></B><A HREF="../../../src/sys/src/plog/plog.c.html#PetscGetTime">src/sys/src/plog/plog.c</A>
<BR><A HREF="./index.html">Index of all Profiling routines</A>
<BR><A HREF="../../index.html">Table of Contents for all manual pages</A>
<BR><A HREF="../singleindex.html">Index of all manual pages</A>
<P><H3><FONT COLOR="#CC3333">Examples</FONT></H3>
<A HREF="../../../src/sles/examples/tutorials/ex10.c.html">src/sles/examples/tutorials/ex10.c.html</A><BR>
</BODY></HTML>
|