Re: Enormous benchmark speedup

2009-07-25 Thread Juhani Viheräkoski
On Thu, 23 Jul 2009, Andy Wingo wrote: So here's a project, should you choose to be interested ;-) Sometimes we do things that we don't know exactly how they affect performance. We're working on getting decent measurement into Guile's build itself... I mean, we want to work on it :) But we're no

tfib.scm

2009-07-26 Thread Juhani Viheräkoski
At least I could easily put raw logs available to my webpage, I run the benchmarks by hand anyway. Then I could try to polish my hacked benchmark suite and send it upstream. There were some bugs introduced by my porting efforts, I *think* I've fixed them all now :) If someone wants to try it it'

Re: i guess we're frozen & stuff

2009-08-11 Thread Juhani Viheräkoski
Hi, For me the build of the current master fails with: libtool: compile: gcc -DHAVE_CONFIG_H -DBUILDING_LIBGUILE=1 -I.. -I.. -I../lib -I../lib -pthread -Wall -Wmissing-prototypes -Werror -fvisibility=hidden -O3 -g -march=athlon-xp -MT libguile_la-strings.lo -MD -MP -MF .deps/libguile_la-stri

simplex.scm fails after recent changes in master

2009-08-15 Thread Juhani Viheräkoski
Hi, This testcase now seems to run forever when compiled but works with the interpreter. It used to work when I last tried, that was maybe a week ago. -- Juhani(define (run-bench name count ok? run) (let loop ((i count) (result '(undefined))) (if (< 0 i) (loop (- i 1) (run))