]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - doc/ffmpeg_powerpc_performance_evaluation_howto.txt
FFmpeg & evaluating performance on the PowerPC Architecture HOWTO by (Romain Dolbeau...
[frescor/ffmpeg.git] / doc / ffmpeg_powerpc_performance_evaluation_howto.txt
1 FFmpeg & evaluating performance on the PowerPC Architecture HOWTO
2
3 (c) 2003 Romain Dolbeau <romain@dolbeau.org>
4
5
6
7 I - Introduction
8
9 The PowerPC architecture and its SIMD extension AltiVec offer some interesting tools to evaluate performance and improve the code. This document try to explain how to use those tools with FFmpeg.
10
11 The architecture itself offers two ways to evaluate the performance of a given piece of code :
12
13 1) The Time Base Registers (TBL)
14 2) The Performance Monitor Counter Registers (PMC)
15
16 The firsts are always available, always active, but they're not very accurate : the registers increment by one every four *bus* cycle. On my 667 Mhz tibook (ppc7450) , this means once every twenty *processor* cycle. So we won't use that.
17
18 The PMC are much more useful : not only they can report cycle-accurate timing, but they can also be used to monitor many other parameters, such as the number of AltiVec stalls for every kind of instructions, or instruction cache misses. The downside is that not all processors support the PMC (all G3, all G4 and the 970 do support them), and they're inactive by default - you need to activate them with a dedicated tool. Also, the number of available PMC depend on the procesor : the various 604 have 2, the various 75x (aka. G3) have 4, anbd the various 74xx (aka G4) have 6.
19
20
21
22 II - Enabling FFmpeg PowerPC performance support
23
24 This need to be done by hand. First, you need to configure FFmpeg as usual, plus using the "--powerpc-perf-enable". for instance :
25
26 #####
27 ./configure --prefix=/usr/local/ffmpeg-cvs --cc=gcc-3.3 --tune=7450 --powerpc-perf-enable
28 #####
29
30 This will configure FFmpeg to install inside /usr/local/ffmpeg-cvs, compiling with gcc-3.3 (you should try to use this one or a newer gcc), and tuning for the PowerPC7450 (i.e. the newer G4 ; as a rule of thumb, those at 550Mhz and more). It will also enables the PMCs.
31
32 You may also edit the file "config.h" to enable the following line:
33
34 #####
35 // #define ALTIVEC_USE_REFERENCE_C_CODE 1
36 #####
37
38 If you enable this line, then the code will not make use of AltiVec, but will use the reference C code instead. This is useful to compare performance between the two versions of the code.
39
40 Also, the number of enabled PMC is defined in "libavcodec/ppc/dsputil_ppc.h" :
41
42 #####
43 #define POWERPC_NUM_PMC_ENABLED 4
44 #####
45
46 If you have a G4 cpus, you can enable all 6 PMCs. DO NOT enable more PMCs than available on your cpu !
47
48 Then, simply compile ffmpeg as usual (make && make install).
49
50
51
52 III - Using FFmpeg PowerPC performance support
53
54 This FFmeg can be used exactly as usual. But before exiting, Ffmpeg will dump a per-function report that looks like this:
55
56 #####
57 PowerPC performance report
58  Values are from the PMC registers, and represent whatever the registers are set to record.
59  Function "gmc1_altivec" (pmc1):
60         min: 231
61         max: 1339867
62         avg: 558.25 (255302)
63  Function "gmc1_altivec" (pmc2):
64         min: 93
65         max: 2164
66         avg: 267.31 (255302)
67  Function "gmc1_altivec" (pmc3):
68         min: 72
69         max: 1987
70         avg: 276.20 (255302)
71 (...)
72 #####
73
74 In this example, PMC1 was set to record CPU cycles, PMC2 was set to record AltiVec Permute Stall Cycle, and PMC3 was set to record AltiVec Issue Stalls.
75
76 The function "gmc1_altivec" was monitored 255302 times, and the minimum execution time was 231 processor cycles. The max and average aren't much use, as it's very likely the OS interrupted execution for reasons of it's own :-(
77
78 With the exact same setting and source file, but using the reference C code we get :
79
80 #####
81 PowerPC performance report
82  Values are from the PMC registers, and represent whatever the registers are set to record.
83  Function "gmc1_altivec" (pmc1):
84         min: 592
85         max: 2532235
86         avg: 962.88 (255302)
87  Function "gmc1_altivec" (pmc2):
88         min: 0
89         max: 33
90         avg: 0.00 (255302)
91  Function "gmc1_altivec" (pmc3):
92         min: 0
93         max: 350
94         avg: 0.03 (255302)
95 (...)
96 #####
97
98 592 cycles, so the fastest AltiVec execution is about 2.5x faster than the fastest C execution in this example. It's not perfect but it's not bad (well I wrote this function so I can't say otherwise :-).
99
100 Once you have that kind of report, you can try to improve things by finding what goes wrong and fixing it ; in the example above, one shoud try to diminish the number of AltiVec stalls, as this *may* improve performances.
101
102
103
104 IV) Enabling the PMC in MacOS X
105
106 This is easy. Use "Monster" and "monster". Those tools come from Apple's CHUD package, and can be found hidden in the developer web site & ftp site. "MONster" is the graphical application, use it to generate a config file specifying what each register should monitor. Then use the command-line application "monster" to use that config file, and enjoy the results.
107
108 Note that "MONster" can be used for many other stuff, but it's documented by Apple, it's not my subject.
109
110
111
112 V) Enabling the PMC in Linux
113
114 I don't know how to do it, sorry :-) Any idea very much welcome.
115
116 -- 
117 Romain Dolbeau
118 <romain@dolbeau.org>