Here is an example run of multitime:
===> multitime results
1: ./demosaic images/airplane_RGGB.png
Mean Std.Dev. Min Median Max
real 1.563+/-0.3564 0.159 1.444 1.512 2.177
user 1.408+/-0.0019 0.012 1.385 1.407 1.435
sys 0.024+/-0.0012 0.009 0.012 0.024 0.052
In this example, the wall clock time is not useful, but the amount of time spent on the CPU is of interest. Unfortunately, summing the user and sys rows is no longer valid, because confidence intervals are not additive.
Therefore, I propose a new list of rows to display on the output:
- wall -- the wall clock time, currently named real (renamed for clarity)
- cpu -- the real and sys rows added together with a correct confidence interval and standard deviation, etc.
- user -- as it is now
- sys -- as it is now
Here is an example run of multitime:
In this example, the wall clock time is not useful, but the amount of time spent on the CPU is of interest. Unfortunately, summing the user and sys rows is no longer valid, because confidence intervals are not additive.
Therefore, I propose a new list of rows to display on the output: