blob: c06c341e72b956a5e558cb22047497eddf0b6561 [file] [log] [blame]
Ingo Molnar1d8c8b22009-04-20 15:52:29 +02001perf-stat(1)
Ingo Molnar6e6b7542008-04-15 22:39:31 +02002============
Ingo Molnar1d8c8b22009-04-20 15:52:29 +02003
4NAME
5----
6perf-stat - Run a command and gather performance counter statistics
7
8SYNOPSIS
9--------
10[verse]
Shawn Bohrer8c207692010-11-30 19:57:19 -060011'perf stat' [-e <EVENT> | --event=EVENT] [-a] <command>
Alyssa Rossf2c24eb2021-08-09 15:32:26 +000012'perf stat' [-e <EVENT> | --event=EVENT] [-a] \-- <command> [<options>]
13'perf stat' [-e <EVENT> | --event=EVENT] [-a] record [-o file] \-- <command> [<options>]
Jiri Olsaba6039b62015-11-05 15:40:55 +010014'perf stat' report [-i file]
Ingo Molnar1d8c8b22009-04-20 15:52:29 +020015
16DESCRIPTION
17-----------
18This command runs a command and gathers performance counter statistics
19from it.
20
21
22OPTIONS
23-------
24<command>...::
25 Any command you can specify in a shell.
26
Jiri Olsa4979d0c2015-11-05 15:40:46 +010027record::
28 See STAT RECORD.
Ingo Molnar20c84e92009-06-04 16:33:00 +020029
Jiri Olsaba6039b62015-11-05 15:40:55 +010030report::
31 See STAT REPORT.
32
Ingo Molnar1d8c8b22009-04-20 15:52:29 +020033-e::
34--event=::
Cody P Schaferf9ab9c12015-01-07 17:13:53 -080035 Select the PMU event. Selection can be:
36
37 - a symbolic event name (use 'perf list' to list all events)
38
Sandipan Das4edb1172021-11-23 14:16:12 +053039 - a raw PMU event in the form of rN where N is a hexadecimal value
40 that represents the raw register encoding with the layout of the
41 event control registers as described by entries in
42 /sys/bus/event_sources/devices/cpu/format/*.
Cody P Schaferf9ab9c12015-01-07 17:13:53 -080043
Kim Phillipse48a73a2020-09-01 16:58:53 -050044 - a symbolic or raw PMU event followed by an optional colon
45 and a list of event modifiers, e.g., cpu-cycles:p. See the
46 linkperf:perf-list[1] man page for details on event modifiers.
47
Cody P Schaferf9ab9c12015-01-07 17:13:53 -080048 - a symbolically formed event like 'pmu/param1=0x3,param2/' where
49 param1 and param2 are defined as formats for the PMU in
Jack Henschel726647d2017-08-24 15:20:22 +020050 /sys/bus/event_source/devices/<pmu>/format/*
Cody P Schaferf9ab9c12015-01-07 17:13:53 -080051
Jin Yao4fc4d8d2019-04-12 21:59:49 +080052 'percore' is a event qualifier that sums up the event counts for both
53 hardware threads in a core. For example:
54 perf stat -A -a -e cpu/event,percore=1/,otherevent ...
55
Cody P Schaferf9ab9c12015-01-07 17:13:53 -080056 - a symbolically formed event like 'pmu/config=M,config1=N,config2=K/'
57 where M, N, K are numbers (in decimal, hex, octal format).
58 Acceptable values for each of 'config', 'config1' and 'config2'
59 parameters are defined by corresponding entries in
Jack Henschel726647d2017-08-24 15:20:22 +020060 /sys/bus/event_source/devices/<pmu>/format/*
Ingo Molnar1d8c8b22009-04-20 15:52:29 +020061
Agustin Vega-Friasb2b9d3a2018-03-06 09:04:42 -050062 Note that the last two syntaxes support prefix and glob matching in
Ingo Molnar1a7ea322018-12-03 11:22:00 +010063 the PMU name to simplify creation of events across multiple instances
Agustin Vega-Friasb2b9d3a2018-03-06 09:04:42 -050064 of the same type of PMU in large systems (e.g. memory controller PMUs).
65 Multiple PMU instances are typical for uncore PMUs, so the prefix
66 'uncore_' is also ignored when performing this match.
67
68
Ingo Molnar20c84e92009-06-04 16:33:00 +020069-i::
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020070--no-inherit::
71 child tasks do not inherit counters
Ingo Molnar20c84e92009-06-04 16:33:00 +020072-p::
73--pid=<pid>::
David Ahernb52956c2012-02-08 09:32:52 -070074 stat events on existing process id (comma separated list)
Shawn Bohrer8c207692010-11-30 19:57:19 -060075
76-t::
77--tid=<tid>::
David Ahernb52956c2012-02-08 09:32:52 -070078 stat events on existing thread id (comma separated list)
Shawn Bohrer8c207692010-11-30 19:57:19 -060079
Song Liufa853c42020-12-29 13:42:14 -080080-b::
81--bpf-prog::
82 stat events on existing bpf program id (comma separated list),
83 requiring root rights. bpftool-prog could be used to find program
84 id all bpf programs in the system. For example:
85
86 # bpftool prog | head -n 1
87 17247: tracepoint name sys_enter tag 192d548b9d754067 gpl
88
89 # perf stat -e cycles,instructions --bpf-prog 17247 --timeout 1000
90
91 Performance counter stats for 'BPF program(s) 17247':
92
93 85,967 cycles
94 28,982 instructions # 0.34 insn per cycle
95
96 1.102235068 seconds time elapsed
97
Song Liu7fac83a2021-03-16 14:18:35 -070098--bpf-counters::
99 Use BPF programs to aggregate readings from perf_events. This
100 allows multiple perf-stat sessions that are counting the same metric (cycles,
101 instructions, etc.) to share hardware counters.
Song Liu112cb562021-04-25 14:43:31 -0700102 To use BPF programs on common events by default, use
103 "perf config stat.bpf-counter-events=<list_of_events>".
Song Liu7fac83a2021-03-16 14:18:35 -0700104
105--bpf-attr-map::
106 With option "--bpf-counters", different perf-stat sessions share
107 information about shared BPF programs and maps via a pinned hashmap.
108 Use "--bpf-attr-map" to specify the path of this pinned hashmap.
109 The default path is /sys/fs/bpf/perf_attr_map.
110
Stephane Eranian70943492020-05-05 11:29:43 -0700111ifdef::HAVE_LIBPFM[]
112--pfm-events events::
113Select a PMU event using libpfm4 syntax (see http://perfmon2.sf.net)
114including support for event filters. For example '--pfm-events
115inst_retired:any_p:u:c=1:i'. More than one event can be passed to the
116option using the comma separator. Hardware events and generic hardware
117events cannot be mixed together. The latter must be used with the -e
118option. The -e option and this one can be mixed and matched. Events
119can be grouped using the {} notation.
120endif::HAVE_LIBPFM[]
Ingo Molnar20c84e92009-06-04 16:33:00 +0200121
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200122-a::
Shawn Bohrer8c207692010-11-30 19:57:19 -0600123--all-cpus::
Jiri Olsa0d79f8b2017-02-17 18:00:34 +0100124 system-wide collection from all CPUs (default if no target is specified)
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200125
Andi Kleen75998bb2019-03-14 15:50:01 -0700126--no-scale::
127 Don't scale/normalize counter values
Shawn Bohrer8c207692010-11-30 19:57:19 -0600128
Borislav Petkovf594bae2016-03-07 16:44:44 -0300129-d::
130--detailed::
131 print more detailed statistics, can be specified up to 3 times
132
133 -d: detailed events, L1 and LLC data cache
134 -d -d: more detailed events, dTLB and iTLB events
135 -d -d -d: very detailed events, adding prefetch events
136
Shawn Bohrer8c207692010-11-30 19:57:19 -0600137-r::
138--repeat=<n>::
Frederik Deweerdta7e191c2013-03-01 13:02:27 -0500139 repeat command and print average + stddev (max: 100). 0 means forever.
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200140
Stephane Eranian5af52b52010-05-18 15:00:01 +0200141-B::
Shawn Bohrer8c207692010-11-30 19:57:19 -0600142--big-num::
Paul A. Clarked778a772020-05-20 11:23:35 -0500143 print large numbers with thousands' separators according to locale.
144 Enabled by default. Use "--no-big-num" to disable.
145 Default setting can be changed with "perf config stat.big-num=false".
Stephane Eranian5af52b52010-05-18 15:00:01 +0200146
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200147-C::
148--cpu=::
Shawn Bohrer8c207692010-11-30 19:57:19 -0600149Count only on the list of CPUs provided. Multiple CPUs can be provided as a
150comma-separated list with no space: 0,1. Ranges of CPUs are specified with -: 0-2.
Stephane Eranianc45c6ea2010-05-28 12:00:01 +0200151In per-thread mode, this option is ignored. The -a option is still necessary
152to activate system-wide monitoring. Default is to count on all CPUs.
153
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200154-A::
155--no-aggr::
Ravi Bangoriaefc9c052017-03-20 18:07:18 +0530156Do not aggregate counts across all monitored CPUs.
Stephane Eranianf5b4a9c32010-11-16 11:05:01 +0200157
Shawn Bohrer8c207692010-11-30 19:57:19 -0600158-n::
159--null::
Arnaldo Carvalho de Melo4a03af32021-03-15 11:27:24 -0300160null run - Don't start any counters.
161
162This can be useful to measure just elapsed wall-clock time - or to assess the
163raw overhead of perf stat itself, without running any counters.
Shawn Bohrer8c207692010-11-30 19:57:19 -0600164
165-v::
166--verbose::
167 be more verbose (show counter open errors, etc)
168
Stephane Eraniand7470b62010-12-01 18:49:05 +0200169-x SEP::
170--field-separator SEP::
171print counts using a CSV-style output to make it easy to import directly into
172spreadsheets. Columns are separated by the string specified in SEP.
173
Jiri Olsae55c14a2018-04-23 11:08:21 +0200174--table:: Display time for each run (-r option), in a table format, e.g.:
175
176 $ perf stat --null -r 5 --table perf bench sched pipe
177
178 Performance counter stats for 'perf bench sched pipe' (5 runs):
179
180 # Table of individual measurements:
Jiri Olsaabc60ba2018-04-23 11:08:22 +0200181 5.189 (-0.293) #
182 5.189 (-0.294) #
183 5.186 (-0.296) #
184 5.663 (+0.181) ##
185 6.186 (+0.703) ####
Jiri Olsae55c14a2018-04-23 11:08:21 +0200186
187 # Final result:
Jiri Olsaabc60ba2018-04-23 11:08:22 +0200188 5.483 +- 0.198 seconds time elapsed ( +- 3.62% )
Jiri Olsae55c14a2018-04-23 11:08:21 +0200189
Stephane Eranian023695d2011-02-14 11:20:01 +0200190-G name::
191--cgroup name::
192monitor only in the container (cgroup) called "name". This option is available only
193in per-cpu mode. The cgroup filesystem must be mounted. All threads belonging to
194container "name" are monitored when they run on the monitored CPUs. Multiple cgroups
195can be provided. Each cgroup is applied to the corresponding event, i.e., first cgroup
196to first event, second cgroup to second event and so on. It is possible to provide
197an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have
198corresponding events, i.e., they always refer to events defined earlier on the command
weiping zhang25f72f92018-01-29 23:48:09 +0800199line. If the user wants to track multiple events for a specific cgroup, the user can
200use '-e e1 -e e2 -G foo,foo' or just use '-e e1 -e e2 -G foo'.
201
202If wanting to monitor, say, 'cycles' for a cgroup and also for system wide, this
203command line can be used: 'perf stat -e cycles -G cgroup_name -a -e cycles'.
Stephane Eranian023695d2011-02-14 11:20:01 +0200204
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +0900205--for-each-cgroup name::
206Expand event list for each cgroup in "name" (allow multiple cgroups separated
Namhyung Kimbb1c15b2020-10-27 16:28:55 +0900207by comma). It also support regex patterns to match multiple groups. This has same
208effect that repeating -e option and -G option for each event x name. This option
209cannot be used with -G/--cgroup option.
Namhyung Kimd1c5a0e2020-09-24 21:44:52 +0900210
Stephane Eranian4aa90152011-08-15 22:22:33 +0200211-o file::
Jim Cromie56f3bae2011-09-07 17:14:00 -0600212--output file::
Stephane Eranian4aa90152011-08-15 22:22:33 +0200213Print the output into the designated file.
214
215--append::
216Append to the output file designated with the -o option. Ignored if -o is not specified.
217
Jim Cromie56f3bae2011-09-07 17:14:00 -0600218--log-fd::
219
220Log output to fd, instead of stderr. Complementary to --output, and mutually exclusive
221with it. --append may be used here. Examples:
Alyssa Rossf2c24eb2021-08-09 15:32:26 +0000222 3>results perf stat --log-fd 3 \-- $cmd
223 3>>results perf stat --log-fd 3 --append \-- $cmd
Jim Cromie56f3bae2011-09-07 17:14:00 -0600224
Adrian Huntera8fcbd22020-09-02 13:57:07 +0300225--control=fifo:ctl-fifo[,ack-fifo]::
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300226--control=fd:ctl-fd[,ack-fd]::
Adrian Huntera8fcbd22020-09-02 13:57:07 +0300227ctl-fifo / ack-fifo are opened and used as ctl-fd / ack-fd as follows.
Alexey Budankov27e97692020-07-17 10:05:41 +0300228Listen on ctl-fd descriptor for command to control measurement ('enable': enable events,
229'disable': disable events). Measurements can be started with events disabled using
230--delay=-1 option. Optionally send control command completion ('ack\n') to ack-fd descriptor
231to synchronize with the controlling process. Example of bash shell script to enable and
232disable events during measurements:
233
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300234 #!/bin/bash
Alexey Budankov27e97692020-07-17 10:05:41 +0300235
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300236 ctl_dir=/tmp/
Alexey Budankov27e97692020-07-17 10:05:41 +0300237
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300238 ctl_fifo=${ctl_dir}perf_ctl.fifo
239 test -p ${ctl_fifo} && unlink ${ctl_fifo}
240 mkfifo ${ctl_fifo}
241 exec {ctl_fd}<>${ctl_fifo}
Alexey Budankov27e97692020-07-17 10:05:41 +0300242
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300243 ctl_ack_fifo=${ctl_dir}perf_ctl_ack.fifo
244 test -p ${ctl_ack_fifo} && unlink ${ctl_ack_fifo}
245 mkfifo ${ctl_ack_fifo}
246 exec {ctl_fd_ack}<>${ctl_ack_fifo}
Alexey Budankov27e97692020-07-17 10:05:41 +0300247
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300248 perf stat -D -1 -e cpu-cycles -a -I 1000 \
249 --control fd:${ctl_fd},${ctl_fd_ack} \
Alyssa Rossf2c24eb2021-08-09 15:32:26 +0000250 \-- sleep 30 &
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300251 perf_pid=$!
Alexey Budankov27e97692020-07-17 10:05:41 +0300252
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300253 sleep 5 && echo 'enable' >&${ctl_fd} && read -u ${ctl_fd_ack} e1 && echo "enabled(${e1})"
254 sleep 10 && echo 'disable' >&${ctl_fd} && read -u ${ctl_fd_ack} d1 && echo "disabled(${d1})"
Alexey Budankov27e97692020-07-17 10:05:41 +0300255
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300256 exec {ctl_fd_ack}>&-
257 unlink ${ctl_ack_fifo}
Alexey Budankov27e97692020-07-17 10:05:41 +0300258
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300259 exec {ctl_fd}>&-
260 unlink ${ctl_fifo}
Alexey Budankov27e97692020-07-17 10:05:41 +0300261
Adrian Hunter1f4390d2020-09-01 12:37:55 +0300262 wait -n ${perf_pid}
263 exit $?
Alexey Budankov27e97692020-07-17 10:05:41 +0300264
265
Peter Zijlstra1f16c572012-10-23 13:40:14 +0200266--pre::
267--post::
268 Pre and post measurement hooks, e.g.:
269
Alyssa Rossf2c24eb2021-08-09 15:32:26 +0000270perf stat --repeat 10 --null --sync --pre 'make -s O=defconfig-build/clean' \-- make -s -j64 O=defconfig-build/ bzImage
Jim Cromie56f3bae2011-09-07 17:14:00 -0600271
Stephane Eranian13370a92013-01-29 12:47:44 +0100272-I msecs::
273--interval-print msecs::
Alexey Budankov9dc9a952018-04-03 21:18:33 +0300274Print count deltas every N milliseconds (minimum: 1ms)
Kan Liang19afd102015-10-02 05:04:34 -0400275The overhead percentage could be high in some cases, for instance with small, sub 100ms intervals. Use with caution.
276 example: 'perf stat -I 1000 -e cycles -a sleep 5'
Jim Cromie56f3bae2011-09-07 17:14:00 -0600277
Jin Yao197ba862020-04-20 22:54:17 +0800278If the metric exists, it is calculated by the counts generated in this interval and the metric is printed after #.
279
yuzhoujiandb06a262018-01-29 10:25:22 +0100280--interval-count times::
281Print count deltas for fixed number of times.
282This option should be used together with "-I" option.
283 example: 'perf stat -I 1000 --interval-count 2 -e cycles -a'
284
Jiri Olsa9660e082018-06-07 00:15:06 +0200285--interval-clear::
286Clear the screen before next interval.
287
yuzhoujianf1f8ad52018-01-29 10:25:23 +0100288--timeout msecs::
289Stop the 'perf stat' session and print count deltas after N milliseconds (minimum: 10 ms).
290This option is not supported with the "-I" option.
291 example: 'perf stat --time 2000 -e cycles -a'
292
Andi Kleen54b50912016-03-03 15:57:36 -0800293--metric-only::
294Only print computed metrics. Print them in a single line.
Andi Kleen206cab62016-03-03 15:57:37 -0800295Don't show any raw values. Not supported with --per-thread.
Andi Kleen54b50912016-03-03 15:57:36 -0800296
Stephane Eraniand4304952013-02-14 13:57:28 +0100297--per-socket::
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100298Aggregate counts per processor socket for system-wide mode measurements. This
299is a useful mode to detect imbalance between sockets. To enable this mode,
Stephane Eraniand4304952013-02-14 13:57:28 +0100300use --per-socket in addition to -a. (system-wide). The output includes the
Stephane Eraniand7e7a452013-02-06 15:46:02 +0100301socket number and the number of online processors on that socket. This is
302useful to gauge the amount of aggregation.
303
Kan Liangdb5742b2019-06-04 15:50:42 -0700304--per-die::
305Aggregate counts per processor die for system-wide mode measurements. This
306is a useful mode to detect imbalance between dies. To enable this mode,
307use --per-die in addition to -a. (system-wide). The output includes the
308die number and the number of online processors on that die. This is
309useful to gauge the amount of aggregation.
310
Stephane Eranian12c08a92013-02-14 13:57:29 +0100311--per-core::
312Aggregate counts per physical processor for system-wide mode measurements. This
313is a useful mode to detect imbalance between physical cores. To enable this mode,
314use --per-core in addition to -a. (system-wide). The output includes the
315core number and the number of online logical processors on that physical processor.
316
Jiri Olsa32b8af82015-06-26 11:29:27 +0200317--per-thread::
318Aggregate counts per monitored threads, when monitoring threads (-t option)
319or processes (-p option).
320
Jiri Olsa86895b42019-08-28 10:17:43 +0200321--per-node::
322Aggregate counts per NUMA nodes for system-wide mode measurements. This
323is a useful mode to detect imbalance between NUMA nodes. To enable this
324mode, use --per-node in addition to -a. (system-wide).
325
Andi Kleen41191682013-08-02 17:41:11 -0700326-D msecs::
Andi Kleen8f3dd2b2014-01-07 14:14:06 -0800327--delay msecs::
Alexey Budankov2162b9c2020-07-17 10:04:33 +0300328After starting the program, wait msecs before measuring (-1: start with events
329disabled). This is useful to filter out the startup phase of the program,
330which is often very different.
Andi Kleen41191682013-08-02 17:41:11 -0700331
Andi Kleen4cabc3d2013-08-21 16:47:26 -0700332-T::
333--transaction::
334
335Print statistics of transactional execution if supported.
336
Ian Rogers05530a72020-05-20 11:20:10 -0700337--metric-no-group::
338By default, events to compute a metric are placed in weak groups. The
339group tries to enforce scheduling all or none of the events. The
340--metric-no-group option places events outside of groups and may
341increase the chance of the event being scheduled - leading to more
342accuracy. However, as events may not be scheduled together accuracy
343for metrics like instructions per cycle can be lower - as both metrics
344may no longer be being measured at the same time.
345
346--metric-no-merge::
347By default metric events in different weak groups can be shared if one
348group contains all the events needed by another. In such cases one
349group will be eliminated reducing event multiplexing and making it so
350that certain groups of metrics sum to 100%. A downside to sharing a
351group is that the group may require multiplexing and so accuracy for a
352small group that need not have multiplexing is lowered. This option
353forbids the event merging logic from sharing events between groups and
354may be used to increase accuracy in this case.
355
Andi Kleen55a4de92020-10-26 17:27:36 -0700356--quiet::
357Don't print output. This is useful with perf stat record below to only
358write data to the perf.data file.
359
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100360STAT RECORD
361-----------
362Stores stat data into perf data file.
363
364-o file::
365--output file::
366Output file name.
367
Jiri Olsaba6039b62015-11-05 15:40:55 +0100368STAT REPORT
369-----------
370Reads and reports stat data from perf data file.
371
372-i file::
373--input file::
374Input file name.
375
Jiri Olsa89af4e02015-11-05 15:41:02 +0100376--per-socket::
377Aggregate counts per processor socket for system-wide mode measurements.
378
Kan Liangdb5742b2019-06-04 15:50:42 -0700379--per-die::
380Aggregate counts per processor die for system-wide mode measurements.
381
Jiri Olsa89af4e02015-11-05 15:41:02 +0100382--per-core::
383Aggregate counts per physical processor for system-wide mode measurements.
384
Andi Kleenb18f3e32017-08-31 12:40:31 -0700385-M::
386--metrics::
387Print metrics or metricgroups specified in a comma separated list.
388For a group all metrics from the group are added.
389The events from the metrics are automatically measured.
Like Xu4da65522021-09-24 16:19:42 +0800390See perf list output for the possible metrics and metricgroups.
Andi Kleenb18f3e32017-08-31 12:40:31 -0700391
Jiri Olsa89af4e02015-11-05 15:41:02 +0100392-A::
393--no-aggr::
394Do not aggregate counts across all monitored CPUs.
395
Andi Kleen44b1e602016-05-30 12:49:42 -0300396--topdown::
Kan Liang63e39aa2021-02-02 12:09:12 -0800397Print complete top-down metrics supported by the CPU. This allows to
Andi Kleen44b1e602016-05-30 12:49:42 -0300398determine bottle necks in the CPU pipeline for CPU bound workloads,
399by breaking the cycles consumed down into frontend bound, backend bound,
400bad speculation and retiring.
401
402Frontend bound means that the CPU cannot fetch and decode instructions fast
403enough. Backend bound means that computation or memory access is the bottle
404neck. Bad Speculation means that the CPU wasted cycles due to branch
405mispredictions and similar issues. Retiring means that the CPU computed without
406an apparently bottleneck. The bottleneck is only the real bottleneck
407if the workload is actually bound by the CPU and not by something else.
408
409For best results it is usually a good idea to use it with interval
410mode like -I 1000, as the bottleneck of workloads can change often.
411
Andi Kleen55c36a92020-09-11 07:48:07 -0700412This enables --metric-only, unless overridden with --no-metric-only.
413
414The following restrictions only apply to older Intel CPUs and Atom,
415on newer CPUs (IceLake and later) TopDown can be collected for any thread:
416
Andi Kleen44b1e602016-05-30 12:49:42 -0300417The top down metrics are collected per core instead of per
418CPU thread. Per core mode is automatically enabled
419and -a (global monitoring) is needed, requiring root rights or
420perf.perf_event_paranoid=-1.
421
422Topdown uses the full Performance Monitoring Unit, and needs
423disabling of the NMI watchdog (as root):
424echo 0 > /proc/sys/kernel/nmi_watchdog
425for best results. Otherwise the bottlenecks may be inconsistent
426on workload with changing phases.
427
Andi Kleen44b1e602016-05-30 12:49:42 -0300428To interpret the results it is usually needed to know on which
429CPUs the workload runs on. If needed the CPUs can be forced using
430taskset.
Jiri Olsa4979d0c2015-11-05 15:40:46 +0100431
Kan Liang63e39aa2021-02-02 12:09:12 -0800432--td-level::
433Print the top-down statistics that equal to or lower than the input level.
434It allows users to print the interested top-down metrics level instead of
435the complete top-down metrics.
436
437The availability of the top-down metrics level depends on the hardware. For
438example, Ice Lake only supports L1 top-down metrics. The Sapphire Rapids
439supports both L1 and L2 top-down metrics.
440
441Default: 0 means the max level that the current hardware support.
442Error out if the input is higher than the supported max level.
443
Andi Kleen430daf22017-03-20 13:17:00 -0700444--no-merge::
445Do not merge results from same PMUs.
446
Agustin Vega-Friasc199c112018-03-06 09:04:44 -0500447When multiple events are created from a single event specification,
448stat will, by default, aggregate the event counts and show the result
449in a single row. This option disables that behavior and shows
450the individual events and counts.
451
452Multiple events are created from a single event specification when:
4531. Prefix or glob matching is used for the PMU name.
4542. Aliases, which are listed immediately after the Kernel PMU events
455 by perf list, are used.
Agustin Vega-Friasb2b9d3a2018-03-06 09:04:42 -0500456
Kan Liangdaefd0b2017-05-26 12:05:38 -0700457--smi-cost::
458Measure SMI cost if msr/aperf/ and msr/smi/ events are supported.
459
460During the measurement, the /sys/device/cpu/freeze_on_smi will be set to
461freeze core counters on SMI.
462The aperf counter will not be effected by the setting.
463The cost of SMI can be measured by (aperf - unhalted core cycles).
464
465In practice, the percentages of SMI cycles is very useful for performance
466oriented analysis. --metric_only will be applied by default.
467The output is SMI cycles%, equals to (aperf - unhalted core cycles) / aperf
468
469Users who wants to get the actual value can apply --no-metric-only.
470
Jin Yaodd071022019-10-11 13:05:45 +0800471--all-kernel::
472Configure all used events to run in kernel space.
473
474--all-user::
475Configure all used events to run in user space.
476
Jin Yao1af62ce2020-02-14 16:04:52 +0800477--percore-show-thread::
478The event modifier "percore" has supported to sum up the event counts
479for all hardware threads in a core and show the counts per core.
480
481This option with event modifier "percore" enabled also sums up the event
482counts for all hardware threads in a core but show the sum counts per
483hardware thread. This is essentially a replacement for the any bit and
484convenient for post processing.
485
Jin Yaoee6a9612020-09-03 09:01:13 +0800486--summary::
487Print summary for interval mode (-I).
488
Jin Yao0bdad972021-03-19 15:01:55 +0800489--no-csv-summary::
490Don't print 'summary' at the first column for CVS summary output.
491This option must be used with -x and --summary.
492
493This option can be enabled in perf config by setting the variable
494'stat.no-csv-summary'.
495
496$ perf config stat.no-csv-summary=true
497
Jin Yaoe69dc842021-09-09 14:22:15 +0800498--cputype::
499Only enable events on applying cpu with this type for hybrid platform
500(e.g. core or atom)"
501
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200502EXAMPLES
503--------
504
Alyssa Rossf2c24eb2021-08-09 15:32:26 +0000505$ perf stat \-- make
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200506
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200507 Performance counter stats for 'make':
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200508
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200509 83723.452481 task-clock:u (msec) # 1.004 CPUs utilized
510 0 context-switches:u # 0.000 K/sec
511 0 cpu-migrations:u # 0.000 K/sec
512 3,228,188 page-faults:u # 0.039 M/sec
513 229,570,665,834 cycles:u # 2.742 GHz
514 313,163,853,778 instructions:u # 1.36 insn per cycle
515 69,704,684,856 branches:u # 832.559 M/sec
516 2,078,861,393 branch-misses:u # 2.98% of all branches
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200517
Jiri Olsa0ce2da12018-06-05 14:13:13 +0200518 83.409183620 seconds time elapsed
519
520 74.684747000 seconds user
521 8.739217000 seconds sys
522
523TIMINGS
524-------
525As displayed in the example above we can display 3 types of timings.
526We always display the time the counters were enabled/alive:
527
528 83.409183620 seconds time elapsed
529
530For workload sessions we also display time the workloads spent in
531user/system lands:
532
533 74.684747000 seconds user
534 8.739217000 seconds sys
535
536Those times are the very same as displayed by the 'time' tool.
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200537
Andi Kleen6b45f7b2016-03-03 15:57:35 -0800538CSV FORMAT
539----------
540
541With -x, perf stat is able to output a not-quite-CSV format output
542Commas in the output are not put into "". To make it easy to parse
543it is recommended to use a different character like -x \;
544
545The fields are in this order:
546
547 - optional usec time stamp in fractions of second (with -I xxx)
548 - optional CPU, core, or socket identifier
549 - optional number of logical CPUs aggregated
550 - counter value
551 - unit of the counter value or empty
552 - event name
553 - run time of counter
554 - percentage of measurement time the counter was running
555 - optional variance if multiple values are collected with -r
556 - optional metric value
557 - optional unit of metric
558
559Additional metrics may be printed with all earlier fields being empty.
560
Jin Yao2750ce12021-04-27 15:01:39 +0800561include::intel-hybrid.txt[]
562
Ingo Molnar1d8c8b22009-04-20 15:52:29 +0200563SEE ALSO
564--------
Thomas Gleixner386b05e2009-06-06 14:56:33 +0200565linkperf:perf-top[1], linkperf:perf-list[1]