package core_bench

  1. Overview
  2. Docs

A module internal to Core_bench. Please look at Bench.

type t = {
  1. verbosity : Verbosity.t;
  2. no_compactions : bool;
  3. quota : Quota.t;
  4. sampling_type : [ `Geometric of float | `Linear of int ];
  5. stabilize_gc_between_runs : bool;
  6. fork_each_benchmark : bool;
  7. thin_overhead : int option;
}
val thin_overhead : t -> int option
val fork_each_benchmark : t -> bool
val stabilize_gc_between_runs : t -> bool
val sampling_type : t -> [ `Geometric of float | `Linear of int ]
val quota : t -> Quota.t
val no_compactions : t -> bool
val verbosity : t -> Verbosity.t
module Fields : sig ... end
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val create : ?verbosity:Verbosity.t -> ?no_compactions:bool -> ?quota:Quota.t -> ?sampling_type:[ `Geometric of float | `Linear of int ] -> ?stabilize_gc_between_runs:bool -> ?fork_each_benchmark:bool -> ?thin_overhead:int -> unit -> t