Debugging and profiling: Difference between revisions
No edit summary |
(Marked this version for translation) |
||
Line 29: | Line 29: | ||
== Scalasca profiler (scalasca, scorep, cube) == <!--T:11--> | == Scalasca profiler (scalasca, scorep, cube) == <!--T:11--> | ||
<!--T:19--> | |||
Scalasca is an open-source, GUI-driven parallel profiling tool set. It is currently available for '''gcc 9.3.0''' and '''OpenMPI 4.0.3''', with AVX2 or AVX512 architecture. Its environment can be loaded with: | Scalasca is an open-source, GUI-driven parallel profiling tool set. It is currently available for '''gcc 9.3.0''' and '''OpenMPI 4.0.3''', with AVX2 or AVX512 architecture. Its environment can be loaded with: | ||
<!--T:20--> | |||
<code>module load StdEnv/2020 gcc/9.3.0 openmpi/4.0.3 scalasca</code> | <code>module load StdEnv/2020 gcc/9.3.0 openmpi/4.0.3 scalasca</code> | ||
<!--T:21--> | |||
The current version is '''2.5'''. More information can be found in the 2.x user guide, which contains workflow examples [https://apps.fz-juelich.de/scalasca/releases/scalasca/2.5/docs/manual/ here]. | The current version is '''2.5'''. More information can be found in the 2.x user guide, which contains workflow examples [https://apps.fz-juelich.de/scalasca/releases/scalasca/2.5/docs/manual/ here]. | ||
Line 45: | Line 48: | ||
==Valgrind== <!--T:15--> | ==Valgrind== <!--T:15--> | ||
<!--T:22--> | |||
Please see the [[Valgrind | Valgrind page]] | Please see the [[Valgrind | Valgrind page]] | ||
Revision as of 19:54, 19 May 2023
An important step in the software development process, particularly for compiled languages like Fortran and C/C++, concerns the use of a program called a debugger to detect and identify the origin of runtime errors (e.g. memory leaks, floating point exceptions and so forth) so that they can be eliminated. Once the program's correctness is assured, a further step is profiling the software. This involves the use of another software tool, a profiler, determine what percentage of the total execution time each section of the source code is responsible for when run with a representative test case. A profiler can give information like how many times a particular function is called, which other functions are calling it and how many milli-seconds of time each invocation of this function costs on average.
Debugging and profiling tools
The Compute Canada national clusters offer a variety of debugging and profiling tools, both command line and those with a graphical user interface, whose use requires an X11 connection. Note that debugging sessions should be conducted using an interactive job and not run on the login node.
GNU Debugger (gdb)
Please see GDB page
PGI Debugger (pgdb)
See Pgdbg
ARM Debugger (ddt)
Please see the ARM software page.
GNU Profiler (gprof)
Please see Gprof page
Scalasca profiler (scalasca, scorep, cube)
Scalasca is an open-source, GUI-driven parallel profiling tool set. It is currently available for gcc 9.3.0 and OpenMPI 4.0.3, with AVX2 or AVX512 architecture. Its environment can be loaded with:
module load StdEnv/2020 gcc/9.3.0 openmpi/4.0.3 scalasca
The current version is 2.5. More information can be found in the 2.x user guide, which contains workflow examples here.
PGI Profiler (pgprof)
Please see Pgprof page
Nvidia command-line profiler (nvprof)
Please see nvprof page
Nvidia Visual Profiler (nvvp)
Valgrind
Please see the Valgrind page
External references
- Introduction to (Parallel) Performance from SciNet
- "Code profiling on Graham", video, 54 minutes.