qp2/config/ifort_2021_sse4_mpi.cfg

65 lines
1.6 KiB
INI
Raw Permalink Normal View History

2019-01-25 11:39:31 +01:00
# Common flags
##############
#
# -mkl=[parallel|sequential] : Use the MKL library
# --ninja : Allow the utilisation of ninja. It is mandatory !
# --align=32 : Align all provided arrays on a 32-byte boundary
#
[COMMON]
2024-02-08 14:13:10 +01:00
FC : mpiifort -fpic -diag-disable=10448
2023-02-06 13:47:37 +01:00
LAPACK_LIB : -mkl=parallel
2019-01-25 11:39:31 +01:00
IRPF90 : irpf90
2021-11-29 10:43:14 +01:00
IRPF90_FLAGS : --ninja --align=32 -DMPI -DINTEL
2019-01-25 11:39:31 +01:00
# Global options
################
#
# 1 : Activate
# 0 : Deactivate
2020-03-05 09:36:52 +01:00
#
2019-01-25 11:39:31 +01:00
[OPTION]
MODE : OPT ; [ OPT | PROFILE | DEBUG ] : Chooses the section below
CACHE : 0 ; Enable cache_compile.py
OPENMP : 1 ; Append OpenMP flags
# Optimization flags
####################
#
# -xHost : Compile a binary optimized for the current architecture
# -O2 : O3 not better than O2.
# -ip : Inter-procedural optimizations
# -ftz : Flushes denormal results to zero
#
[OPT]
2020-03-05 09:36:52 +01:00
FCFLAGS : -msse4.2 -O2 -ip -ftz -g -traceback
2019-01-25 11:39:31 +01:00
# Profiling flags
#################
#
[PROFILE]
FC : -p -g
2020-03-05 09:36:52 +01:00
FCFLAGS : -msse4.2 -O2 -ip -ftz
2019-01-25 11:39:31 +01:00
# Debugging flags
#################
#
# -traceback : Activate backtrace on runtime
# -fpe0 : All floating point exaceptions
# -C : Checks uninitialized variables, array subscripts, etc...
# -g : Extra debugging information
# -xSSE2 : Valgrind needs a very simple x86 executable
#
[DEBUG]
FC : -g -traceback
FCFLAGS : -xSSE2 -C -fpe0 -implicitnone
# OpenMP flags
#################
#
[OPENMP]
FC : -qopenmp
IRPF90_FLAGS : --openmp