Skip to content

Commit

Permalink
benchmark: reduce data size for allegro and ecl
Browse files Browse the repository at this point in the history
  • Loading branch information
glv2 committed Aug 26, 2018
1 parent 6f2c3df commit 214c828
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/benchmark-implementation.lisp
Original file line number Diff line number Diff line change
@@ -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")
Expand Down

0 comments on commit 214c828

Please sign in to comment.