| Description |
The Intel compiler suites offer C, C++ and Fortran compilers with optimization features and multithreading capabilities, highly optimized performance libraries, and error-checking, security, and profiling tools. Official Homepage
|
| Documentation |
Users Manual Quick Reference Guid to Optimize and with Intel Compilers (PDF)
Other References Intel Compilers for Linux -Compatibility with GNU Compilers (PDF) Intel Compilers White Papers (PDF)
Intel Discussion Forum (PDF)
Intel Software Development Knowledge Base (PDF)
|
| License Agreement and Citation Format |
License Agreement License Agreement (PDF)
Citation Format
|
| How to Access the Program |
Availability
| Servers |
Versions |
Compilers |
Paths |
| Fuji |
11.0.074 |
C compiler |
/opt/intel/cc/11.0.074/bin/intel64/icc |
| C++ Compiler |
/opt/intel/cc/11.0.074/bin/intel64/icpc |
| Fortran Compier |
/opt/intel/fc/11.0.074/bin/intel64/ifort |
| 12.1.0 |
C, C++ and Fortran |
/opt/intel/Compiler/2011 |
| |
|
|
| Aurora |
11.1.038 |
C compiler |
/opt/intel/Compiler/11.1/038/bin/intel64/icc |
| C++ Compiler |
/opt/intel/Compiler/11.1/038/bin/intel64/icpc |
| Fortran Compier |
/opt/intel/Compiler/11.1/038/bin/intel64/ifort |
| Axle |
11.0.074 |
C compiler |
/opt/intel/cc/11.0.074/bin/intel64/icc |
| C++ Compiler |
/opt/intel/cc/11.0.074/bin/intel64/icpc |
| Fortran Compier |
/opt/intel/fc/11.0.074/bin/intel64/ifort |
|
| Using the Program |
(1) Set up the Environments for Intel Compilers
Add these lines in .bashrc for bash shell for Fuji and Axle source /opt/intel/cc/11.0.074/bin/intel64/iccvars_intel64.sh source /opt/intel/fc/11.0.074/bin/intel64/ifortvars_intel64.sh for csh or tcsh shells setenv /opt/intel/cc/11.0.074/bin/intel64/iccvars_intel64.csh setenv /opt/intel/fc/11.0.074/bin/intel64/ifortvars_intel64.csh Add these lines in .bashrc for bash shell for Aurora source /opt/intel/Compiler/11.1/038/bin/intel64/iccvars_intel64.sh source /opt/intel/Compiler/11.1/038/bin/intel64/ifortvars_intel64.sh for csh or tcsh shells setenv /opt/intel/Compiler/11.1/038/bin/intel64/iccvars_intel64.csh setenv /opt/intel/Compiler/11.1/038/bin/intel64/ifortvars_intel64.csh 2) Compile your code C : icc [-options] source.c -o executable.exe C++ : icpc [-options] source.c -o executable.exe Fortran : ifort [-options] source.c -o executable.exe [-options] can be found in the user manual
|
| Additional Notes |
| |