From: Ingo Molnar <mingo@kernel.org>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
LKML <linux-kernel@vger.kernel.org>, Jiri Olsa <jolsa@redhat.com>,
David Ahern <dsahern@gmail.com>, Ingo Molnar <mingo@elte.hu>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Arnaldo Carvalho de Melo <acme@redhat.com>,
Stephane Eranian <eranian@google.com>,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH 0/4] perf tools: New comm infrastructure
Date: Tue, 17 Sep 2013 09:16:41 +0200 [thread overview]
Message-ID: <20130917071641.GD20661@gmail.com> (raw)
In-Reply-To: <87li2wq9gx.fsf@sejong.aot.lge.com>
* Namhyung Kim <namhyung@kernel.org> wrote:
> Hi Ingo,
>
> On Sat, 14 Sep 2013 08:11:49 +0200, Ingo Molnar wrote:
> > * Frederic Weisbecker <fweisbec@gmail.com> wrote:
> >> My patches and Namhyung's should improve the comm situation a lot but we
> >> can't do much miracle. The only way would be perhaps to be able to limit
> >> the deepness of the callchain branches.
> >>
> >> Now may be we can find other big contention point in perf. It's possible
> >> we also have some endless loop somewhere.
> >
> > Well, it was the 100,000+ step linear list walk that was causing 90% of
> > the slowness here. Namhyung's patch should dramatically improve that. I
> > guess time for someone to post a combined tree so that it can be tested
> > all together?
>
> I pushed combined tree to 'perf/callchain-v2' branch in my tree
>
> git://git.kernel.org/pub/scm/linux/kernel/git/namhyung/linux-perf.git
>
>
> Please note that I also pushed other versions (v[1-3]). The v1 is my
> previous rbtree conversion patch, v2 adds Frederic's new comm
> infrastructure series on top and v3 adds my revised patch to refer
> current comm [1] on top of v2.
>
> I did my own test again among them. Test data is 400MB perf.data file
> created by parallel kernel build.
>
> $ ls -lh perf.data.big
> -rw-------. 1 namhyung namhyung 400M Sep 9 10:21 perf.data.big
>
> For more precise result, I changed cpufreq governor to 'performance'
Btw.,
>
> # echo performance > /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor
>
> and run perf report on the cpu.
>
> $ taskset -c 3 time -p perf --no-pager report --stdio -i perf.data.big > /dev/null
Btw., for such things you could use 'perf stat --null --sync --repeat 3',
which will not use the PMU or even perf events, it only uses precise
timers to measure execution time:
$ taskset -c 3 perf stat --null --sync --repeat 3 -p perf --no-pager report --stdio -i perf.data.big > /dev/null
> I ran it multiple times for each case and the results did not vary much.
(perf stat --repeat will print a nice stddev as well.)
> baseline v1 v2 v3
> ----------------------------------------------------------
> real 380.17 12.63 10.02 9.03
> user 378.86 11.95 9.66 8.69
> sys 0.70 0.65 0.33 0.34
(Alas perf stat --null does not print a system/user time split. Might be
nice to implement that.)
The numbers look pretty nice, a 40x speedup. Especially with the progress
bar displayed this should be within a human-tolerable runtime.
Still it would be nice to look at some stats: number of records, number of
call chain entries, average call chain depth, tree size, max tree depth,
etc. - so that we get a processing cost estimation of how much we spend on
a single call chain entry, on average.
If any of those values is suspiciously high then maybe we could cull the
callchain depth by default, people rarely look beyond a couple of entries:
but this gets tricky when people sort in the reverse direction though - in
that case the deepest entries are just as valuable as well to the end
result.
Thanks,
Ingo
next prev parent reply other threads:[~2013-09-17 7:16 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-12 20:29 [PATCH 0/4] perf tools: New comm infrastructure Frederic Weisbecker
2013-09-12 20:29 ` [PATCH 1/4] perf tools: Use an accessor to read thread comm Frederic Weisbecker
2013-09-12 20:29 ` [PATCH 2/4] perf tools: Add time argument on comm setting Frederic Weisbecker
2013-09-12 20:29 ` [PATCH 3/4] perf tools: Add new comm infrastructure Frederic Weisbecker
2013-09-12 20:29 ` [PATCH 4/4] perf tools: Compare hists comm by addresses Frederic Weisbecker
2013-09-13 8:07 ` Namhyung Kim
2013-09-13 13:59 ` Frederic Weisbecker
2013-09-17 1:46 ` Namhyung Kim
2013-09-12 20:36 ` [PATCH 0/4] perf tools: New comm infrastructure Ingo Molnar
2013-09-13 12:43 ` Frederic Weisbecker
2013-09-13 15:59 ` David Ahern
2013-09-14 6:11 ` Ingo Molnar
2013-09-17 5:54 ` Namhyung Kim
2013-09-17 7:16 ` Ingo Molnar [this message]
2013-09-18 14:20 ` Arnaldo Carvalho de Melo
2013-09-18 15:12 ` Arnaldo Carvalho de Melo
2013-09-18 15:58 ` Arnaldo Carvalho de Melo
2013-09-18 16:17 ` Namhyung Kim
2013-09-13 6:32 ` Namhyung Kim
2013-09-13 12:46 ` Frederic Weisbecker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130917071641.GD20661@gmail.com \
--to=mingo@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@redhat.com \
--cc=dsahern@gmail.com \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=namhyung@kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.