BenchLib
- Package
- purescript-benchlib
- Repository
- m-bock/purescript-benchlib
A benchmark, slightly simplified, can be seen as this three step transformation:
prepare :: size -> input
benchmark :: input -> return
finalize :: return -> output
Common type variables:
inp
: type of input for benchmark, can be diifferent for each benchmark in a group. It is created by theprepare
function.ret
: type of result of benchmark, can be diifferent for each benchmark in a group.out
: type of output of the benchmark, must be equal for all benchmarks in a group. Created by thefinalize
function. Having this extra type variable e.g. allows to check if benchmark results of a group do return values considered equal.m
: the monad in which the benchmark is run. It must be an instance ofMonadBench
. Instances are provided forEffect
andAff
.
#BenchResult Source
type BenchResult = { benchName :: String, duration :: Milliseconds, iterations :: Int, size :: Size }
The result of a benchmark.
#GroupResults Source
type GroupResults = { benchs :: Array BenchResult, groupName :: String }
The result of a benchmark group.
#SuiteResults Source
type SuiteResults = { groups :: Array GroupResults, suiteName :: String }
The result of a benchmark suite.
#CheckResults Source
type CheckResults = { results :: Array { benchName :: String, output :: String }, success :: Boolean }
#Reporter Source
type Reporter = { onBenchFinish :: BenchResult -> Effect Unit, onBenchStart :: { benchName :: String, size :: Size } -> Effect Unit, onCheckResults :: CheckResults -> Effect Unit, onGroupFinish :: GroupResults -> Effect Unit, onGroupStart :: String -> Effect Unit, onSizeFinish :: Size -> Effect Unit, onSizeStart :: Size -> Effect Unit, onSuiteFinish :: SuiteResults -> Effect Unit, onSuiteStart :: String -> Effect Unit }
A reporter is a set of functions that are called at different stages of the benchmark. It allows to customize the output of the benchmark suite or perform other actions like writing to a file.
#bench Source
bench :: forall inp ret out. Eq out => String -> (BenchOptsPure Unit out out -> BenchOptsPure inp ret out) -> (inp -> ret) -> Bench out
Create a benchmark of a given name. The benchmark will be run with the provided options. The benchmark is a function that takes an input and returns an output. The input is generated by the prepare function, and the output is processed by the finalize function.
#benchM Source
benchM :: forall m inp ret out. MonadBench m => Eq out => String -> (BenchOptsM m Unit out out -> BenchOptsM m inp ret out) -> (inp -> m ret) -> Bench out
Like `bench``, but with a monadic function.
#benchSuite_ Source
benchSuite_ :: String -> Array Group -> Suite
Like benchSuite
, but with default options.
#MonadBench Source
class MonadBench :: (Type -> Type) -> Constraint
class (Monad m) <= MonadBench m where
A class for monadic benchmarks. It allows to run benchmarks in different monads as long as they are capable of getting turned into an Aff monad.
Members
Instances
#defaultReporter Source
defaultReporter :: Reporter
Default reporter useful for selective overriding. It will do nothing.
#reportConsole Source
reportConsole :: Reporter
Console reporter. It will print the results to the console in human readable format.