summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorGuillaume LE VAILLANT <glv@posteo.net>2018-08-26 11:40:30 +0200
committerGuillaume LE VAILLANT <glv@posteo.net>2018-08-26 11:40:30 +0200
commit214c828772c90424349639fe59c4e5a9ce98fa46 (patch)
treecf35b5d9da47c9d36632f4f6444bbfa056876311 /benchmark
parent6f2c3df979d5a07146b63103682cdc10580549dc (diff)
benchmark: reduce data size for allegro and ecl
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/benchmark-implementation.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/benchmark-implementation.lisp b/benchmark/benchmark-implementation.lisp
index 7447085..7fa7306 100644
--- a/benchmark/benchmark-implementation.lisp
+++ b/benchmark/benchmark-implementation.lisp
@@ -1,9 +1,9 @@
(asdf:load-system "ironclad")
(defparameter *data-size*
- #+sbcl (expt 10 8)
- #+(or allegro ccl ecl) (expt 10 7)
- #-(or allegro ccl ecl sbcl) (expt 10 6))
+ #+sbcl (expt 2 27)
+ #+ccl (expt 2 23)
+ #-(or sbcl ccl) (expt 2 20))
(defparameter *buffer-size* 32768)
(defparameter *iterations* 100)
(defparameter *implementation-result-file* "benchmark-tmp")