summaryrefslogtreecommitdiff
path: root/benchmark-suite
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove `.cvsignore' files.Ludovic Courtès2008-09-111-2/+0
|
* Add `read' benchmark.Ludovic Courtès2008-04-173-4/+72
|
* * LICENSE: Change COPYING.LIB to COPYING.LESSER.Neil Jerram2008-01-222-0/+4
| | | | | | | | | | | | | | | | | | | | * COPYING.LESSER: Renamed, previously COPYING.LIB. * COPYING: Removed. * COPYING: Removed. * COPYING: Removed. * COPYING: Removed. * COPYING: Removed. * COPYING: Removed. * COPYING: Removed. * COPYING: Removed.
* Note need for subscription to bug-guile@gnu.org.Neil Jerram2006-11-172-4/+10
|
* (SCM_BENCHMARKS_DIRS, dist-hook): Removed, they areMarius Vollmer2006-05-012-10/+5
| | | | no longer needed and lead to unclean tarballs.
* merge from 1.8 branchKevin Ryde2006-04-162-2/+2
|
* The FSF has a new address.Marius Vollmer2005-05-232-4/+4
|
* New versions of the GPLand LGPL with the new address of the FSF.Marius Vollmer2005-05-231-340/+0
|
* * lib.scm: Extracted '/i' to toplevel. Print the guile versionDirk Herrmann2004-01-232-8/+22
| | | | | number before the benchmarks are run. Print the framework-time per iteration as an inexact number.
* *** empty log message ***Marius Vollmer2004-01-061-0/+5
|
* (print-result, print-user-result): Handle exact fractions.Marius Vollmer2004-01-061-14/+16
|
* * benchmark-suite/lib.scm: Fix some typos in the documentation.Dirk Herrmann2003-05-272-2/+6
| | | | | | | | | | | | | | * doc/ref/scheme-compound.texi: Clarified that vectors need to be quoted. * doc/tutorial/guile-tut.texi: Fix example, where a vector constant is used without quoting. * ice-9/boot-9.scm (make-autoload-interface): Added missing quote around vector constant. * test-suite/tests/elisp.test: Added missing quote around vector constants.
* *** empty log message ***Rob Browning2002-09-151-0/+4
|
* * .cvsignore: new file.Rob Browning2002-09-151-0/+2
|
* *** empty log message ***Marius Vollmer2002-07-261-0/+1
|
* (dist-hook): Use quotes so that an empty SCM_BENCHMARKS_DIRS works.Marius Vollmer2002-07-261-1/+1
|
* *** empty log message ***Marius Vollmer2002-07-261-0/+6
|
* (SCM_BENCHMARKS): List the real benchmarks, not fooMarius Vollmer2002-07-261-4/+5
| | | | | and bar. (SCM_BENCHMARKS_DIRS): Uncommented, with an empty value.
* * lib.scm (print-result, print-user-result): Changed theDirk Herrmann2002-07-212-14/+19
| | | | | reporter's outputs to use symbols rather than strings to document the individual values. Thanks to Neil Jerram for the suggestion.
* * benchmarks/0-reference.bm: Added as a reference benchmark to beDirk Herrmann2002-07-213-26/+307
| | | | | | | | | | | | | | | | | | | | | | | | | used to calibrate iteration counts. * lib.scm: Added documentation. Added some initialization messages. (benchmark-time-base, benchmark-total-time, benchmark-user-time, benchmark-system-time, benchmark-frame-time, benchmark-core-time, benchmark-user-time\interpreter, benchmark-core-time\interpreter): Exported. (benchmark-time-base, time-base): Renamed time-base to benchmark-time-base and introduced new time-base as a short-cut. (total-time, benchmark-total-time, user-time, benchmark-user-time, system-time, benchmark-system-time, frame-time, benchmark-frame-time, benchmark-time, benchmark-core-time, user-time\interpreter, benchmark-user-time\interpreter, benchmark-time\interpreter, benchmark-core-time\interpreter, print-result, print-user-result): Renamed <foo>-time to benchmark-<foo>-time. Exceptions: benchmark-time and benchmark-time\interpreter were renamed to benchmark-core-time and benchmark-core-time\interpreter, respectively.
* * COPYING, README, Makefile.am, lib.scm, guile-benchmark: CopiedDirk Herrmann2002-07-209-0/+936
from the test-suite directory, renamed and adapted for use with benchmarks. * benchmarks/logand.bm, benchmarks/continuations.bm, benchmarks/if.bm: Added as initial fairly stupid examples for benchmarks.