-
Install TREXIO and QMCKL external libraries.
-
Download the QMC=Chem source package.
-
Extract the package to a folder:
$ tar -xzf qmcchem-2.0.0.tar.gz
- Change to the directory of the extracted source package:
$ cd qmcchem-2.0.0
- Configure the build with:
$ ./configure
The default compiler is the Intel Fortran compiler (ifort
) if detected,
otherwise GNU Fortran (gfortran
) will be used.
If the Intel compiler is detected, the MKL library is used, otherwise the
user's BLAS library is checked.
- Compile the source code with:
$ make
- Install the program with:
$ make install
Optional configuration arguments:
--with-arch
: Specifies the target architecture to generate code for. Can beavx
,avx2
oravx512
. The default isavx2
.
To install QMC=Chem with the --with-arch
option, use the following commands:
./configure --with-arch=<avx|avx2|avx512> && make