mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 06:33:38 +01:00
9d7c73ace4
- 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.
18 lines
289 B
Plaintext
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
|
|
|