view scripts/time/tic.m @ 7017:a1dbe9d80eee

[project @ 2007-10-12 21:27:11 by jwe]
author jwe
date Fri, 12 Oct 2007 21:27:37 +0000
parents 93c65f2a5668
children
line wrap: on
line source

## Copyright (C) 1996, 1997, 2006, 2007 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {} tic ()
## @deftypefnx {Function File} {} toc ()
## Set or check a wall-clock timer.  Calling @code{tic} without an
## output argument sets the timer.  Subsequent calls to @code{toc}
## return the number of seconds since the timer was set.  For example,
##
## @example
## tic ();
## # many computations later...
## elapsed_time = toc ();
## @end example
##
## @noindent
## will set the variable @code{elapsed_time} to the number of seconds since
## the most recent call to the function @code{tic}.
##
## If called with one output argument then this function returns a scalar
## of type @code{uint64} and the wall-clock timer is not started.
##
## @example
## @group
## t = tic; sleep (5); (double (tic ()) - double (t)) * 1e-6
##      @result{} 5
## @end group
## @end example
##
## Nested timing with @code{tic} and @code{toc} is not supported.
## Therefore @code{toc} will always return the elapsed time from the most
## recent call to @code{tic}.
##
## If you are more interested in the CPU time that your process used, you
## should use the @code{cputime} function instead.  The @code{tic} and
## @code{toc} functions report the actual wall clock time that elapsed
## between the calls.  This may include time spent processing other jobs or
## doing nothing at all.  For example,
##
## @example
## @group
## tic (); sleep (5); toc ()
##      @result{} 5
## t = cputime (); sleep (5); cputime () - t
##      @result{} 0
## @end group
## @end example
##
## @noindent
## (This example also illustrates that the CPU timer may have a fairly
## coarse resolution.)
## @end deftypefn

## Author: jwe

function ret = tic ()

  if (nargin != 0)
    warning ("tic: ignoring extra arguments");
  endif

  if (nargout == 1)
    ret = uint64 (time () * 1e6);
  else
    global __tic_toc_timestamp__;
    __tic_toc_timestamp__ = clock ();
  endif

endfunction