time-to-botec/squiggle/node_modules/@quri/squiggle-lang/benchmark/Benchmark_Helpers.res

12 lines
277 B
Plaintext
Raw Normal View History

module type BenchmarkTopic = {
let runAll: unit => unit
}
let measure = (name: string, f: unit => unit) => {
let start = Js.Date.make()->Js.Date.valueOf
f()
let end = Js.Date.make()->Js.Date.valueOf
let duration = (end -. start) /. 1000.
Js.log2(duration, name)
}