Difference between revisions of "Gprof Tutorial"

From HPC Wiki
Jump to navigation Jump to search
m
 
(23 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Tutorials]] [[Category:Basics]]
+
[[Category:Tutorials]] [[Category:HPC-Developer]]<nowiki />
[[Category:Tutorials | GPROF Tutorial]]
+
[[Category:Tutorials | Gprof Tutorial]]<nowiki />
  
Gprof is a free and easy-to-use profiler.
+
This tutorial deals with the topic of applications performance analysis with the GNU profiler Gprof. Profiling applications gives valuable insights into the program structure and exposes performance bottlenecks, which point to sections of the code where optimizations are most effective.
  
{{infobox table}}
+
The tutorial covers all necessary basics to get started with Gprof: it shows how to instrument applications, how to generate performance information for an application run and how to evaluate the results. In addition, it explains how to visualize the application structure using call graphs and how to annotate the application's source code with runtime information. Three real-world examples from the areas of biology, computer science and mechanical engineering demonstrate that this works with different programming languages (C/C++, Fortran), different compilers (GNU, Intel) and even parallel applications (threads, MPI).
  
 
__TOC__
 
__TOC__
  
=== Introduction === <!--T:5-->
+
<youtube width="600" height="400" right>F8evu-ybDfY</youtube>
  
Introduce tutorial structure, topic and speaker
+
([[Media:HPC.NRW_gprof_Tutorial.pdf | Slides as pdf]])
 
 
<youtube width="600" height="400" right>IfD9IPixgpo</youtube>
 
 
 
=== Gprof Introduction + Pascal Example === <!--T:5-->
 
 
 
Provide everything to run and make use of gprof.
 
 
 
<youtube width="600" height="400" right>IfD9IPixgpo</youtube>
 
  
 
'''Quiz'''
 
'''Quiz'''
  
 
{{hidden begin  
 
{{hidden begin  
|title = 1. What lanuages can gprof profile?
+
|title = 1. What languages can Gprof profile?
 
}}
 
}}
 
<quiz display=simple>
 
<quiz display=simple>
Line 32: Line 24:
 
+  C/C++, Fortran, Pascal
 
+  C/C++, Fortran, Pascal
 
|| True
 
|| True
-  Haskell, Cobol, Brainfuck
+
-  Haskell, Cobol, Whitespace
 
||
 
||
 
</quiz>
 
</quiz>
Line 38: Line 30:
  
 
{{hidden begin  
 
{{hidden begin  
|title = 2. How does gprof profiles an application?
+
|title = 2. How does Gprof generate a performance profile of an application?
 
}}
 
}}
 
<quiz display=simple>
 
<quiz display=simple>
 
{
 
{
 
|type="()"}
 
|type="()"}
+ By instrumenting the application during compilation.
+
+ by instrumenting the application during compilation
 
|| True
 
|| True
- Through static analysis of the source code
+
- through static analysis of the source code
 +
||
 +
- by means of hardware performance counters
 
||
 
||
 
</quiz>
 
</quiz>
Line 51: Line 45:
  
 
{{hidden begin  
 
{{hidden begin  
|title = 3. What compiler flag is used to instrument the application?
+
|title = 3. What compiler/linker flag is used to instrument the application?
 
}}
 
}}
 
<quiz display=simple>
 
<quiz display=simple>
 
{
 
{
 
|type="()"}
 
|type="()"}
+ <code>-pg</code>
+
+ <code>-pg</code>
 
|| True
 
|| True
- <code>-pig</code>
+
- <code>-pig</code>
 +
||
 +
- <code>--profile</code>
 +
||
 +
