hsbencher 1.3.4 → 1.3.6
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- HSBencher/App.hs +1/−1
- hsbencher.cabal +2/−1
HSBencher/App.hs view
@@ -303,7 +303,7 @@ let ts@[t1,t2,t3] = map (\x -> showFFloat Nothing x "") [gettime minR, gettime medianR, gettime maxR] prods@[p1,p2,p3] = map mshow [getprod minR, getprod medianR, getprod maxR]- mshow Nothing = ""+ mshow Nothing = "0" mshow (Just x) = showFFloat (Just 2) x "" -- These are really (time,prod) tuples, but a flat list of
hsbencher.cabal view
@@ -1,6 +1,6 @@ name: hsbencher-version: 1.3.4+version: 1.3.6 -- CHANGELOG: -- 1.0 : Initial release, new flexible benchmark format. -- 1.1 : Change interface to RunInPlace@@ -11,6 +11,7 @@ -- 1.3.1 : bugfix -- 1.3.2 : change policy for timeouts and errors -- 1.3.4 : Add ability to prune/select benchmarks with commmand line args+-- 1.3.6 : bugfix productivity for timeouts synopsis: Flexible benchmark runner for Haskell and non-Haskell benchmarks.