diff --git a/docs.it4i/anselm-cluster-documentation/software/debuggers/total-view.md b/docs.it4i/anselm-cluster-documentation/software/debuggers/total-view.md index b48b9527ee7bc8c608259f85a7df49e40ed005d0..32a1e2e69754235ead6709ed1bae90c4231dc0f2 100644 --- a/docs.it4i/anselm-cluster-documentation/software/debuggers/total-view.md +++ b/docs.it4i/anselm-cluster-documentation/software/debuggers/total-view.md @@ -57,10 +57,9 @@ Compile the code: Before debugging, you need to compile your code with theses flags: -!!! Note "Note" - **-g** : Generates extra debugging information usable by GDB. **-g3** includes even more debugging information. This option is available for GNU and INTEL C/C++ and Fortran compilers. - - **-O0** : Suppress all optimizations. +!!! Note + - **-g** : Generates extra debugging information usable by GDB. **-g3** includes even more debugging information. This option is available for GNU and INTEL C/C++ and Fortran compilers. + - **-O0** : Suppress all optimizations. ## Starting a Job with TotalView @@ -92,7 +91,7 @@ To debug a serial code use: To debug a parallel code compiled with **OpenMPI** you need to setup your TotalView environment: -!!! Note "Note" +!!! Note **Please note:** To be able to run parallel debugging procedure from the command line without stopping the debugger in the mpiexec source code you have to add the following function to your **~/.tvdrc** file: ```bash @@ -121,7 +120,7 @@ The source code of this function can be also found in /apps/mpi/openmpi/intel/1.6.5/etc/openmpi-totalview.tcl ``` -!!! Note "Note" +!!! Note You can also add only following line to you ~/.tvdrc file instead of the entire function: **source /apps/mpi/openmpi/intel/1.6.5/etc/openmpi-totalview.tcl** diff --git a/docs.it4i/anselm-cluster-documentation/software/debuggers/valgrind.md b/docs.it4i/anselm-cluster-documentation/software/debuggers/valgrind.md index dec4485389dd4a2e57bdd4cef466a80600e73f06..26a988a0c4f970eb4f37b0e05eba8e5ab407bef3 100644 --- a/docs.it4i/anselm-cluster-documentation/software/debuggers/valgrind.md +++ b/docs.it4i/anselm-cluster-documentation/software/debuggers/valgrind.md @@ -55,7 +55,7 @@ Now, compile it with Intel compiler : Now, lets run it with Valgrind. The syntax is : - _valgrind [valgrind options] <your program binary> [your program options]_ +`valgrind [valgrind options] <your program binary> [your program options]` If no Valgrind options are specified, Valgrind defaults to running Memcheck tool. Please refer to the Valgrind documentation for a full description of command line options.