Development/Intel Compiler: Difference between revisions
No edit summary |
(Update Intel Compiler for LLVM-based / OneAPI) |
||
(63 intermediate revisions by 9 users not shown) | |||
Line 1: | Line 1: | ||
{{Softwarepage|compiler/intel}} |
|||
{| style="border-style: solid; border-width: 1px" |
|||
! Navigation: [[BwHPC_Best_Practices_Repository|bwHPC BPR]] |
|||
|} |
|||
__FORCETOC__ |
|||
{| width=600px class="wikitable" |
|||
The '''Intel Compiler''' of the '''Intel Composer XE Suite''' consists of tools to compile and debug C, C++ and Fortran programs: |
|||
{| border="1" style="margin:5px;border-collapse:collapse" |
|||
|- |
|- |
||
! Description !! Content |
|||
|- |
|||
| module load |
|||
| compiler/intel/VERSION and compiler/intel/VERSION_llvm |
|||
|- |
|||
| License |
|||
| Commercial. See $INTEL_HOME/install-doc/EULA.txt. | [https://software.intel.com/en-us/faq/licensing Intel Product Licensing FAQ] |
|||
|- |
|||
|Citing |
|||
| n/a |
|||
|- |
|||
| Links |
|||
| [https://software.intel.com/en-us/c-compilers Intel C-Compiler Homepage] |
|||
|- |
|||
| Graphical Interface |
|||
| [[#Debugger|Yes (Intel Debugger GUI-Verison)]] |
|||
|- |
|||
| Included modules |
|||
| icc | icpc | ifort | idb | gdb-ia |
|||
|} |
|||
<br> |
|||
= Introduction = |
|||
The '''Intel Compiler''' consists of tools to compile and debug C, C++ and Fortran programs, and currently is in a transition phase: the so-called legacy compiler (based on an Intel in-house development with many optimization hints) and the newer LLVM-based compiler (where many of these optimizations and hints are ported to). To smoothly handle this transition we offer the standard legacy compiler plus the new LLVM-based compiler with the ''_llvm'' prefix. |
|||
The following table shows the preferred names: |
|||
{| width=600px class="wikitable" |
|||
|- |
|||
|style="padding:3px"| '''Tool''' |
|||
|style="padding:3px"| '''Legacy name''' |
|||
|style="padding:3px"| '''LLVM-based name''' |
|||
|- |
|||
|- |
|||
|style="padding:3px"| Intel C compiler |
|||
|style="padding:3px"| icc |
|style="padding:3px"| icc |
||
|style="padding:3px"| |
|style="padding:3px"| icx |
||
|- |
|- |
||
|style="padding:3px"| icpc |
|||
|style="padding:3px"| Intel C++ compiler |
|style="padding:3px"| Intel C++ compiler |
||
|style="padding:3px"| icpc |
|||
|style="padding:3px"| icpx |
|||
|- |
|- |
||
|style="padding:3px"| [https://software.intel.com/en-us/fortran-compilers Intel Fortran compiler] |
|||
|style="padding:3px"| ifort |
|style="padding:3px"| ifort |
||
|style="padding:3px"| |
|style="padding:3px"| ifx |
||
|- |
|- |
||
|style="padding:3px"| |
|style="padding:3px"| Intel debugger in GUI mode (until version 14 only) |
||
|style="padding:3px"| |
|style="padding:3px"| [[#GUI|idb]] |
||
|style="padding:3px"| N/A |
|||
|- |
|- |
||
|style="padding:3px"| |
|style="padding:3px"| Intel GNU debugger in console mode (from version 15) |
||
|style="padding:3px"| |
|style="padding:3px"| [[#Console Mode|gdb-ia]] |
||
|style="padding:3px"| gdb-oneapi |
|||
|- |
|||
|style="padding:3px"| Intel debugger in console mode (until version 14 only) |
|||
|style="padding:3px"| [[#Console Mode|idbc]] |
|||
|style="padding:3px"| N/A |
|||
|} |
|} |
||
The intel compiler suite also includes the TBB (Threading Building Blocks), IPP (Integrated Performance Primitives) and oneAPI libraries. |
|||
<br> |
|||
<br> |
|||
More information about the MPI versions of the Intel Compiler is available here: |
|||
* [[Development/Parallel_Programming|Best Practices Guide for Parallel Programming]]. |
|||
<br> |
|||
= Documentation = |
|||
Aside from that the suite also includes the TBB (Threading Building Blocks) and IPP (Integrated Performance Primitives) libraries. |
|||
== Online documentation == |
|||
* [https://software.intel.com/en-us/articles/intel-c-composer-xe-documentation Intel® C-Compiler Documentation] |
|||
* [https://software.intel.com/en-us/intel-software-technical-documentation Intel® Software Documentation Library] |
|||
= Optimizations = |
|||
'''Loading:''' There are different versions of the Intel compilers installed. To get a list of these installations execute the following command: |
|||
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 |
|||
<pre>$ module avail compiler/intel</pre> |
|||
'''icx -xHost -O2 ex.c'''. |
|||
There is a default version which will be loaded when no version is explicitly specified, so the command |
|||
With the option '''-xHost''' instructions for the highest instruction set available on the compilation host processor are generated. If you want to generate optimal code on bwUniCluster for both nodes with Sandy Bridge architecture and nodes with Broadwell architecture, you must compile your code with the options '''-xAVX -axCORE-AVX2''' (instead of '''-xHost'''). |
|||
<pre>$ module load compiler/intel</pre> |
|||
<br> |
|||
will load the default version. |
|||
There are more aggressive optimization flags and levels (e.g. -O3 or -fast and implied options) but the compiled programs can get quite large due to inlining. Additionally the compilation process will probably take longer. Moreover it may happen that the compiled program is even slower -- or may require installation of additional statically-linked libraries. Such a command would be for example: |
|||
'''icx -fast ex.c''' |
|||
<br> |
|||
<br> |
|||
= Profiling = |
|||
'''Online documentation:''' |
|||
Profiling an application means augmenting the compiled binary with information on execution counts per source-line (and basic blocks) -- e.g. one may see how many times an if-statement has been evaluated to true. To do so, compile your code with the profile flag: |
|||
http://software.intel.com/en-us/articles/intel-c-composer-xe-documentation |
|||
'''icx -p ex.c -o ex'''. |
|||
<br> |
|||
'''Local documentation:''' For version specific documentation see the help page of the module. For example |
|||
Using the gprof tool, one may manually inspect execution count of each executed line of source code. |
|||
<pre>$ module help compiler/intel</pre> |
|||
<br> |
|||
will show the information for the default version. |
|||
For compiler optimization, recompile your source using |
|||
For detailed lists of the different program options consult the particular man page: |
|||
'''icx -prof-gen ex.c -o ex''' |
|||
<pre> |
|||
then execute the most co]]mmon and typical use-case of your application, and then recompile using the generated profile count (and using optimization): |
|||
$ man icc |
|||
'''icx -prof-use -O2 ex.c -o ex'''. |
|||
$ man icpc |
|||
<br> |
|||
$ man ifort |
|||
== Further literature == |
|||
$ man idb |
|||
A tutorial on optimization can be found at [https://www.intel.com/content/www/us/en/developer/articles/technical/vectorization-essential.html Vectorization Essentials] |
|||
</pre> |
|||
'''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 |
|||
<pre>$ icc -xHost -O2 ex.c</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 |
|||
<pre>$ icc -fast ex.c</pre> |
|||
A tutorial on optimization can be found at http://download-software.intel.com/sites/default/files/article/301481/compiler-essentials.1.pdf |
|||
and to get the different optimization options execute |
and to get the different optimization options execute |
||
'''icx -help opt''' |
|||
<pre> |
|||
or |
|||
$ icc -help opt |
|||
'''icx -help advanced''' |
|||
< |
<br> |
||
or the previously described catch-all option '''''-v --help'''''. |
|||
'''Profiling:''' If you want to profile your program using gprof you have to compile your code with the profile flag: |
|||
<pre>$ icc -p ex.c -o ex</pre> |
|||
[[Category:Compiler_software]][[Category:bwUniCluster]] |
Latest revision as of 15:17, 9 October 2024
The main documentation is available via |
Description | Content |
---|---|
module load | compiler/intel/VERSION and compiler/intel/VERSION_llvm |
License | Commercial. See $INTEL_HOME/install-doc/EULA.txt. | Intel Product Licensing FAQ |
Citing | n/a |
Links | Intel C-Compiler Homepage |
Graphical Interface | Yes (Intel Debugger GUI-Verison) |
Included modules | icc | icpc | ifort | idb | gdb-ia |
Introduction
The Intel Compiler consists of tools to compile and debug C, C++ and Fortran programs, and currently is in a transition phase: the so-called legacy compiler (based on an Intel in-house development with many optimization hints) and the newer LLVM-based compiler (where many of these optimizations and hints are ported to). To smoothly handle this transition we offer the standard legacy compiler plus the new LLVM-based compiler with the _llvm prefix. The following table shows the preferred names:
Tool | Legacy name | LLVM-based name |
Intel C compiler | icc | icx |
Intel C++ compiler | icpc | icpx |
Intel Fortran compiler | ifort | ifx |
Intel debugger in GUI mode (until version 14 only) | idb | N/A |
Intel GNU debugger in console mode (from version 15) | gdb-ia | gdb-oneapi |
Intel debugger in console mode (until version 14 only) | idbc | N/A |
The intel compiler suite also includes the TBB (Threading Building Blocks), IPP (Integrated Performance Primitives) and oneAPI libraries.
More information about the MPI versions of the Intel Compiler is available here:
Documentation
Online documentation
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
icx -xHost -O2 ex.c.
With the option -xHost instructions for the highest instruction set available on the compilation host processor are generated. If you want to generate optimal code on bwUniCluster for both nodes with Sandy Bridge architecture and nodes with Broadwell architecture, you must compile your code with the options -xAVX -axCORE-AVX2 (instead of -xHost).
There are more aggressive optimization flags and levels (e.g. -O3 or -fast and implied options) but the compiled programs can get quite large due to inlining. Additionally the compilation process will probably take longer. Moreover it may happen that the compiled program is even slower -- or may require installation of additional statically-linked libraries. Such a command would be for example:
icx -fast ex.c
Profiling
Profiling an application means augmenting the compiled binary with information on execution counts per source-line (and basic blocks) -- e.g. one may see how many times an if-statement has been evaluated to true. To do so, compile your code with the profile flag:
icx -p ex.c -o ex.
Using the gprof tool, one may manually inspect execution count of each executed line of source code.
For compiler optimization, recompile your source using
icx -prof-gen ex.c -o ex
then execute the most co]]mmon and typical use-case of your application, and then recompile using the generated profile count (and using optimization):
icx -prof-use -O2 ex.c -o ex.
Further literature
A tutorial on optimization can be found at Vectorization Essentials
and to get the different optimization options execute
icx -help opt
or
icx -help advanced
or the previously described catch-all option -v --help.