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 Don't complain, do it.
81 Look for files with symbols relative to this directory.
85 Show only items with match in baseline.
89 Differential computation selection - delta,ratio,wdiff (default is delta).
90 See COMPARISON METHODS section for more info.
94 Show period values for both compared hist entries.
98 Show formula for given computation.
102 Specify compute sorting column number.
105 Determine how to display the overhead percentage of filtered entries.
106 Filters can be applied by --comms, --dsos and/or --symbols options.
108 "relative" means it's relative to filtered entries only so that the
109 sum of shown entries will be always 100%. "absolute" means it retains
110 the original value before and after the filter is applied.
114 The comparison is governed by the baseline file. The baseline perf.data
115 file is iterated for samples. All other perf.data files specified on
116 the command line are searched for the baseline sample pair. If the pair
117 is found, specified computation is made and result is displayed.
119 All samples from non-baseline perf.data files, that do not match any
120 baseline entry, are displayed with empty space within baseline column
121 and possible computation results (delta) in their related column.
123 Example files samples:
124 - file A with samples f1, f2, f3, f4, f6
125 - file B with samples f2, f4, f5
126 - file C with samples f1, f2, f5
129 x - computation takes place for pair
130 b - baseline sample percentage
134 baseline/A compute/B compute/C samples
135 ---------------------------------------
145 baseline/B compute/A compute/C samples
146 ---------------------------------------
156 baseline/C compute/B compute/A samples
157 ---------------------------------------
169 If specified the 'Delta' column is displayed with value 'd' computed as:
171 d = A->period_percent - B->period_percent
174 - A/B being matching hist entry from data/baseline file specified
175 (or perf.data/perf.data.old) respectively.
177 - period_percent being the % of the hist entry period value within
180 - with filtering by -C, -d and/or -S, period_percent might be changed
181 relative to how entries are filtered. Use --percentage=absolute to
182 prevent such fluctuation.
186 If specified the 'Ratio' column is displayed with value 'r' computed as:
188 r = A->period / B->period
191 - A/B being matching hist entry from data/baseline file specified
192 (or perf.data/perf.data.old) respectively.
194 - period being the hist entry period value
196 wdiff:WEIGHT-B,WEIGHT-A
197 ~~~~~~~~~~~~~~~~~~~~~~~
198 If specified the 'Weighted diff' column is displayed with value 'd' computed as:
200 d = B->period * WEIGHT-A - A->period * WEIGHT-B
202 - A/B being matching hist entry from data/baseline file specified
203 (or perf.data/perf.data.old) respectively.
205 - period being the hist entry period value
207 - WEIGHT-A/WEIGHT-B being user supplied weights in the the '-c' option
208 behind ':' separator like '-c wdiff:1,2'.
209 - WEIGHT-A being the weight of the data file
210 - WEIGHT-B being the weight of the baseline data file
214 linkperf:perf-record[1], linkperf:perf-report[1]