tools: drop stats from defaults bench tests

This commit is contained in:
Simon Michael 2016-10-11 14:48:29 -07:00
parent d2b458197d
commit ca9a247d99
2 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,7 @@ benchWithTimeit = do
(t1,_) <- timeit ("print") $ print' opts j
(t2,_) <- timeit ("register") $ register opts j
(t3,_) <- timeit ("balance") $ balance opts j
(t4,_) <- timeit ("stats") $ stats opts j
printf "Total: %0.2fs\n" (sum [t0,t1,t2,t3,t4])
printf "Total: %0.2fs\n" (sum [t0,t1,t2,t3])
timeit :: String -> IO a -> IO (Double, a)
timeit name action = do

View File

@ -1,6 +1,6 @@
# commands to be run by simplebench (executable is specified separately)
#-f bench/10000x1000x10.journal stats
-f bench/10000x1000x10.journal print
-f bench/10000x1000x10.journal register
-f bench/10000x1000x10.journal balance
-f bench/10000x1000x10.journal stats