packages feed

bench 1.0.0 → 1.0.1

raw patch · 2 files changed

+12/−3 lines, 2 filesdep ~criterion

Dependency ranges changed: criterion

Files

README.md view
@@ -1,4 +1,4 @@-# Bench v1.0.0+# Bench v1.0.1  Think of this as a more powerful alternative to the `time` command.  Use this command-line tool to benchmark a command using Haskell's `criterion` library.@@ -42,6 +42,14 @@ mean                 1.003 s    (1.003 s .. 1.003 s) std dev              92.92 μs   (0.0 s .. 101.8 μs) variance introduced by outliers: 19% (moderately inflated)++$ bench true+benchmarking true+time                 410.3 μs   (382.3 μs .. 443.3 μs)+                     0.974 R²   (0.961 R² .. 0.987 R²)+mean                 420.7 μs   (406.8 μs .. 435.7 μs)+std dev              47.69 μs   (40.09 μs .. 57.91 μs)+variance introduced by outliers: 81% (severely inflated) ```  All output from the command being benchmarked is discarded
bench.cabal view
@@ -1,5 +1,5 @@ name:                bench-version:             1.0.0+version:             1.0.1 synopsis:            Command-line benchmark tool description:         Think of this as a more powerful alternative to the @time@                      command.  Use this command-line tool to benchmark a command@@ -13,6 +13,7 @@ copyright:           2016 Gabriel Gonzalez category:            System build-type:          Simple+tested-with:         GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2 cabal-version:       >=1.10 extra-source-files:     README.md@@ -25,7 +26,7 @@   main-is:             Main.hs   default-language:    Haskell2010   build-depends:       base      >= 4.5     && < 5-                     , criterion >= 1.0.0.1 && < 1.2+                     , criterion >= 1.1.1.0 && < 1.2                      , text                    < 1.3                      , silently  >= 1.1.1   && < 1.3                      , turtle    >= 1.2.5   && < 1.3