</quiz>
 +
{{hidden end}}
 +
 
 +
{{hidden begin
 +
|title = 4. Which compilers support Gprof?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- only the commercial Intel compilers
 
||
 
||
- <code>--profile</code>
+
- only open-source compilers (e.g., from GNU)
 
||
 
||
 +
+ many different compilers (e.g., from GNU and Intel)
 +
|| True
 
</quiz>
 
</quiz>
 
{{hidden end}}
 
{{hidden end}}
  
 
{{hidden begin  
 
{{hidden begin  
|title = How should the parameters be when running the instrumented application?
+
|title = 5. How should the input parameters be when running the instrumented application?
 
}}
 
}}
 
<quiz display=simple>
 
<quiz display=simple>
 
{
 
{
 
|type="()"}
 
|type="()"}
- Simple and understandable  
+
- simple and understandable  
 
||
 
||
+ Representative of the usual workload  
+
+ representative of a usual workload  
 
|| True
 
|| True
- Covering edge cases  
+
- covering edge cases  
 
||
 
||
 
</quiz>
 
</quiz>
 
{{hidden end}}
 
{{hidden end}}
  
{{Note|'''Exercises: no exercises in this section'''}}
+
{{hidden begin
 +
|title = 6. Which applications can be analyzed with Gprof?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- only small examples
 +
||
 +
- up to medium-sized applications with a running time below ~1 hour
 +
||
 +
+ all, even large real-world examples with huge running times
 +
|| True
 +
</quiz>
 +
{{hidden end}}
  
=== C++ + Fortran Examples === <!--T:5-->
+
{{hidden begin
 +
|title = 7. What is a call graph?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- an android app to show incoming callers
 +
||
 +
+ a hierarchy diagram of function calls in a given profile
 +
|| True
 +
- instructions of how to call for help during emergencies
 +
||
 +
</quiz>
 +
{{hidden end}}
  
Show gprof in real world examples and introduce call graph.
+
{{hidden begin
 +
|title = 8. How do you generate a call graph of a Gprof profile?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- gprof --call-graph  
 +
||
 +
- gprof-call-graph
 +
||
 +
+ gprof --graph 
 +
|| True
 +
</quiz>
 +
{{hidden end}}
  
<youtube width="600" height="400" right>IfD9IPixgpo</youtube>
+
{{hidden begin
 +
|title = 9. What is gprof2dot?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
+ third-party script for call graph visualization via the "dot" library
 +
|| True
 +
- Gprof feature to export profiles as a pdf
 +
||
 +
- a fork of the beta version of Gprof2
 +
||
 +
</quiz>
 +
{{hidden end}}
  
 +
{{hidden begin
 +
|title = 10. Does Gprof work with parallel applications?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- no, Gprof only works with sequential applications
 +
||
 +
+ yes, but Gprof cannot differentiate between individual threads or processes
 +
|| True
 +
- yes, parallel profiling is the main use-case of Gprof
 +
||
 +
</quiz>
 +
{{hidden end}}
  
{{quiz_box|'''no quiz in this section'''}}
+
{{hidden begin
 
+
|title = 11. How much runtime overhead does Gprof produce?
{{Note|'''Exercises: no exercises in this section'''}}
+
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- none
 +
||
 +
+ little
 +
|| True
 +
- much
 +
||
 +
</quiz>
 +
{{hidden end}}

Latest revision as of 18:48, 3 December 2020

This tutorial deals with the topic of applications performance analysis with the GNU profiler Gprof. Profiling applications gives valuable insights into the program structure and exposes performance bottlenecks, which point to sections of the code where optimizations are most effective.

The tutorial covers all necessary basics to get started with Gprof: it shows how to instrument applications, how to generate performance information for an application run and how to evaluate the results. In addition, it explains how to visualize the application structure using call graphs and how to annotate the application's source code with runtime information. Three real-world examples from the areas of biology, computer science and mechanical engineering demonstrate that this works with different programming languages (C/C++, Fortran), different compilers (GNU, Intel) and even parallel applications (threads, MPI).


( Slides as pdf)

Quiz

1. What languages can Gprof profile?

Python, Java, Julia
C/C++, Fortran, Pascal
Haskell, Cobol, Whitespace

2. How does Gprof generate a performance profile of an application?

by instrumenting the application during compilation
through static analysis of the source code
by means of hardware performance counters

3. What compiler/linker flag is used to instrument the application?

-pg
-pig
--profile

4. Which compilers support Gprof?

only the commercial Intel compilers
only open-source compilers (e.g., from GNU)
many different compilers (e.g., from GNU and Intel)

5. How should the input parameters be when running the instrumented application?

simple and understandable
representative of a usual workload
covering edge cases

6. Which applications can be analyzed with Gprof?

only small examples
up to medium-sized applications with a running time below ~1 hour
all, even large real-world examples with huge running times

7. What is a call graph?

an android app to show incoming callers
a hierarchy diagram of function calls in a given profile
instructions of how to call for help during emergencies

8. How do you generate a call graph of a Gprof profile?

gprof --call-graph
gprof-call-graph
gprof --graph

9. What is gprof2dot?

third-party script for call graph visualization via the "dot" library
Gprof feature to export profiles as a pdf
a fork of the beta version of Gprof2

10. Does Gprof work with parallel applications?

no, Gprof only works with sequential applications
yes, but Gprof cannot differentiate between individual threads or processes
yes, parallel profiling is the main use-case of Gprof

11. How much runtime overhead does Gprof produce?

none
little
much