How to compile with GNU and Intel compiler :
'Dirac' has both GNU and Intel compilers (5 floating license) for use.
Compiler Language Serial/Parallel Command
GNU C Serial gcc -o <outfile> <file.c>
GNU Fortran Serial gfortran -o <outfile> <file.f90>
GNU C Parallel mpicc -o <outfile> <file.c>
GNU Fortran Parallel mpif90 -o <outfile> <file.f90>
Intel C Serial module load intel-compiler
source /home/softwares/intel/bin/compilervars.sh
icc -o <outfile> <file.c>
Intel Fortran Serial module load intel-compiler
source /home/softwares/intel/bin/compilervars.sh intel64
ifort -o <outfile> <file.f90>
Intel C Parallel module load intel-compiler
source /home/softwares/intel/impi/2019.1.144/intel64/bin/mpivars.sh
mpicc -o <outfile> <file.c>
Intel Fortran Parallel module load intel-compiler
source /home/softwares/intel/impi/2019.1.144/intel64/bin/mpivars.sh
mpif90 -o <outfile> <file.f90>