public
Description: Micro-benchmarking of Haskell code with detailed execution time statistics.
Homepage:
Clone URL: git://github.com/tibbe/benchpress.git
benchpress / benchpress.cabal
100644 28 lines (23 sloc) 0.874 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: benchpress
version: 0.2.2.3
synopsis: Micro-benchmarking with detailed statistics.
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.
license: BSD3
license-file: LICENSE
author: Johan Tibell
maintainer: johan.tibell@gmail.com
build-type: Simple
cabal-version: >= 1.2
category: Testing
homepage: http://github.com/tibbe/benchpress
 
library
  exposed-modules: Test.BenchPress
 
  other-modules: Math.Statistics
 
  build-depends: base >= 2.0 && < 4.1,
                  mtl >= 1 && < 1.2,
                  time >= 1 && < 1.2
 
  ghc-options: -funbox-strict-fields -Wall