Quantum chemistry written with OCaml
Go to file
Anthony Scemama ff872e9479 Slower 2023-06-28 16:22:56 +02:00
ao Removing org-mode source 2023-06-28 13:51:12 +02:00
bin Removing org-mode source 2023-06-28 13:51:12 +02:00
common Slower 2023-06-28 16:22:56 +02:00
docs Removing org-mode source 2023-06-28 13:51:12 +02:00
examples Parallelized ERI with Domainslib 2023-06-16 18:27:23 +02:00
gaussian Improved parallel integrals 2023-06-17 02:07:35 +02:00
gaussian_integrals Slower 2023-06-28 16:22:56 +02:00
linear_algebra Parallelized ERI with Domainslib 2023-06-16 18:27:23 +02:00
mo GWH guess 2023-06-26 15:37:05 +02:00
operators Summary 2021-10-19 16:57:22 +02:00
particles Working on TREXIO basis 2023-04-24 19:31:51 +02:00
perturbation Summary 2021-10-19 16:57:22 +02:00
qcaml Summary 2021-10-19 16:57:22 +02:00
simulation Parallelized ERI with Domainslib 2023-06-16 18:27:23 +02:00
test Cleaned readme for auto-generation 2020-12-28 12:23:39 +01:00
top Slower 2023-06-28 16:22:56 +02:00
.gitignore Added opam package definition 2021-02-12 09:20:42 +01:00
.gitlab-ci.yml Improved Makefile 2021-01-01 18:07:06 +01:00
.gitmodules Added HTML documentation 2021-01-01 17:05:25 +01:00
.ocamlinit Initial new repo 2020-09-26 12:02:53 +02:00
.ocp-indent Initial new repo 2020-09-26 12:02:53 +02:00
DevInstructions.org Working on TREXIO basis 2023-04-24 19:31:51 +02:00
Makefile Removing org-mode source 2023-06-28 13:51:12 +02:00
README.md Working on TREXIO basis 2023-04-24 19:31:51 +02:00
dune-project Parallelized ERI with Domainslib 2023-06-16 18:27:23 +02:00
qcaml.opam Parallelized ERI with Domainslib 2023-06-16 18:27:23 +02:00

README.md

QCaml (Quantum Camel)

QCaml is a quantum chemistry software written in OCaml.

Requirements

  • BLAS/LAPACK : Linear algebra
  • LaCaml : LAPACK OCaml interface
  • gmp : GNU Multiple Precision arithmetic library
  • Zarith : Arbitrary-precision integers
  • GetOpt : Parsing of command-line
  • Alcotest : Lightweight testing framework
  • odoc-ltxhtml : https://github.com/akabe/odoc-ltxhtml
opam install dune lacaml getopt alcotest zarith camlp-streams

To use the Intel MKL library:

export  LACAML_LIBS="-L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_rt -lpthread -lm -ldl"
opam install --assume-depexts lacaml

How to build the project

Run make to compile the libraries and executables that are meant to be installed.

$ make -j

How to run tests

$ make test

How to use local libraries interactively

Use dune utop DIR where DIR if the folder contains the dune file for a library. For instance, our sub2 sample library can be used as follows:

$ dune utop sub2/lib
...
utop # Proj_sub2.A.do_something ();;
1525373137.245 seconds have elapsed since 1970-01-01T00:00:00.
- : unit = ()

Installation

The project can be installed with or without opam. Without opam, you can run the following which relies directly on dune:

$ make install

Similarly:

$ make uninstall

With opam, you can install the current development version of your project as a single opam package. It will override the currently installed package of the same name, if any:

$ opam pin add QCaml .

For more information on opam pin, please consult the opam documentation.

The advantage of the opam-based method is that other opam packages can depend on this one, and opam will recompile them automatically as necessary.