Intel Fortran Compiler
Overview
The Intel Fortran Compiler can be used to compile Fortran code into bytecode which can then be run on a CPU.
Availability
Cluster | Module/Version |
---|---|
BOSE | Not Available |
BGSC | ifort/2013splu2 |
Note: You can simply use module load ifort
to activate the most recently installed version of this software.
Sample Slurm Script
submit.sh
#!/bin/bash
# -- SLURM SETTINGS -- #
# [..] other settings here [..]
# The following settings are for the overall request to Slurm
#SBATCH --ntasks-per-node=32 # How many CPU cores do you want to request
#SBATCH --nodes=1 # How many nodes do you want to request
# -- SCRIPT COMMANDS -- #
# Load the needed modules
module load ifort/2013splu2 # Load ifort
ifort my-input-file.for # Compile Fortran file
Real Example
Has your research group used ifort in a project? Contact the HPC Team and we'd be glad to feature your work.