perf stat: Change noise calculation to use stddev
authorPeter Zijlstra <a.p.zijlstra@chello.nl>
Fri, 4 Sep 2009 13:36:12 +0000 (15:36 +0200)
committerIngo Molnar <mingo@elte.hu>
Fri, 4 Sep 2009 14:33:07 +0000 (16:33 +0200)
commit506d4bc8d5dab20d84624aa07cdc6dcd77915d52
tree48036f6ace4d499a772f172a2dfcea69ffb79fc1
parent1653192f510bd8114b7b133d7289e6e5c3e95046
perf stat: Change noise calculation to use stddev

The current noise computation does:

 \Sum abs(n_i - avg(n)) * N^-1.5

Which is (afaik) not a regular noise function, and needs the
complete sample set available to post-process.

Change this to use a regular stddev computation which can be
done by keeping a two sums:

 stddev = sqrt( 1/N (\Sum n_i^2) - avg(n)^2 )

For which we only need to keep \Sum n_i and \Sum n_i^2.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: <stable@kernel.org>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
tools/perf/builtin-stat.c