TREXIO Library
The version of the the library must be greater than 2.0.0 for usage in CHAMP.
Minimal requirements for the installation of trexio (for users):
- Autotools (autoconf >= 2.69, automake >= 1.11, libtool >= 2.2) or CMake (>= 3.16)
- C compiler (gcc/icc/clang)
- Fortran compiler (gfortran/ifort)
- HDF5 library (>= 1.8) [optional, recommended for high performance]
Installation procedure from the tarball (for users):
- Download the
trexio-<version>.tar.gzfile gzip -cd trexio-<version>.tar.gz | tar xvf -cd trexio-<version>./configuremakemake checksudo make install
Installation procedure (for CMAKE users):
CMake users can achieve the same with the following steps (an example of out-of-source build):
cmake -S. -Bbuildcd buildmakectest(ormake test)sudo make install