提交 a1bca6cc 编写于 作者: J Jim Cromie 提交者: Arnaldo Carvalho de Melo

perf stat: Suppress printing std-dev when its 0

For pretty output only (preserve column for cvs output), dont print
std-deviation when its 0.00.  Do this based upon value, instead of
checking for --no-aggr, since the stats could conceivably be computed
over the runs on each CPU, and theres no reason to preclude that.

Link: http://lkml.kernel.org/r/1315437244-3788-4-git-send-email-jim.cromie@gmail.comSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: NJim Cromie <jim.cromie@gmail.com>
Signed-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 19f47402
......@@ -528,7 +528,7 @@ static void print_noise_pct(double total, double avg)
if (csv_output)
fprintf(output, "%s%.2f%%", csv_sep, pct);
else
else if (pct)
fprintf(output, " ( +-%6.2f%% )", pct);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册