1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-11-19 12:32:40 +01:00
qmckl/python
2022-05-02 16:36:22 +02:00
..
build_pyqmckl.sh First working prototype (manual installation) 2022-05-02 16:14:18 +02:00
numpy.i First commit 2022-05-02 13:39:22 +02:00
process.py Comment debug prints 2022-05-02 16:36:22 +02:00
pyqmckl_include.i First commit 2022-05-02 13:39:22 +02:00
pyqmckl.i First commit 2022-05-02 13:39:22 +02:00
pytrexio.i First commit 2022-05-02 13:39:22 +02:00
README.md First working prototype (manual installation) 2022-05-02 16:14:18 +02:00

Python API of the QMCkl library

Requirements

  • numpy
  • SWIG (>= 4.0)

Manual installation

  1. Install the QMCkl as usual
  2. Get the latest qmckl.h file
  3. python process.py to generate pyqmckl_include.i list of SWIG patterns
  4. swig -python -py3 -o pyqmckl_wrap.c pyqmckl.i to generate the SWIG wrapper code in C and pyqmckl.py module in Python. Note: for this to work three files have to be present in the working directory: pyqmckl.i, pyqmckl_include.i and numpy.i.
  5. <c-compiler> -I/usr/include/python3.8 -c -fPIC pyqmckl_wrap.c to compile the wrapper code into an object file using the <c-compiler> (replace with your C compiler, e.g. gcc) on your machine
  6. <c-compiler> -shared pyqmckl_wrap.o -lqmckl -o _pyqmckl.so to produce the final C extension (this requires the qmckl library to be installed and present in the linking paths together with all its dependencies like trexio)
  7. Put the produced _pyqmckl.so and pyqmckl.py files in the working directory and then run import pyqmckl

Python-ic installation