mirror of
https://github.com/vlang/v.git
synced 2025-08-03 09:47:15 -04:00
275 lines
8.6 KiB
V
275 lines
8.6 KiB
V
module benchmark
|
|
|
|
import time
|
|
import term
|
|
import arrays
|
|
|
|
pub const b_ok = term.ok_message('OK ')
|
|
pub const b_fail = term.fail_message('FAIL')
|
|
pub const b_skip = term.warn_message('SKIP')
|
|
pub const b_spent = term.ok_message('SPENT')
|
|
|
|
pub struct Benchmark {
|
|
pub mut:
|
|
bench_timer time.StopWatch
|
|
verbose bool
|
|
no_cstep bool
|
|
step_timer time.StopWatch
|
|
ntotal int
|
|
nok int
|
|
nfail int
|
|
nskip int
|
|
nexpected_steps int
|
|
njobs int
|
|
cstep int
|
|
bok string
|
|
bfail string
|
|
measured_steps []string
|
|
step_data map[string][]f64
|
|
}
|
|
|
|
// new_benchmark returns a `Benchmark` instance on the stack.
|
|
pub fn new_benchmark() Benchmark {
|
|
return Benchmark{
|
|
bench_timer: time.new_stopwatch()
|
|
verbose: true
|
|
}
|
|
}
|
|
|
|
// new_benchmark_no_cstep returns a new `Benchmark` instance with step counting disabled.
|
|
pub fn new_benchmark_no_cstep() Benchmark {
|
|
return Benchmark{
|
|
bench_timer: time.new_stopwatch()
|
|
verbose: true
|
|
no_cstep: true
|
|
}
|
|
}
|
|
|
|
// new_benchmark_pointer returns a new `Benchmark` instance allocated on the heap.
|
|
// This is useful for long-lived use of `Benchmark` instances.
|
|
pub fn new_benchmark_pointer() &Benchmark {
|
|
return &Benchmark{
|
|
bench_timer: time.new_stopwatch()
|
|
verbose: true
|
|
}
|
|
}
|
|
|
|
// set_total_expected_steps sets the total amount of steps the benchmark is expected to take.
|
|
pub fn (mut b Benchmark) set_total_expected_steps(n int) {
|
|
b.nexpected_steps = n
|
|
}
|
|
|
|
// stop stops the internal benchmark timer.
|
|
pub fn (mut b Benchmark) stop() {
|
|
b.bench_timer.stop()
|
|
}
|
|
|
|
// step increases the step count by 1 and restarts the internal timer.
|
|
pub fn (mut b Benchmark) step() {
|
|
b.step_timer.restart()
|
|
if !b.no_cstep {
|
|
b.cstep++
|
|
}
|
|
}
|
|
|
|
// step_restart will restart the internal step timer.
|
|
// Note that the step count will *stay the same*.
|
|
// This method is useful, when you want to do some optional preparation
|
|
// after you have called .step(), so that the time for that optional
|
|
// preparation will *not* be added to the duration of the step.
|
|
pub fn (mut b Benchmark) step_restart() {
|
|
b.step_timer.restart()
|
|
}
|
|
|
|
// fail increases the fail count by 1 and stops the internal timer.
|
|
pub fn (mut b Benchmark) fail() {
|
|
b.step_timer.stop()
|
|
b.ntotal++
|
|
b.nfail++
|
|
}
|
|
|
|
// ok increases the ok count by 1 and stops the internal timer.
|
|
pub fn (mut b Benchmark) ok() {
|
|
b.step_timer.stop()
|
|
b.ntotal++
|
|
b.nok++
|
|
}
|
|
|
|
// skip increases the skip count by 1 and stops the internal timer.
|
|
pub fn (mut b Benchmark) skip() {
|
|
b.step_timer.stop()
|
|
b.ntotal++
|
|
b.nskip++
|
|
}
|
|
|
|
// fail_many increases the fail count by `n` and stops the internal timer.
|
|
pub fn (mut b Benchmark) fail_many(n int) {
|
|
b.step_timer.stop()
|
|
b.ntotal += n
|
|
b.nfail += n
|
|
}
|
|
|
|
// ok_many increases the ok count by `n` and stops the internal timer.
|
|
pub fn (mut b Benchmark) ok_many(n int) {
|
|
b.step_timer.stop()
|
|
b.ntotal += n
|
|
b.nok += n
|
|
}
|
|
|
|
// neither_fail_nor_ok stops the internal timer.
|
|
pub fn (mut b Benchmark) neither_fail_nor_ok() {
|
|
b.step_timer.stop()
|
|
}
|
|
|
|
// start returns a new, running, instance of `Benchmark`.
|
|
// This is a shorthand for calling `new_benchmark().step()`.
|
|
pub fn start() Benchmark {
|
|
mut b := new_benchmark()
|
|
b.step()
|
|
return b
|
|
}
|
|
|
|
// measure prints the current time spent doing `label`, since the benchmark was started, or since its last call.
|
|
pub fn (mut b Benchmark) measure(label string) i64 {
|
|
b.ok()
|
|
res := b.step_timer.elapsed().microseconds()
|
|
println(b.step_message_with_label(b_spent, 'in ${label}'))
|
|
b.step()
|
|
return res
|
|
}
|
|
|
|
// record_measure stores the current time doing `label`, since the benchmark was started, or since the last call to `b.record_measure`.
|
|
// It is similar to `b.measure`, but unlike it, will not print the measurement
|
|
// immediately, just record it for later. You can call `b.all_recorded_measures`
|
|
// to retrieve all measures stored by `b.record_measure` calls.
|
|
pub fn (mut b Benchmark) record_measure(label string) i64 {
|
|
b.ok()
|
|
res := b.step_timer.elapsed().microseconds()
|
|
b.measured_steps << b.step_message_with_label(b_spent, 'in ${label}')
|
|
b.step_data[label] << res
|
|
b.step()
|
|
return res
|
|
}
|
|
|
|
// MessageOptions allows passing an optional preparation time too to each label method.
|
|
// If it is set, the preparation time (compile time) will be shown before the measured runtime.
|
|
@[params]
|
|
pub struct MessageOptions {
|
|
pub:
|
|
preparation time.Duration // the duration of the preparation time for the step
|
|
}
|
|
|
|
// step_message_with_label_and_duration returns a string describing the current step.
|
|
pub fn (b &Benchmark) step_message_with_label_and_duration(label string, msg string, sduration time.Duration,
|
|
opts MessageOptions) string {
|
|
timed_line := b.tdiff_in_ms(msg, sduration.microseconds())
|
|
if b.nexpected_steps > 1 {
|
|
mut sprogress := ''
|
|
if b.nexpected_steps < 10 {
|
|
sprogress = if b.no_cstep {
|
|
'TMP1/${b.nexpected_steps:1d}'
|
|
} else {
|
|
'${b.cstep:1d}/${b.nexpected_steps:1d}'
|
|
}
|
|
} else if b.nexpected_steps >= 10 && b.nexpected_steps < 100 {
|
|
sprogress = if b.no_cstep {
|
|
'TMP2/${b.nexpected_steps:2d}'
|
|
} else {
|
|
'${b.cstep:2d}/${b.nexpected_steps:2d}'
|
|
}
|
|
} else if b.nexpected_steps >= 100 && b.nexpected_steps < 1000 {
|
|
sprogress = if b.no_cstep {
|
|
'TMP3/${b.nexpected_steps:3d}'
|
|
} else {
|
|
'${b.cstep:3d}/${b.nexpected_steps:3d}'
|
|
}
|
|
} else {
|
|
sprogress = if b.no_cstep {
|
|
'TMP4/${b.nexpected_steps:4d}'
|
|
} else {
|
|
'${b.cstep:4d}/${b.nexpected_steps:4d}'
|
|
}
|
|
}
|
|
if opts.preparation > 0 {
|
|
return '${label:-5s} [${sprogress}] C: ${f64(opts.preparation.microseconds()) / 1_000.0:7.1F} ms, R: ${timed_line}'
|
|
}
|
|
return '${label:-5s} [${sprogress}] ${timed_line}'
|
|
}
|
|
return '${label:-5s}${timed_line}'
|
|
}
|
|
|
|
// step_message_with_label returns a string describing the current step using current time as duration.
|
|
pub fn (b &Benchmark) step_message_with_label(label string, msg string, opts MessageOptions) string {
|
|
return b.step_message_with_label_and_duration(label, msg, b.step_timer.elapsed(),
|
|
opts)
|
|
}
|
|
|
|
// step_message returns a string describing the current step.
|
|
pub fn (b &Benchmark) step_message(msg string, opts MessageOptions) string {
|
|
return b.step_message_with_label('', msg, opts)
|
|
}
|
|
|
|
// step_message_ok returns a string describing the current step with an standard "OK" label.
|
|
pub fn (b &Benchmark) step_message_ok(msg string, opts MessageOptions) string {
|
|
return b.step_message_with_label(b_ok, msg, opts)
|
|
}
|
|
|
|
// step_message_fail returns a string describing the current step with an standard "FAIL" label.
|
|
pub fn (b &Benchmark) step_message_fail(msg string, opts MessageOptions) string {
|
|
return b.step_message_with_label(b_fail, msg, opts)
|
|
}
|
|
|
|
// step_message_skip returns a string describing the current step with an standard "SKIP" label.
|
|
pub fn (b &Benchmark) step_message_skip(msg string, opts MessageOptions) string {
|
|
return b.step_message_with_label(b_skip, msg, opts)
|
|
}
|
|
|
|
// total_message returns a string with total summary of the benchmark run.
|
|
pub fn (b &Benchmark) total_message(msg string) string {
|
|
the_label := term.colorize(term.gray, msg)
|
|
mut tmsg := term.colorize(term.bold, 'Summary for ${the_label}:') + ' '
|
|
if b.nfail > 0 {
|
|
tmsg += term.colorize(term.bold, term.colorize(term.red, '${b.nfail} failed')) + ', '
|
|
}
|
|
if b.nok > 0 {
|
|
tmsg += term.colorize(term.bold, term.colorize(term.green, '${b.nok} passed')) + ', '
|
|
}
|
|
if b.nskip > 0 {
|
|
tmsg += term.colorize(term.bold, term.colorize(term.yellow, '${b.nskip} skipped')) + ', '
|
|
}
|
|
mut njobs_label := ''
|
|
if b.njobs > 0 {
|
|
if b.njobs == 1 {
|
|
njobs_label = ', on ${term.colorize(term.bold, 1.str())} job'
|
|
} else {
|
|
njobs_label = ', on ${term.colorize(term.bold, b.njobs.str())} parallel jobs'
|
|
}
|
|
}
|
|
tmsg += '${b.ntotal} total. ${term.colorize(term.bold, 'Elapsed time:')} ${b.bench_timer.elapsed().microseconds() / 1000} ms${njobs_label}.'
|
|
if msg in b.step_data && b.step_data[msg].len > 1 {
|
|
min := arrays.min(b.step_data[msg]) or { 0 } / 1000.0
|
|
max := arrays.max(b.step_data[msg]) or { 0 } / 1000.0
|
|
avg := (arrays.sum(b.step_data[msg]) or { 0 } / b.step_data[msg].len) / 1000.0
|
|
tmsg += ' Min: ${min:.3f} ms. Max: ${max:.3f} ms. Avg: ${avg:.3f} ms'
|
|
}
|
|
return tmsg
|
|
}
|
|
|
|
// all_recorded_measures returns a string, that contains all the recorded measure messages, done by individual calls to `b.record_measure`.
|
|
pub fn (b &Benchmark) all_recorded_measures() string {
|
|
return b.measured_steps.join_lines()
|
|
}
|
|
|
|
// total_duration returns the duration in ms.
|
|
pub fn (b &Benchmark) total_duration() i64 {
|
|
return b.bench_timer.elapsed().milliseconds()
|
|
}
|
|
|
|
// tdiff_in_ms prefixes `s` with a time difference calculation.
|
|
fn (b &Benchmark) tdiff_in_ms(s string, tdiff i64) string {
|
|
if b.verbose {
|
|
return '${f64(tdiff) / 1000.0:9.3f} ms ${s}'
|
|
}
|
|
return s
|
|
}
|