Popularity
3.9
Declining
Activity
0.0
Stable
3
4
1

Monthly Downloads: 10
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Testing    

chronograph alternatives and similar packages

Based on the "Testing" category.
Alternatively, view chronograph alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of chronograph or a related project?

Add another 'Testing' Package

README

Build Status

Chronograph

An instrumentation wrapper for Haskell data

Chronograph allows you to measure and record data and IO evaluation time.

Chronograph is meant to be used as a lightweight, unobtrusive mechanism to collect timings of evaluations and IO actions during program execution.

Installation

Install the latest version from Hackage:

$ cabal install chronograph

Alternatively, git clone this repo and:

$ cabal install

Use

To measure the evaluation time of an expression, pass it as an argument to the 'chrono' function:

> import Data.Chronograph
>
> let timed_someExpr = chrono (someExpr)

'chrono' has the type 'a -> Chronograph a'

Then just use the 'val' of a 'Chronograph' everywhere you would use the original expression.

> doSomethingWith (val timed_someExpr)

You can check the evaluation time with 'measure'

> let exprTime = measure timed_someExpr

For IO actions, use 'chronoIO'.

Here's a full example, demonstrating both pure and IO functions:

> import Control.Applicative
> import System.Environment
> import Data.Chronograph
>
> import Text.Printf
>
> procFile :: FilePath -> IO ()
> procFile fp = do
>     doc <- readFile fp
>     let wc = length $ lines doc
>     void $ chronoPrint "time to calc length" (chrono wc)
>
> procIO :: FilePath -> IO ()
> procIO fp = do
>     wc <- chronoIO $ fileLinesIO fp
>     void $ chronoPrint "" wc
>
> fileLinesIO :: FilePath -> IO Int
> fileLinesIO fp = length . lines <$> readFile fp
>
> main :: IO ()
> main = do
>     args <- getArgs
>     putStrLn "pure Chronograph"
>     mapM_ procFile args
>     putStrLn "IO Chronograph"
>     mapM_ procIO args

Evaluation Order

Values in a Chronograph are lazy, and won't be evaluated until either the 'val' or 'measure' is evaluated.

'chronoBy' and 'chronoIOBy' take an evaluation parameter to control how much of the data will be evaluated and timed. The shortcut functions 'chrono' and 'chronoNF' are provided for the common cases of weak head normal form (seq) and normal form (deepseq).

Join in

File bugs in the GitHub issue tracker.

Master git repository:

  • git clone https://github.com/JohnLato/chronograph

License

BSD3. See LICENSE for terms of copyright and redistribution.


*Note that all licence references and agreements mentioned in the chronograph README section above are relevant to that project's source code only.