From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Re: Benchmark tracking Date: Sat, 31 Oct 2009 22:06:53 +0000 Message-ID: <87ocnn1ama.fsf@ossau.uklinux.net> References: <871vkoldwc.fsf@ossau.uklinux.net> <87d44479a6.fsf@ossau.uklinux.net> <952244.82216.qm@web37907.mail.mud.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1257026831 8378 80.91.229.12 (31 Oct 2009 22:07:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 31 Oct 2009 22:07:11 +0000 (UTC) Cc: Andy Wingo , Guile Development To: Mike Gran Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Oct 31 23:07:04 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N4M6B-00035c-Sq for guile-devel@m.gmane.org; Sat, 31 Oct 2009 23:07:04 +0100 Original-Received: from localhost ([127.0.0.1]:55326 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4M6B-0003z3-9t for guile-devel@m.gmane.org; Sat, 31 Oct 2009 18:07:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N4M68-0003yg-Np for guile-devel@gnu.org; Sat, 31 Oct 2009 18:07:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N4M63-0003yE-NX for guile-devel@gnu.org; Sat, 31 Oct 2009 18:07:00 -0400 Original-Received: from [199.232.76.173] (port=49514 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4M63-0003yB-IM for guile-devel@gnu.org; Sat, 31 Oct 2009 18:06:55 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:42590) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N4M63-00069p-44 for guile-devel@gnu.org; Sat, 31 Oct 2009 18:06:55 -0400 Original-Received: from arudy (host86-147-112-196.range86-147.btcentralplus.com [86.147.112.196]) by mail3.uklinux.net (Postfix) with ESMTP id 7285B1F6BDD; Sat, 31 Oct 2009 22:06:54 +0000 (GMT) Original-Received: from arudy (arudy [127.0.0.1]) by arudy (Postfix) with ESMTP id C781638023; Sat, 31 Oct 2009 22:06:53 +0000 (GMT) In-Reply-To: <952244.82216.qm@web37907.mail.mud.yahoo.com> (Mike Gran's message of "Fri, 30 Oct 2009 17:24:37 -0700 (PDT)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.4-2.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:9621 Archived-At: Mike Gran writes: > I did once play around with plotting the benchmarks.log files. > For your bemusement, I've attached a link to a script that I wrote. > > http://git.savannah.gnu.org/cgit/guile.git/tree/benchmark-suite/benchplot?h=string_abstraction2 Thanks, Mike. I like the idea of generating the gnuplot command file and then running it in a separate step; may switch my code to do that too. I also appreciate how your code shows how to do more cunning gnuplot things, like xtics and rotate; and the use of ~{ and ~} in format, which I hadn't taken on board before. My code is odd, in comparison with yours, in that it doesn't just use `read' to read the benchmark data. That's because I've been using the standard output from ./benchmark-guile, which begins with two uncommented lines: Benchmarking /home/neil/SW/Guile/ovnight/meta/guile ... with GUILE_LOAD_PATH=/home/neil/SW/Guile/ovnight/benchmark-suite ;; running guile version 1.9.3 ... But I see now that I could use benchmark-guile.log and just `read' instead... In summary, much appreciated! Neil