Module Unmark_papi

module Unmark_papi: sig .. end

Unmark PAPI integration.

359b80f — homepage


val of_events : Papi.event list -> Unmark.Measurement.Probe.probe

of_events evts is a probe that uses PAPI to count events evts.

Usage

Measure L1, L2 and L3 cache miss behaviour:

let probe = of_events Papi.[L1_TCM; L2_TCM; L3_TCM]
let _ = Unmark_cli.main "stuff" ~probe [...]