How to Profile an application (using google-perftools)
Here we assume that the "google-perftools" are correctly installed in the system under the directory "/usr/lib". The following instructions shall be changed to reflect the actual installation directory for such libraries
let's now imagine we wish to profile the "cavity2D" example of the "incompressible_fluid_application". We shall first of all preload the libraries needed (tcmalloc is NOT essential for this, althought it may be useful)
export LD_PRELOAD=/usr/lib/libtcmalloc.so:/usr/lib/libprofiler.so
secondarily we shall activate the profiler instructing on where to dump the data and which file shall be run. this is obtained by setting the environmental var CPUPROFILE followed by the run of the program. For example if we want to write the profiling data in "/tmp/cavity_prof" we shall write
CPUPROFILE=/tmp/cavity_prof python test_fractstep_cont_laplacian.py
After this step the file "/tmp/cavity_prof" exists in the system. Such file need to be interpreted by the program "pprof" or "google-pprof" under ubuntu. PDF output can be obtained by
google-pprof --pdf /usr/bin/python /tmp/cavity_prof > profiling_output.pdf
which dumps the profiling output to the file named "profiling_output.pdf". Similarly text output is obtained by
google-pprof --text /usr/bin/python /tmp/cavity_prof > profiling_output.txt