criterion icon indicating copy to clipboard operation
criterion copied to clipboard

A powerful but simple library for measuring the performance of Haskell code.

Results 34 criterion issues
Sort by recently updated
recently updated
newest added

I expect identical output for the three benchmarks, but the first one (consistently) needs double time. (Possibly related: #60) ``` import Criterion.Main main = defaultMain [ bench "1" $ nf...

It feels like It would be useful to have a more granular (or absolute) measurement of the "Peak Allocated". It seems like we can either change `peakMbAllocated` to `peakAllocated` or...

I was running a benchmark with `+RTS -Sstderr` (trying to find a good `-A..` value) I was surprised to see heavy garbage collection going on - since I was expecting...

(I am not sure about this but it is a source of confusion in #273 ) We have ``` nf :: NFData b => (a -> b) -> a ->...