Skip to content

Commit 80ebd0a

Browse files
committed
Fix benchamarking bug
1 parent 7f8a95b commit 80ebd0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

benchmark/Main.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ stats n = do
2121
print $ D.filter "0" (>= (19.9 :: Double)) df D.|> D.take 10
2222

2323
main = defaultMain [
24-
bgroup "stats" [ bench "300_000" $ toBenchmarkable (stats 100_000)
25-
, bench "3_000_000" $ nfIO (stats 1_000_000)
24+
bgroup "stats" [ bench "300_000" $ nfIO (stats 100_000)
25+
, bench "3_000_000" $ nfIO (stats 1_000_000)
2626
, bench "300_000_000" $ nfIO (stats 300_000_000)
2727
]
2828
]

0 commit comments

Comments
 (0)