Library
Module
Module type
Parameter
Class
Class type
A (possibly empty) tree of benchmarks. Individual benchmarks (i.e., calls to throughputN
, latencyN
, etc. wrapped with (>:)
) can appear at any node of the tree. The edges are annotated with strings, and paths (see path
) are used to select subtrees.
name @> bench
returns a (named) node of the benchmark tree. If evaluated, it simply returns samples (for instance using throughputN
). If the name contains dots, it is interpreted as a path. For examle "a.b" @> bench
is equivalent to "a" @>>
"b" @> bench
.
Example (the lazy thunk is used to hide initialization code):
Benchmark.Tree.(
"sort" >: lazy
(let a = Array.init 1_000_000 (fun i -> i) in
Benchmark.throughput1 18 (Array.sort compare) a
)
) ;;
name @>> tree
makes tree
accessible through the given name
, i.e., prefix all paths in the tree by name
. It has no effect if name = ""
. If the name contains dots, it is interpreted as a path. For instance "n1.n2" @>> tree
is equivalent to "n1" @>> "n2" @>> tree
and adds the path [n1;n2]
as a prefix to the tree.
Merge the given trees (recursively). Merging proceeds by taking the union of all path heads in the list, and, for each such string x
, merging recursively all subtrees reachable under x
.
For instance merging the trees a.{b, c}
, a.b.d
and {a.d, foo}
will give the tree {a.(b, b.d, c, d}, d}
.
name @>>> l
is equivalent to name @>> concat l
. It names a list of trees, and is useful to build lists of benchmarks related to some common topic. If the name contains dots, it is interpreted as a path.
with_int f l
parametrize trees with several integer values (e.g. a size). The tree f i
is prefixed with the label i
.
val print : Format.formatter -> t -> unit
Print the tree of benchmarks (its structure) on the given formatter. Useful in combination with the path
argument of run
val print_path : Format.formatter -> path -> unit
val parse_path : string -> path
Split a string into a path at the "." separators. Example: parse_path "a.b.c"
returns ["a"; "b"; "c"]
.
filter p t
return the tree obtained by keeping all the paths in t
that match the path p
. Empty components ""
in the middle of the path are ignored. Empty components ""
at the end of the path return only the benchmarks at that level (i.e., one discards the benchmarks pointed by paths of which p
is a strict prefix). The special path component "*"
selects all subtrees at that level (it acts as a wildcard).
arg ()
returns (arg, specs)
where arg
is a state coming from parsing the command line using specs
. The options are:
Arg.parse (specs @ more_specs) ...
to make the above arguments available to the program user.val run :
?arg:arg_state ->
?paths:path list ->
?out:Format.formatter ->
t ->
unit
run t
runs all benchmarks of t
and print the results to fmt
.
val global : unit -> t
Global tree, built from calls to register
. It is useful to centralize all benchmarks at one place to, then, run them all
val register : t -> unit
Register a benchmark to the global registry of benchmarks.
val run_global : ?argv:string array -> ?out:Format.formatter -> unit -> unit
Same as run
on the global tree of benchmarks and parsing the command line arguments from argv
(which is Sys.argv
by default).