2019-01-25 11:39:31 +01:00
|
|
|
============
|
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
The |qp| can be downloaded on GitHub as an `archive
|
|
|
|
<https://github.com/LCPQ/quantum_package/releases/latest>`_ or as a `git
|
|
|
|
repository <https://github.com/LCPQ/quantum_package>`_.
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
2019-02-22 19:19:58 +01:00
|
|
|
git clone https://github.com/QuantumPackage/qp2
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
Before anything, go into your :file:`quantum_package` directory and run
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure
|
|
|
|
|
|
|
|
|
|
|
|
This script will create the :file:`quantum_package.rc` bash script, which
|
|
|
|
sets all the environment variables required for the normal operation of the
|
|
|
|
*Quantum Package*.
|
|
|
|
|
|
|
|
Running this script will also tell you which external dependencies are missing
|
|
|
|
and need to be installed.
|
|
|
|
|
|
|
|
When all dependencies have been installed, ( the :command:`configure` will tell you)
|
|
|
|
source the :file:`quantum_package.rc` in order to load all environment variables and compile the |QP|.
|
|
|
|
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
============
|
|
|
|
|
|
|
|
- Linux OS
|
|
|
|
- Fortran compiler : GNU Fortran, Intel Fortran or IBM XL Fortran
|
|
|
|
- `GNU make`_
|
|
|
|
- `Autoconf`_
|
|
|
|
- `Python`_ > 2.6
|
|
|
|
- |IRPF90| : Fortran code generator
|
|
|
|
- |EZFIO| : Easy Fortran Input/Output library generator
|
|
|
|
- |BLAS| and |LAPACK|
|
|
|
|
- `Zlib`_
|
|
|
|
- |ZeroMQ| : networking library
|
2019-02-22 19:19:58 +01:00
|
|
|
- `GMP <https://gmplib.org/>`_ : Gnu Multiple Precision Arithmetic Library
|
2019-01-25 11:39:31 +01:00
|
|
|
- |OCaml| compiler with |OPAM| package manager
|
2019-06-05 17:28:15 +02:00
|
|
|
- `Bubblewrap <https://github.com/projectatomic/bubblewrap>`_ : Sandboxing tool required by Opam
|
2019-06-15 00:20:35 +02:00
|
|
|
- `libcap <https://git.kernel.org/pub/scm/linux/kernel/git/morgan/libcap.git>`_ : POSIX capabilities required by Bubblewrap
|
2019-01-25 11:39:31 +01:00
|
|
|
- |Ninja| : a parallel build system
|
|
|
|
|
|
|
|
|
|
|
|
When all the dependencies have been installed, go into the :file:`config`
|
|
|
|
directory, and copy the configuration file that corresponds to your
|
|
|
|
architecture. Modify it if needed, and run :command:`configure` with
|
|
|
|
:option:`configure -c`.
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
cp ./config/gfortran.example config/gfortran.cfg
|
|
|
|
./configure -c config/gfortran.cfg
|
|
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
The ``popcnt`` instruction accelerates *a lot* the programs, so the
|
|
|
|
SSE4.2, AVX or AVX2 instruction sets should be enabled in the
|
|
|
|
configuration file if possible.
|
|
|
|
|
|
|
|
|
|
|
|
Help for installing external dependencies
|
|
|
|
=========================================
|
|
|
|
|
2020-02-20 19:28:03 +01:00
|
|
|
All the dependencies can be installed using ![Spack](https://github.com/spack/spack).
|
|
|
|
This is the recommended installation procedure:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/spack/spack.git
|
|
|
|
source spack/share/spack/setup-env.sh
|
|
|
|
spack install quantum_package
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
Using the :command:`configure` executable
|
|
|
|
-----------------------------------------
|
|
|
|
|
|
|
|
The :command:`configure` executable can help you in installing the minimal dependencies you will need to compile the |QP|.
|
|
|
|
The command is to be used as follows:
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure --install <package>
|
|
|
|
|
|
|
|
The following packages are supported by the :command:`configure` installer:
|
|
|
|
|
|
|
|
* ninja
|
|
|
|
* irpf90
|
|
|
|
* zeromq
|
|
|
|
* f77zmq
|
2019-02-22 19:19:58 +01:00
|
|
|
* gmp
|
2019-06-05 17:28:15 +02:00
|
|
|
* libcap
|
|
|
|
* bwrap
|
2019-01-25 11:39:31 +01:00
|
|
|
* ocaml ( :math:`\approx` 10 minutes)
|
|
|
|
* ezfio
|
|
|
|
* docopt
|
|
|
|
* resultsFile
|
|
|
|
* bats
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure -i ezfio
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
2020-02-20 19:28:03 +01:00
|
|
|
When installing the OCaml package, you will be asked the location of where it should be installed.
|
2019-01-25 11:39:31 +01:00
|
|
|
A safe option is to enter the path proposed by the |QP|:
|
|
|
|
|
|
|
|
QP>> Please install it here: /your_quantum_package_directory/bin
|
|
|
|
|
|
|
|
So just enter the proposition of the |QP| and press enter.
|
|
|
|
|
|
|
|
|
|
|
|
If the :command:`configure` executable fails to install a specific dependency
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
If the :command:`configure` executable does not succeed to install a specific dependency,
|
2019-02-22 19:19:58 +01:00
|
|
|
there are some proposition of how to download and install the minimal dependencies to compile and use the |QP|.
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
Before doing anything below, try to install the packages with your package manager
|
2019-02-22 19:19:58 +01:00
|
|
|
(:command:`apt`, :command:`yum`, etc).
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
Ninja
|
|
|
|
-----
|
|
|
|
|
|
|
|
*Ninja* is a build system (like GNU make), with a focus on speed.
|
|
|
|
|
|
|
|
* Download the latest binary version of Ninja
|
|
|
|
here : `<https://github.com/ninja-build/ninja/releases/latest>`_
|
|
|
|
|
|
|
|
* Unzip the ninja-linux.zip file, and move the ninja binary into
|
|
|
|
the :file:`${QP_ROOT}/bin` directory.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IRPF90
|
|
|
|
------
|
|
|
|
|
|
|
|
*IRPF90* is a Fortran code generator for programming using the Implicit Reference
|
|
|
|
to Parameters (IRP) method.
|
|
|
|
|
2020-02-20 19:28:03 +01:00
|
|
|
If you have *pip* for Python2, you can do
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
python2 -m pip install --user irpf90
|
|
|
|
|
|
|
|
Otherwise,
|
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
* Download the latest version of IRPF90
|
2019-07-01 12:14:52 +02:00
|
|
|
here : `<https://gitlab.com/scemama/irpf90/-/archive/v1.7.2/irpf90-v1.7.2.tar.gz>`_ and move
|
2019-01-25 11:39:31 +01:00
|
|
|
the downloaded archive in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive and go into the :file:`irpf90-*` directory to run
|
|
|
|
:command:`make`
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
The :envvar:`IRPF90_PATH` variable may need to be updated in the configuration
|
|
|
|
file :file:`${QP_ROOT}/etc/irpf90.rc`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ZeroMQ and its Fortran binding
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
*ZeroMQ* is a high-performance asynchronous messaging library.
|
|
|
|
|
|
|
|
* Download the latest stable version of ZeroMQ
|
|
|
|
here : `<https://github.com/zeromq/libzmq/releases/latest>`_ and move the
|
|
|
|
downloaded archive in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, go into the :file:`zeromq-*` directory and run
|
|
|
|
the following commands
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure --prefix="${QP_ROOT}" --without-libsodium
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
|
|
|
|
* Download the Fortran binding
|
|
|
|
here : `<https://github.com/zeromq/f77_zmq/releases/latest>`_ and move
|
|
|
|
the downloaded archive in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, go into the :file:`f77_zmq-*` directory and run
|
|
|
|
the following commands
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
export ZMQ_H=${QP_ROOT}/include/zmq.h
|
|
|
|
make
|
|
|
|
cp libf77zmq.a ${QP_ROOT}/lib
|
|
|
|
cp libf77zmq.so ${QP_ROOT}/lib
|
|
|
|
|
|
|
|
|
|
|
|
* Copy the :file:`f77_zmq_free.h` file in the ``ZMQ`` module as follows:
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
cp f77_zmq_free.h ${QP_ROOT}/src/ZMQ/f77_zmq.h
|
|
|
|
|
|
|
|
|
|
|
|
Zlib
|
|
|
|
----
|
|
|
|
|
|
|
|
*Zlib* is the compression library used by *gzip*.
|
|
|
|
|
|
|
|
* Download the latest version of Zlib here:
|
|
|
|
`<https://www.zlib.net/zlib-1.2.11.tar.gz>`_
|
|
|
|
and move it in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, go into the :file:`zlib-*` directory and run
|
|
|
|
the following commands
|
|
|
|
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure --prefix=${QP_ROOT}
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2019-02-04 13:14:57 +01:00
|
|
|
With Debian or Ubuntu, you can use
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
sudo apt install zlib1g-dev
|
|
|
|
|
2019-02-22 19:19:58 +01:00
|
|
|
GMP
|
|
|
|
---
|
|
|
|
|
|
|
|
GMP is the GNU Multiple Precision Arithmetic Library.
|
|
|
|
|
|
|
|
* Download the latest version of gmp here:
|
|
|
|
`<ftp://ftp.gnu.org/gnu/gmp/gmp-6.1.2.tar.bz2>`_
|
|
|
|
and move it in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, go into the :file:`gmp-*` directory and run
|
|
|
|
the following commands
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure --prefix=${QP_ROOT}
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
With Debian or Ubuntu, you can use
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
sudo apt install libgmp-dev
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
2019-06-05 17:28:15 +02:00
|
|
|
libcap
|
|
|
|
------
|
|
|
|
|
|
|
|
Libcap is a library for getting and setting POSIX.1e draft 15 capabilities.
|
|
|
|
|
|
|
|
* Download the latest version of libcap here:
|
|
|
|
`<https://git.kernel.org/pub/scm/linux/kernel/git/morgan/libcap.git/snapshot/libcap-2.25.tar.gz>`_
|
|
|
|
and move it in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, go into the :file:`libcap-*/libcap` directory and run
|
|
|
|
the following command
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
prefix=$QP_ROOT make install
|
|
|
|
|
|
|
|
With Debian or Ubuntu, you can use
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
sudo apt install libcap-dev
|
|
|
|
|
|
|
|
|
|
|
|
Bubblewrap
|
|
|
|
----------
|
|
|
|
|
|
|
|
Bubblewrap is an unprivileged sandboxing tool.
|
|
|
|
|
|
|
|
* Download Bubblewrap here:
|
|
|
|
`<https://github.com/projectatomic/bubblewrap/releases/download/v0.3.3/bubblewrap-0.3.3.tar.xz>`_
|
|
|
|
and move it in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, go into the :file:`bubblewrap-*` directory and run
|
|
|
|
the following commands
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
./configure --prefix=$QP_ROOT && make -j 8
|
|
|
|
make install-exec-am
|
|
|
|
|
|
|
|
|
|
|
|
With Debian or Ubuntu, you can use
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
sudo apt install bubblewrap
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
OCaml
|
|
|
|
-----
|
|
|
|
|
|
|
|
*OCaml* is a general purpose programming language with an emphasis on expressiveness and safety.
|
|
|
|
|
2019-02-04 13:14:57 +01:00
|
|
|
* The following packages are required (Debian or Ubuntu):
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
sudo apt install libncurses5-dev pkg-config libgmp3-dev m4
|
|
|
|
|
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
* Download the installer of the OPAM package manager here :
|
|
|
|
`<https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh>`_
|
|
|
|
and move it in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* If you use OCaml only with the |qp|, you can install the OPAM directory
|
|
|
|
containing the compiler and all the installed libraries in the
|
|
|
|
:file:`${QP_ROOT}/external` directory as
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
export OPAMROOT=${QP_ROOT}/external/opam
|
|
|
|
|
|
|
|
|
|
|
|
* Run the installer
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
echo ${QP_ROOT}/bin
|
|
|
|
${QP_ROOT}/external/opam_installer.sh --no-backup --fresh
|
|
|
|
|
2019-07-24 08:11:17 +02:00
|
|
|
The :command:`opam` command can be installed in the :file:`${QP_ROOT}/bin`
|
2019-01-25 11:39:31 +01:00
|
|
|
directory. To do this, take the output of ``echo ${QP_ROOT}/bin`` and
|
|
|
|
use it as an answer to where :command:`opam` should be installed.
|
|
|
|
|
|
|
|
|
|
|
|
* Install the OCaml compiler
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
2019-07-24 08:11:17 +02:00
|
|
|
opam init --comp=4.07.1
|
|
|
|
eval `${QP_ROOT}/bin/opam env`
|
|
|
|
|
2019-07-24 08:12:22 +02:00
|
|
|
If the installation fails because of bwrap, you can initialize opam using:
|
2019-07-24 08:11:17 +02:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
opam init --disable-sandboxing --comp=4.07.1
|
2019-01-25 11:39:31 +01:00
|
|
|
eval `${QP_ROOT}/bin/opam env`
|
|
|
|
|
|
|
|
* Install the required external OCaml libraries
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
2019-03-13 15:49:57 +01:00
|
|
|
opam install ocamlbuild cryptokit zmq sexplib ppx_sexp_conv ppx_deriving getopt
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
EZFIO
|
|
|
|
-----
|
|
|
|
|
|
|
|
*EZFIO* is the Easy Fortran Input/Output library generator.
|
|
|
|
|
|
|
|
* Download EZFIO here : `<https://gitlab.com/scemama/EZFIO/-/archive/master/EZFIO-master.tar.gz>`_ and move
|
|
|
|
the downloaded archive in the :file:`${QP_ROOT}/external` directory
|
|
|
|
|
|
|
|
* Extract the archive, and rename it as :file:`${QP_ROOT}/external/ezfio`
|
|
|
|
|
|
|
|
|
|
|
|
Docopt
|
|
|
|
------
|
|
|
|
|
|
|
|
*Docopt* is a Python package defining a command-line interface description language.
|
|
|
|
|
|
|
|
If you have *pip* for Python2, you can do
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
2020-02-20 19:28:03 +01:00
|
|
|
python2 -m pip install --user docopt
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
Otherwise,
|
|
|
|
|
|
|
|
* Download the archive here : `<https://github.com/docopt/docopt/releases/tag/0.6.2>`_
|
|
|
|
|
|
|
|
* Extract the archive
|
|
|
|
|
|
|
|
* Copy :file:`docopt-0.6.2/docopt.py` in the :file:`${QP_ROOT}/scripts` directory
|
|
|
|
|
|
|
|
|
2020-02-20 19:28:03 +01:00
|
|
|
resultsFile
|
|
|
|
-----------
|
|
|
|
|
|
|
|
*resultsFile* is a Python package to extract data from output files of quantum chemistry
|
|
|
|
codes.
|
|
|
|
|
|
|
|
If you have *pip* for Python2, you can do
|
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
python2 -m pip install --user resultsFile
|
|
|
|
|
|
|
|
|
|
|
|
|