Development/GCC: Difference between revisions
K Siegmund (talk | contribs) No edit summary |
S Richling (talk | contribs) No edit summary |
||
(29 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
{{Softwarepage|compiler/gnu}} |
|||
{| width=600px class="wikitable" |
|||
|- |
|||
! Description !! Content |
|||
|- |
|||
| module load |
|||
| compiler/gnu |
|||
|- |
|||
| License |
|||
| GPL |
|||
|- |
|||
|Citing |
|||
| n/a |
|||
|- |
|||
| Links |
|||
| [http://gcc.gnu.org/ GNU-Homepage] |
|||
|- |
|||
| Graphical Interface |
|||
| No |
|||
|- |
|||
| Included modules |
|||
| gcc | g++ | gfortran |
|||
|} |
|||
<br> |
|||
= Description = |
|||
The '''GNU Compiler Collection (GCC)''' consists of tools to compile C, C++ and Fortran programs: |
The '''GNU Compiler Collection (GCC)''' consists of tools to compile C, C++ and Fortran programs: |
||
{| width=400px class="wikitable" |
|||
{| border="1" style="margin:5px;border-collapse:collapse" |
|||
|- |
|- |
||
|style="padding:3px"| gcc |
|style="padding:3px"| gcc |
||
Line 11: | Line 37: | ||
|style="padding:3px"| GNU Fortran compiler |
|style="padding:3px"| GNU Fortran compiler |
||
|} |
|} |
||
<br> |
|||
<br> |
|||
'''Loading:''' There is a version of GCC available on the system without loading a module but it may be outdated and it is recommended to load the GNU compiler module. To get a list of all the different versions installed on the system execute the following command: |
|||
More information about the MPI versions of the GCC Compiler is available here: |
|||
<pre>$ module avail compiler/gnu</pre> |
|||
* [[Development/Parallel_Programming|Best Practices Guide for Parallel Programming]]. |
|||
There is a default version which will be loaded when no version is explicitly specified, so the command |
|||
<pre>$ module load compiler/gnu</pre> |
|||
will load the default version. |
|||
= Optimizations = |
|||
'''Online documentation:''' http://gcc.gnu.org/onlinedocs/ |
|||
⚫ | |||
'''Local documentation:''' For version specific documentation see the help page of the module. For example |
|||
<pre>$ module help compiler/gnu</pre> |
|||
will show the information for the default version. |
|||
For detailed lists of the different program options consult the particular man page: |
|||
<pre> |
|||
$ man gcc |
|||
$ man g++ |
|||
$ man gfortran |
|||
</pre> |
|||
⚫ | |||
<pre>$ gcc -march=native -O2 ex.c -o ex</pre> |
<pre>$ gcc -march=native -O2 ex.c -o ex</pre> |
||
There are more aggressive optimization flags but the compiled programs can get quite large and the compilation process will probably take much longer. Moreover it can happen that the so compiled program is even slower. Such a command would be for example |
There are more aggressive optimization flags but the compiled programs can get quite large and the compilation process will probably take much longer. Moreover it can happen that the so compiled program is even slower. Such a command would be for example |
||
Line 36: | Line 49: | ||
For a complete list of all the optimization options execute |
For a complete list of all the optimization options execute |
||
<pre>$ gcc --help=optimizers</pre> |
<pre>$ gcc --help=optimizers</pre> |
||
<br> |
|||
== Profiling with Gprof == |
|||
'''Profiling:''' If you want to profile your program using gprof you have to compile your code with the profile flag: |
|||
Gprof is the profiler which belongs to the gcc compiler. Gprof is also installed on the system and can be used to profile your code. The profiler supports C, C++, Pascal and Fortran 77 program code. With this tool it is possible to analyse call times and time spent within program functions. |
|||
<br> |
|||
The first required step is to compile your program with the profiling flag "-pg". |
|||
<pre>$ gcc -pg ex.c -o ex</pre> |
<pre>$ gcc -pg ex.c -o ex</pre> |
||
Compiled in this way your program will generate profiling data during execution. By default a file named gmon.out can be found in the work directory after running the program. |
|||
[[Category:Compiler_software]] |
|||
<pre>$ ./ex</pre> |
|||
The next step is to run the gprof program to analyse the gmon.out profiling data file. This file contains profiling data concerning the program execution, like an overview, time information or the call graph, in human readable format. |
|||
<pre>$ gprof gmon.out ex > outputfile.txt</pre> |
Latest revision as of 23:56, 8 December 2022
The main documentation is available via |
Description | Content |
---|---|
module load | compiler/gnu |
License | GPL |
Citing | n/a |
Links | GNU-Homepage |
Graphical Interface | No |
Included modules | gcc | g++ | gfortran |
Description
The GNU Compiler Collection (GCC) consists of tools to compile C, C++ and Fortran programs:
gcc | GNU C compiler |
g++ | GNU C++ compiler |
gfortran | GNU Fortran compiler |
More information about the MPI versions of the GCC Compiler is available here:
Optimizations
You can turn on various optimization options to enhance the performance of your program. Which options are the best depends on the specific program and can be determined by benchmarking your code. A command which gives good performance and a decent file size is
$ gcc -march=native -O2 ex.c -o ex
There are more aggressive optimization flags but the compiled programs can get quite large and the compilation process will probably take much longer. Moreover it can happen that the so compiled program is even slower. Such a command would be for example
$ gcc -march=native -O3 ex.c -o ex
For a complete list of all the optimization options execute
$ gcc --help=optimizers
Profiling with Gprof
Gprof is the profiler which belongs to the gcc compiler. Gprof is also installed on the system and can be used to profile your code. The profiler supports C, C++, Pascal and Fortran 77 program code. With this tool it is possible to analyse call times and time spent within program functions.
The first required step is to compile your program with the profiling flag "-pg".
$ gcc -pg ex.c -o ex
Compiled in this way your program will generate profiling data during execution. By default a file named gmon.out can be found in the work directory after running the program.
$ ./ex
The next step is to run the gprof program to analyse the gmon.out profiling data file. This file contains profiling data concerning the program execution, like an overview, time information or the call graph, in human readable format.
$ gprof gmon.out ex > outputfile.txt