6 perf-diff - Read perf.data files and display the differential profile
11 'perf diff' [baseline file] [data file1] [[data file2] ... ]
15 This command displays the performance difference amongst two or more perf.data
16 files captured via perf record.
18 If no parameters are passed it will assume perf.data.old and perf.data.
20 The differential profile is displayed only for events matching both
21 specified perf.data files.
23 If no parameters are passed the samples will be sorted by dso and symbol.
24 As the perf.data files could come from different binaries, the symbols addresses
25 could vary. So perf diff is based on the comparison of the files and
32 Dump raw trace in ASCII.
39 Load module symbols. WARNING: use only with -k and LIVE kernel
43 Only consider symbols in these dsos. CSV that understands
44 file://filename entries. This option will affect the percentage
45 of the Baseline/Delta column. See --percentage for more info.
49 Only consider symbols in these comms. CSV that understands
50 file://filename entries. This option will affect the percentage
51 of the Baseline/Delta column. See --percentage for more info.
55 Only consider these symbols. CSV that understands
56 file://filename entries. This option will affect the percentage
57 of the Baseline/Delta column. See --percentage for more info.
61 Sort by key(s): pid, comm, dso, symbol, cpu, parent, srcline.
62 Please see description of --sort in the perf-report man page.
67 Use a special separator character and don't pad with spaces, replacing
68 all occurrences of this separator in symbol names (and other output)
69 with a '.' character, that thus it's the only non valid separator.
73 Be verbose, for instance, show the raw counts in addition to the
78 Do not show any message. (Suppress -v)
82 Don't do ownership validation.
85 Look for files with symbols relative to this directory.
89 Show only items with match in baseline.
93 Differential computation selection - delta, ratio, wdiff, delta-abs
94 (default is delta-abs). Default can be changed using diff.compute
95 config option. See COMPARISON METHODS section for more info.
99 Show period values for both compared hist entries.
103 Show formula for given computation.
107 Specify compute sorting column number. 0 means sorting by baseline
108 overhead and 1 (default) means sorting by computed value of column 1
109 (data from the first file other base baseline). Values more than 1
110 can be used only if enough data files are provided.
111 The default value can be set using the diff.order config option.
114 Determine how to display the overhead percentage of filtered entries.
115 Filters can be applied by --comms, --dsos and/or --symbols options.
117 "relative" means it's relative to filtered entries only so that the
118 sum of shown entries will be always 100%. "absolute" means it retains
119 the original value before and after the filter is applied.
123 The comparison is governed by the baseline file. The baseline perf.data
124 file is iterated for samples. All other perf.data files specified on
125 the command line are searched for the baseline sample pair. If the pair
126 is found, specified computation is made and result is displayed.
128 All samples from non-baseline perf.data files, that do not match any
129 baseline entry, are displayed with empty space within baseline column
130 and possible computation results (delta) in their related column.
132 Example files samples:
133 - file A with samples f1, f2, f3, f4, f6
134 - file B with samples f2, f4, f5
135 - file C with samples f1, f2, f5
138 x - computation takes place for pair
139 b - baseline sample percentage
143 baseline/A compute/B compute/C samples
144 ---------------------------------------
154 baseline/B compute/A compute/C samples
155 ---------------------------------------
165 baseline/C compute/B compute/A samples
166 ---------------------------------------
178 If specified the 'Delta' column is displayed with value 'd' computed as:
180 d = A->period_percent - B->period_percent
183 - A/B being matching hist entry from data/baseline file specified
184 (or perf.data/perf.data.old) respectively.
186 - period_percent being the % of the hist entry period value within
189 - with filtering by -C, -d and/or -S, period_percent might be changed
190 relative to how entries are filtered. Use --percentage=absolute to
191 prevent such fluctuation.
195 Same as 'delta` method, but sort the result with the absolute values.
199 If specified the 'Ratio' column is displayed with value 'r' computed as:
201 r = A->period / B->period
204 - A/B being matching hist entry from data/baseline file specified
205 (or perf.data/perf.data.old) respectively.
207 - period being the hist entry period value
209 wdiff:WEIGHT-B,WEIGHT-A
210 ~~~~~~~~~~~~~~~~~~~~~~~
211 If specified the 'Weighted diff' column is displayed with value 'd' computed as:
213 d = B->period * WEIGHT-A - A->period * WEIGHT-B
215 - A/B being matching hist entry from data/baseline file specified
216 (or perf.data/perf.data.old) respectively.
218 - period being the hist entry period value
220 - WEIGHT-A/WEIGHT-B being user supplied weights in the the '-c' option
221 behind ':' separator like '-c wdiff:1,2'.
222 - WEIGHT-A being the weight of the data file
223 - WEIGHT-B being the weight of the baseline data file
227 linkperf:perf-record[1], linkperf:perf-report[1]