benchpress-0.2: Micro-benchmarking with detailed statistics.

Portabilityportable
Stabilityexperimental
Maintainerjohan.tibell@gmail.com

Test.BenchPress

Contents

Description

Benchmarks actions and produces statistics such as min, mean, median, standard deviation, and max execution time. Also computes execution time percentiles. Comes with functions to pretty-print the results.

Here's an example showing a benchmark of copying a file:

 import qualified Data.ByteString as B
 import System.IO
 import Test.BenchPress

 inpath, outpath :: String
 inpath = "/tmp/infile"
 outpath = "/tmp/outfile"

 blockSize :: Int
 blockSize = 4 * 1024

 copyUsingByteString :: Handle -> Handle -> IO ()
 copyUsingByteString inf outf = go
     where
       go = do
         bs <- B.hGet inf blockSize
         let numRead = B.length bs
         if numRead > 0
            then B.hPut outf bs >> go
            else return ()

 main :: IO ()
 main = bench 100 $ do
          inf <- openBinaryFile inpath ReadMode
          outf <- openBinaryFile outpath WriteMode
          copyUsingByteString inf outf
          hClose outf
          hClose inf

Synopsis

Running a benchmark

benchmark :: Int -> IO a -> (a -> IO b) -> (a -> IO c) -> IO StatsSource

benchmark iters setup teardown action runs action iters times measuring the execution time of each run. setup and teardown are run before and after each run respectively. teardown will be run even if action raises an exception.

bench :: Int -> IO a -> IO ()Source

Convenience function that runs a benchmark using benchmark and prints timing statistics. Writes output to standard output.

benchMany :: Int -> [(String, IO a)] -> IO ()Source

Convenience function that runs several benchmarks using benchmark and prints a timing statistics summary. Each benchmark has an associated label that is used to identify the benchmark in the printed results. Writes output to standard output.

Benchmark stats

data Stats Source

Timing statistics for the benchmark. All measured times are given in milliseconds.

Constructors

Stats 

Fields

min :: Double

Shortest execution time.

mean :: Double

Average execution time.

stddev :: Double

Execution time standard deviation.

median :: Double

Median execution time.

max :: Double

Longest execution time.

percentiles :: [(Int, Double)]

Execution time divided into percentiles. The first component of the pair is the percentile given as an integer between 0 and 100, inclusive. The second component is the execution time of the slowest iteration within the percentile.

Instances