ikarus/benchmarks
Abdulaziz Ghuloum 1c37a4ee54 * changing representation for all non-fixnum numbers. 2007-01-21 19:20:37 -05:00
..
num-iters * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
prefix * exact->inexact is now implemnted. 2007-01-20 19:26:17 -05:00
src * changing representation for all non-fixnum numbers. 2007-01-21 19:20:37 -05:00
suffix * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
sys * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
README * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
analyse-results.scm * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
bench * changing representation for all non-fixnum numbers. 2007-01-21 19:20:37 -05:00
evaluate * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
generate-html-from-all-results.scm * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
optimize-gcc-options.scm * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
readme.original * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
results.Larceny-r6rs * Many numeric predicates are added (exact?, inexact?, real?, 2007-01-20 16:52:22 -05:00
results.Petite-Chez-Scheme-r5rs * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
summarize * Many numeric predicates are added (exact?, inexact?, real?, 2007-01-20 16:52:22 -05:00
summarize.sch * changing representation for all non-fixnum numbers. 2007-01-21 19:20:37 -05:00
summarize2.sch * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
table * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00
todo.update * Added benchmarks from the larceny source distribution. 2007-01-20 14:32:30 -05:00

README

This directory contains the Gambit benchmarks and benchmarking
infrastructure, written by Marc Feeley.  Will Clinger has
hacked it up to run benchmarks on the machines used by the
Larceny project, and has added several benchmarks beyond
those distributed with Gambit.

Additional files and directories:

    summarize.sch   ; Scheme code for summarizing results
    summarize2.sch  ; Scheme code for generating HTML of results
    results.*       ; outputs of the bench script
    Results         ; a place to move results.* files

To summarize results:

    % larceny
    > (load "summarize.sch")
    > ((summarize larceny-results) "results.Larceny")
    > ((summarize mzscheme-results) "results.MzScheme")

An output file can be specified as an optional argument.

To generate HTML bar graphs of summarized results:

    % larceny
    > (load "summarize.sch")
    > (load "summarize2.sch")
    > (define summaries (decode-usual-suspects))
    > (graph-benchmarks summaries "temp1")

See the definition of decode-usual-suspects in summarize.sch.
There is also a decode-usual-suspects-linux.

Will Clinger