10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 11:25:18 +02:00
qmcchem/make.config.gfortran
Francois Coppens 9d7c73ace4 First attempt at replacing SM-calls to QMCKL/SMW calls.
- Doing QMCkl/SM_slagels splitting of a single SM update works.

TODO:
- Make it more efficient in terms of array handling
- Restructure calling routing above so all updates can be sent to QMCKL/SMW in one go.
2021-10-11 15:38:12 +02:00

18 lines
289 B
Plaintext

# CPU type
## ALIGNMENT
CPU_TYPE="-mavx"
## FORTRAN compiler
FC="gfortran -ffree-line-length-none"
FCFLAGS="-O2 -g ${CPU_TYPE}"
LIB="-lblas -llapack -lpthread -lqmckl"
## IRPF90
IRPF90="${QMCCHEM_PATH}/bin/irpf90"
IRPF90_FLAGS="--align=16"
export FC FCFLAGS LIB IRPF90 IRPF90_FLAGS