contrib/gdl-benchmark/README.markdown @ f44c93802d16
Update URLs
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 23 Dec 2019 16:29:23 -0500 |
parents |
fd171f53d514 |
children |
e5916bc47786 |
Temperance GDL Reasoning Benchmark
==================================
A thin wrapper to plug Temperance into [Stephan and Yngvi's GDL reasoner
benchmarking library thing][paper].
[paper]: http://cgi.cse.unsw.edu.au/~mit/GGP/GIGA-13-Proceedings.pdf#page=55
Setup
-----
Install [Roswell][].
Pick a Lisp implementation and install it with Roswell. Temperance is primarily
focused on running fast with [SBCL][], but should run on at least CCL and ECL
too.
ros install sbcl
Clone down the dependencies into Roswell's `local-projects` directory. You can
clone them elsewhere and symlink them if you prefer:
cd ~/.roswell/local-projects/
# Mercurial
hg clone https://hg.sr.ht/~sjl/temperance
hg clone https://hg.sr.ht/~sjl/cl-losh
# Git
git clone https://github.com/sjl/temperance
git clone https://github.com/sjl/cl-losh
Build the benchmarking binary with your chosen Lisp:
cd ~/.roswell/local-projects/temperance/contrib/gdl-benchmark/
ros use sbcl
ros build run_temperance.ros
Run the binary just like you would any of the others in the suite:
~/.roswell/local-projects/temperance/contrib/gdl-benchmark/run_temperance 'dfs mc' 10 .../foo.gdl .../foo.trace
[Roswell]: https://github.com/roswell/roswell
[SBCL]: http://www.sbcl.org/
Performance
-----------
The benchmark script ensures that Temperance will be compiled with sane
optimization settings: `(debug 1) (safety 1) (speed 3)`.
If you want to throw caution to the wind and see how fast it can get, you can
set the `PLEASE_SEGFAULT` environment variable to `YES` **when building**:
cd ~/.roswell/local-projects/temperance/contrib/gdl-benchmark/
ros use sbcl
PLEASE_SEGFAULT=YES ros build run_temperance.ros
This must be done when *building*. The variable has no effect when running the
binary.
In practice this results in a speed increase of around 20%.
PAIProlog
---------
A separate benchmark script that uses PAIProlog instead of Temperance is
included.
cd ~/.roswell/local-projects/temperance/contrib/gdl-benchmark/
ros use sbcl
ros build paip.ros
~/.roswell/local-projects/temperance/contrib/gdl-benchmark/run_paip 'dfs mc' 10 .../foo.gdl .../foo.trace