Benchmarks_proto.Benchmark
type group = Benchmark_base.group =
| Standalone
| Group of string
| Generic
type purpose = Benchmark_base.purpose =
| Other_purpose of string
| Generate_code of string
The module type of benchmarks, a simplification of Benchmark.S used by registration_simple below.
Benchmark.S
registration_simple
module type S = sig ... end
type t = (module S)