-
Notifications
You must be signed in to change notification settings - Fork 39
Description
In IPC benchmarks the benchmarking methodology may be introducing a big standard deviation because the samples are stored in memory instead of accumulated on the fly in one variable. This is done properly in early proc benchmarks.
Such benchmarking methodology has some benefits like being able to observe/plot the timeseries and clearly spot any outliers/patterns. However, computing the mean and standard deviation from such singular samples may be unnecessary adding the time to store a variable to memory on top of the actual measurement.
Since the official website uses the results of this benchmark, we should ensure the methodology is following the best practices. From what I understand the early proc results follow the proper methodology but on the website we use the results from the methodology which is subject to platform noise (and indeed sometimes the standard deviation is quite high).
Image courtesy of Gernot Heiser:
