LIO is a Quantum Mechanical software based on Density Functional Theory (DFT) and real time Time Dependent Density Functional Theory (TD-DFT).
The most computationally intensive calculations are ported to use graphical processors which support CUDA (e.g. Nvidia Maxwell, Fermi, Kepler and Tesla families).
- Intel MKL (Math Kernel Library).
- Intel C++ and Fortran Compiler (can be obtained with a non-commercial license).
- NVIDIA CUDA (for compiling GPU version).
- GNU Make.
- Python 2.7 (for test scripts)
The program can be compiled using the make command. The following options can be used to modify compilation. For example, the following compiles the GPU kernels.
make cuda=1
Available options:
-
dbg: enable debugging information. It also enables several asserts which degrade performance.
-
cpu: utilized non-optimized kernels in CPU instead of GPU (not recommended, only to compare running the same code in CPU and GPU).
-
time: enables the timers to obtain detailed timing information from different parts of the program.
-
profile: enabling gprof profiling information.
-
cpu_recompute: recomputes=0 mantains in memory the value of the functions for each point (more memory is used but execution time goes down by around 10%). Only used for the CPU kernels.
-
full_double: generate the application using full double precision instead of mixed precision (which is the default).
To run the test suite, you need to install python 2. It is already present in most Linux distributions.
The test suite can be ran from the tests directory and running
./run_tests.py
The first argument to the run_tests.py program is a regular expression (Python Documentation) which matches the folder names in the test directory. For example, running from the tests directory:
./run_tests.py --filter_rx GPU
runs only the tests for GPU. For more options run
./run_tests.py --help
Before contributing, make sure you have set up the git hooks for the project. That can be done either by running a clean compile with make, or by executing
make hooks
After setting LD_LIBRARY_PATH to point to the MKL and ICC libraries.
Sample compilation for CPU
make -j cpu=1 time=1
After setting LD_LIBRARY_PATH to point to both MKL, ICC and CUDA libraries.
Sample compilation for GPU
make -j cuda=1 time=1
Both result in 2 dynamic libraries:
- g2g/libg2g.so
- lioamber/liblio-g2g.so
Be sure to add both dynamic libraries to LD_LIBRARY_PATH before running Amber.
-
Matías A. Nitsche, Manuel Ferreria, Esteban E. Mocskos and Mariano C. González Lebrero, GPU Accelerated Implementation of Density Functional Theory for Hybrid QM/MM Simulations. J. Chem. Theory Comput., 2014, 10 (3), pp 959–967.
-
Uriel N. Morzan, Francisco F. Ramírez, M. Belén Oviedo, Cristián G. Sánchez, Damián A. Scherlis and Mariano C. González Lebrero, Electron dynamics in complex environments with real-time time dependent density functional theory in a QM-MM framework. J. Chem. Phys. 140, 164105 (2014).