1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-01 10:55:36 +02:00
qmckl/README.md

56 lines
1.7 KiB
Markdown
Raw Normal View History

2020-10-16 18:32:25 +02:00
# QMCkl: Quantum Monte Carlo Kernel Library
![Build Status](https://github.com/TREX-CoE/qmckl/workflows/test-build/badge.svg?branch=main)
The domain of quantum chemistry needs a library in which the main
kernels of Quantum Monte Carlo (QMC) methods are implemented. In the
library proposed in this project, we expose the main algorithms in a
2020-10-16 18:31:07 +02:00
simple language and provide a standard API and tests to enable the
development of high-performance QMCkl implementations taking
advantage of modern hardware.
2020-10-13 15:12:27 +02:00
2020-10-16 18:32:25 +02:00
See the [source code](https://github.com/TREX-CoE/qmckl/tree/main/src)
to read the documentation.
2020-10-17 00:28:49 +02:00
To clone the repository, use:
```
git clone --recursive https://github.com/TREX-CoE/qmckl.git
```
to dowload also the [munit](https://github.com/nemequ/munit) unit testing
framework.
2021-05-10 23:56:26 +02:00
# Installation
The simplest way to obtain the source files of QMCkl is to download a source
distribution. This particular repository is for maintainers, who write the kernels
in org-mode files and produce the source code and the documentation from these files.
## For maintainers
```
autoreconf
2021-05-11 11:45:49 +02:00
QMCKL_DEVEL=1 ./configure --enable-debug
2021-05-10 23:56:26 +02:00
make
make check
```
## For users
Obtain a source distribution and run
```
./configure
make
make check
sudo make install
sudo make installcheck
```
------------------------------
2020-10-16 18:30:36 +02:00
![European flag](https://trex-coe.eu/sites/default/files/inline-images/euflag.jpg)
[TREX: Targeting Real Chemical Accuracy at the Exascale](https://trex-coe.eu) project has received funding from the European Unions Horizon 2020 - Research and Innovation program - under grant agreement no. 952165. The content of this document does not represent the opinion of the European Union, and the European Union is not responsible for any use that might be made of such content.
2020-10-17 00:28:49 +02:00