mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 06:33:38 +01:00
22 lines
394 B
Plaintext
22 lines
394 B
Plaintext
# CPU type
|
|
|
|
## ALIGNMENT
|
|
|
|
#CPU_TYPE="-xCORE-AVX2" # [ Host | CORE-AVX2 | CORE-AVX-I | AVX | SSE4.2 ]
|
|
CPU_TYPE="-xHost"
|
|
|
|
# Array alignment (Bytes)
|
|
ALIGN="32"
|
|
|
|
## FORTRAN compiler
|
|
FC="ifort"
|
|
FCFLAGS="-O2 -g -ip -ftz -finline ${CPU_TYPE}" #-traceback
|
|
LIB="-mkl=sequential"
|
|
|
|
## IRPF90
|
|
IRPF90="${QMCCHEM_PATH}/bin/irpf90"
|
|
IRPF90_FLAGS="--align=${ALIGN}"
|
|
|
|
export FC FCFLAGS LIB IRPF90 IRPF90_FLAGS
|
|
|