From: thierry.volpiatto@gmail.com
To: help-gnu-emacs@gnu.org
Subject: Re: is there a emacs lisp timing command?
Date: Tue, 24 Mar 2009 07:12:41 +0100 [thread overview]
Message-ID: <8763hzqwiu.fsf@tux.homenetwork> (raw)
In-Reply-To: 3a58c551-a1da-4794-8eb3-7de3c504c556@n7g2000prc.googlegroups.com
Hi,
have a look at traverselisp.el,
the function `traverse-deep-rfind' have a timer.
http://www.emacswiki.org/cgi-bin/emacs/traverselisp.el
Xah Lee <xahlee@gmail.com> writes:
> is there a elisp command like timing, that returns the time a function
> took?
>
> while testing some performance issues, i tried to write one.
>
> (defun xx-timing ()
> "returns the timing."
> (interactive)
> (let (starttime endtime)
> (setq starttime (current-time))
>
> ;; some function here
> (sleep-for 0 5)
>
> (setq endtime (current-time))
> (message "%f" (+ (* (- (elt endtime 0)
> (elt starttime 0)) 65536)
> (- (elt endtime 1)
> (elt starttime 1))
> (* (- (elt endtime 2)
> (elt starttime 2)) 0.001)))
> ))
>
> but after about 20 minutes on this, i gave up. It seems to me, when
> microseconds is involved (returned by current-time), the result is
> weired. I don't see any logical problem in my code, but the above code
> is obvious wrong, often returning results some 70 seconds extra
> whenever microseconds is involved.
>
> anyone has written a timing command somewhere?
>
> This is on:
> GNU Emacs 22.2.1 (powerpc-apple-darwin8.11.0, Carbon Version 1.6.0) of
> 2008-04-05 on g5.tokyo.stp.isas.jaxa.jp
>
> PowerPC G5, osx 10.4.11.
>
> Xah
> ∑ http://xahlee.org/
>
> ☄
>
>
--
A + Thierry Volpiatto
Location: Saint-Cyr-Sur-Mer - France
next prev parent reply other threads:[~2009-03-24 6:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-24 1:57 is there a emacs lisp timing command? Xah Lee
2009-03-24 6:12 ` thierry.volpiatto [this message]
2009-03-24 6:35 ` thierry.volpiatto
2009-03-24 6:46 ` thierry.volpiatto
2009-03-24 7:30 ` Helmut Eller
2009-03-24 8:11 ` thierry.volpiatto
2009-03-24 10:05 ` David Kastrup
2009-03-24 20:25 ` Nikolaj Schumacher
[not found] ` <mailman.3921.1237926315.31690.help-gnu-emacs@gnu.org>
2009-03-24 22:07 ` Xah Lee
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8763hzqwiu.fsf@tux.homenetwork \
--to=thierry.volpiatto@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).