Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit f1d8772

Browse files
committed
use lower bench number
1 parent b41072f commit f1d8772

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

bench/src/Bench/Main.purs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ main :: Eff BenchEff Unit
6666
main = do
6767
log "| bench | type | n | mean | stddev | min | max |"
6868
log "| ----- | ---- | - | ---- | ------ | --- | --- |"
69-
bench 1000 ">>=R" testBindRight testBindRight [100, 1000, 5000]
70-
bench 1000 ">>=L" testBindLeft testBindLeft [100, 1000, 5000]
71-
bench 1000 "map" testMap testMap [100, 1000, 5000]
72-
bench 1000 "apply" testApply testApply [100, 1000, 5000]
69+
bench 10 ">>=R" testBindRight testBindRight [100, 1000, 5000]
70+
bench 10 ">>=L" testBindLeft testBindLeft [100, 1000, 5000]
71+
bench 10 "map" testMap testMap [100, 1000, 5000]
72+
bench 10 "apply" testApply testApply [100, 1000, 5000]
7373
log "| - | - | - | - | - | - | - |"
74-
bench 5 ">>=R" testBindRight testBindRight [10000, 50000, 100000, 1000000]
75-
bench 5 ">>=L" testBindLeft testBindLeft [10000, 50000, 100000, 1000000]
76-
bench 5 "map" testMap testMap [10000, 50000, 100000, 1000000, 350000, 700000]
77-
bench 5 "apply" testApply testApply [10000, 50000, 100000, 1000000]
74+
bench 2 ">>=R" testBindRight testBindRight [10000, 50000, 100000, 1000000]
75+
bench 2 ">>=L" testBindLeft testBindLeft [10000, 50000, 100000, 1000000]
76+
bench 2 "map" testMap testMap [10000, 50000, 100000, 1000000, 350000, 700000]
77+
bench 2 "apply" testApply testApply [10000, 50000, 100000, 1000000]
7878

7979
bench
8080
:: Int

0 commit comments

Comments
 (0)