mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2025-01-03 10:06:09 +01:00
Simplify org-mode
This commit is contained in:
parent
e774a725b9
commit
ccc1b835d1
13
src/Makefile
13
src/Makefile
@ -5,7 +5,7 @@ FC=gfortran -g
|
||||
FFLAGS=-fPIC -fcheck=all -Waliasing -Wampersand -Wconversion -Wsurprising -Wintrinsics-std -Wno-tabs -Wintrinsic-shadow -Wline-truncation -Wreal-q-constant -Wuninitialized -fbacktrace -ffpe-trap=zero,overflow,underflow -finit-real=nan
|
||||
|
||||
LIBS=-lgfortran -lm
|
||||
#
|
||||
|
||||
#CC=icc -xHost
|
||||
#CFLAGS=-fPIC -g -O2
|
||||
#
|
||||
@ -30,15 +30,18 @@ libqmckl.so: Makefile.generated
|
||||
test: Makefile.generated
|
||||
$(MAKE) -f Makefile.generated test
|
||||
|
||||
$(MERGED_ORG): $(ORG_SOURCE_FILES)
|
||||
./merge_org.sh
|
||||
|
||||
doc:$(MERGED_ORG)
|
||||
doc: $(ORG_SOURCE_FILES)
|
||||
./merge_org.sh
|
||||
./create_doc.sh $(MERGED_ORG)
|
||||
rm $(MERGED_ORG)
|
||||
|
||||
|
||||
clean:
|
||||
rm -f qmckl.h test_qmckl_* test_qmckl.c test_qmckl qmckl_*.f90 qmckl_*.c qmckl_*.o qmckl_*.h Makefile.generated libqmckl.so *.html *.fh *.mod
|
||||
|
||||
Makefile.generated: $(MERGED_ORG) Makefile create_makefile.sh
|
||||
Makefile.generated: Makefile create_makefile.sh $(ORG_SOURCE_FILES)
|
||||
./merge_org.sh
|
||||
./create_makefile.sh $(MERGED_ORG)
|
||||
rm $(MERGED_ORG)
|
||||
|
||||
|
@ -6,6 +6,7 @@ for i in README.org \
|
||||
qmckl_context.org \
|
||||
qmckl_distance.org \
|
||||
qmckl_ao.org \
|
||||
qmckl_footer.org \
|
||||
test_qmckl.org
|
||||
do
|
||||
cat $i >> merged_qmckl.org
|
||||
|
@ -1,39 +1,34 @@
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
#+TITLE: QMCkl C header
|
||||
* QMCKL header file
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/lib/js/jquery.stickytableheaders.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
|
||||
This file produces the =qmckl.h= header file, which is to be included
|
||||
when qmckl functions are used.
|
||||
|
||||
This file produces the =qmckl.h= header file, which is included in all
|
||||
other C header files. It is the main entry point to the library.
|
||||
We also create here the =qmckl_f.f90= which is the Fortran interface file.
|
||||
|
||||
We also create the =qmckl_f.f90= which is the Fortran equivalent.
|
||||
** Top of header files :noexport:
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
#ifndef QMCKL_H
|
||||
#define QMCKL_H
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#+END_SRC
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
module qmckl
|
||||
use, intrinsic :: iso_c_binding
|
||||
#+END_SRC
|
||||
#+END_SRC
|
||||
|
||||
* Constants
|
||||
The bottoms of the files are located in the [[qmckl_footer.org]] file.
|
||||
|
||||
** Success/failure
|
||||
** Constants
|
||||
|
||||
*** Success/failure
|
||||
|
||||
These are the codes returned by the functions to indicate success
|
||||
or failure. All such functions should have as a return type =qmckl_exit_code=.
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
#define QMCKL_SUCCESS 0
|
||||
#define QMCKL_FAILURE 1
|
||||
|
||||
@ -42,63 +37,27 @@ typedef int64_t qmckl_context ;
|
||||
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
#+BEGIN_SRC f90 :comments org :tangle qmckl_f.f90
|
||||
integer, parameter :: QMCKL_SUCCESS = 0
|
||||
integer, parameter :: QMCKL_FAILURE = 0
|
||||
#+END_SRC
|
||||
#+END_SRC
|
||||
|
||||
** Precision-related constants
|
||||
*** Precision-related constants
|
||||
|
||||
Controlling numerical precision enables optimizations. Here, the
|
||||
default parameters determining the target numerical precision and
|
||||
range are defined.
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
#define QMCKL_DEFAULT_PRECISION 53
|
||||
#define QMCKL_DEFAULT_RANGE 11
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
#+BEGIN_SRC f90 :comments org :tangle qmckl_f.f90
|
||||
integer, parameter :: QMCKL_DEFAULT_PRECISION = 53
|
||||
integer, parameter :: QMCKL_DEFAULT_RANGE = 11
|
||||
#+END_SRC
|
||||
|
||||
* Header files
|
||||
|
||||
All the functions expoed in the API are defined in the following
|
||||
header files.
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
|
||||
#include "qmckl_memory.h"
|
||||
#include "qmckl_context.h"
|
||||
|
||||
#include "qmckl_distance.h"
|
||||
#include "qmckl_ao.h"
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
! include 'qmckl_memory.fh'
|
||||
include 'qmckl_context.fh'
|
||||
include 'qmckl_distance.fh'
|
||||
include 'qmckl_ao.fh'
|
||||
#+END_SRC
|
||||
|
||||
* End of header
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
#endif
|
||||
#+END_SRC
|
||||
|
||||
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
end module qmckl
|
||||
#+END_SRC
|
||||
|
||||
|
||||
* Include all other org files here :noexport:
|
||||
|
||||
#+INCLUDE: qmckl_memory.org
|
||||
#+INCLUDE: qmckl_context.org
|
||||
#+INCLUDE: qmckl_distance.org
|
||||
#+INCLUDE: qmckl_ao.org
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
|
127
src/qmckl_ao.org
127
src/qmckl_ao.org
@ -1,33 +1,16 @@
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
#+TITLE: Atomic Orbitals
|
||||
* Atomic Orbitals
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/lib/js/jquery.stickytableheaders.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
|
||||
|
||||
This files contains all the routines for the computation of the
|
||||
values, gradients and Laplacian of the atomic basis functions.
|
||||
|
||||
4 files are produced:
|
||||
- a header file : =qmckl_ao.h=
|
||||
3 files are produced:
|
||||
- a source file : =qmckl_ao.f90=
|
||||
- a C test file : =test_qmckl_ao.c=
|
||||
- a Fortran test file : =test_qmckl_ao_f.f90=
|
||||
|
||||
*** Header :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_ao.h
|
||||
#ifndef QMCKL_AO_H
|
||||
#define QMCKL_AO_H
|
||||
#include "qmckl_context.h"
|
||||
#include "qmckl_distance.h"
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_ao.c
|
||||
** Test :noexport:
|
||||
#+BEGIN_SRC C :tangle test_qmckl_ao.c
|
||||
#include <math.h>
|
||||
#include "qmckl.h"
|
||||
#include "munit.h"
|
||||
@ -36,8 +19,7 @@ MunitResult test_qmckl_ao() {
|
||||
context = qmckl_context_create();
|
||||
#+END_SRC
|
||||
|
||||
|
||||
* Polynomials
|
||||
** Polynomials
|
||||
|
||||
\[
|
||||
P_l(\mathbf{r},\mathbf{R}_i) = (x-X_i)^a (y-Y_i)^b (z-Z_i)^c
|
||||
@ -57,14 +39,14 @@ MunitResult test_qmckl_ao() {
|
||||
&& c(c-1) (x-X_i)^a (y-Y_i)^b (z-Z_i)^{c-1}
|
||||
\end{eqnarray*}
|
||||
|
||||
** =qmckl_ao_powers=
|
||||
*** =qmckl_ao_powers=
|
||||
|
||||
Computes all the powers of the =n= input data up to the given
|
||||
maximum value given in input for each of the $n$ points:
|
||||
|
||||
\[ P_{ij} = X_j^i \]
|
||||
|
||||
*** Arguments
|
||||
**** Arguments
|
||||
|
||||
| =context= | input | Global state |
|
||||
| =n= | input | Number of values |
|
||||
@ -73,7 +55,7 @@ MunitResult test_qmckl_ao() {
|
||||
| =P(LDP,n)= | output | Array containing all the powers of =X= |
|
||||
| =LDP= | input | Leading dimension of array =P= |
|
||||
|
||||
*** Requirements
|
||||
**** Requirements
|
||||
|
||||
- =context= is not 0
|
||||
- =n= > 0
|
||||
@ -82,16 +64,16 @@ MunitResult test_qmckl_ao() {
|
||||
- =P= is allocated with at least $n \times \max_i \text{LMAX}_i \times 8$ bytes
|
||||
- =LDP= >= $\max_i$ =LMAX[i]=
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_ao.h
|
||||
**** Header
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_ao_powers(const qmckl_context context,
|
||||
const int64_t n,
|
||||
const double *X, const int32_t *LMAX,
|
||||
const double *P, const int64_t LDP);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.f90
|
||||
**** Source
|
||||
#+BEGIN_SRC f90 :tangle qmckl_ao.f90
|
||||
integer function qmckl_ao_powers_f(context, n, X, LMAX, P, ldp) result(info)
|
||||
implicit none
|
||||
integer*8 , intent(in) :: context
|
||||
@ -125,8 +107,8 @@ integer function qmckl_ao_powers_f(context, n, X, LMAX, P, ldp) result(info)
|
||||
end function qmckl_ao_powers_f
|
||||
#+END_SRC
|
||||
|
||||
*** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.f90
|
||||
**** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :tangle qmckl_ao.f90
|
||||
integer(c_int32_t) function qmckl_ao_powers(context, n, X, LMAX, P, ldp) &
|
||||
bind(C) result(info)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -143,7 +125,7 @@ integer(c_int32_t) function qmckl_ao_powers(context, n, X, LMAX, P, ldp) &
|
||||
end function qmckl_ao_powers
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.fh
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer(c_int32_t) function qmckl_ao_powers(context, n, X, LMAX, P, ldp) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -157,8 +139,8 @@ end function qmckl_ao_powers
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle test_qmckl_ao_f.f90
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC f90 :tangle test_qmckl_ao_f.f90
|
||||
integer(c_int32_t) function test_qmckl_ao_powers(context) bind(C)
|
||||
use qmckl
|
||||
implicit none
|
||||
@ -203,18 +185,18 @@ integer(c_int32_t) function test_qmckl_ao_powers(context) bind(C)
|
||||
end function test_qmckl_ao_powers
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_ao.c
|
||||
#+BEGIN_SRC C :tangle test_qmckl_ao.c
|
||||
int test_qmckl_ao_powers(qmckl_context context);
|
||||
munit_assert_int(0, ==, test_qmckl_ao_powers(context));
|
||||
#+END_SRC
|
||||
|
||||
|
||||
** =qmckl_ao_polynomial_vgl=
|
||||
*** =qmckl_ao_polynomial_vgl=
|
||||
|
||||
Computes the values, gradients and Laplacians at a given point of
|
||||
all polynomials with an angular momentum up to =lmax=.
|
||||
|
||||
*** Arguments
|
||||
**** Arguments
|
||||
|
||||
| =context= | input | Global state |
|
||||
| =X(3)= | input | Array containing the coordinates of the points |
|
||||
@ -226,7 +208,7 @@ munit_assert_int(0, ==, test_qmckl_ao_powers(context));
|
||||
| =VGL(ldv,5)= | output | Value, gradients and Laplacian of the polynomials |
|
||||
| =ldv= | input | Leading dimension of array =VGL= |
|
||||
|
||||
*** Requirements
|
||||
**** Requirements
|
||||
|
||||
- =context= is not 0
|
||||
- =n= > 0
|
||||
@ -239,8 +221,8 @@ munit_assert_int(0, ==, test_qmckl_ao_powers(context));
|
||||
- =VGL= is allocated with at least $n \times 5 \times 8$ bytes
|
||||
- On output, =n= should be equal to (=lmax=+1)(=lmax=+2)(=lmax=+3)/6
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_ao.h
|
||||
**** Header
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_ao_polynomial_vgl(const qmckl_context context,
|
||||
const double *X, const double *R,
|
||||
const int32_t lmax, const int64_t *n,
|
||||
@ -248,8 +230,8 @@ qmckl_exit_code qmckl_ao_polynomial_vgl(const qmckl_context context,
|
||||
const double *VGL, const int64_t ldv);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.f90
|
||||
**** Source
|
||||
#+BEGIN_SRC f90 :tangle qmckl_ao.f90
|
||||
integer function qmckl_ao_polynomial_vgl_f(context, X, R, lmax, n, L, ldl, VGL, ldv) result(info)
|
||||
implicit none
|
||||
integer*8 , intent(in) :: context
|
||||
@ -360,8 +342,8 @@ integer function qmckl_ao_polynomial_vgl_f(context, X, R, lmax, n, L, ldl, VGL,
|
||||
end function qmckl_ao_polynomial_vgl_f
|
||||
#+END_SRC
|
||||
|
||||
*** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.f90
|
||||
**** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :tangle qmckl_ao.f90
|
||||
integer(c_int32_t) function qmckl_ao_polynomial_vgl(context, X, R, lmax, n, L, ldl, VGL, ldv) &
|
||||
bind(C) result(info)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -380,7 +362,7 @@ integer(c_int32_t) function qmckl_ao_polynomial_vgl(context, X, R, lmax, n, L, l
|
||||
end function qmckl_ao_polynomial_vgl
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.fh
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer(c_int32_t) function qmckl_ao_polynomial_vgl(context, X, R, lmax, n, L, ldl, VGL, ldv) &
|
||||
bind(C)
|
||||
@ -396,8 +378,8 @@ end function qmckl_ao_polynomial_vgl
|
||||
end function qmckl_ao_polynomial_vgl
|
||||
end interface
|
||||
#+END_SRC
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle test_qmckl_ao_f.f90
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC f90 :tangle test_qmckl_ao_f.f90
|
||||
integer(c_int32_t) function test_qmckl_ao_polynomial_vgl(context) bind(C)
|
||||
use qmckl
|
||||
implicit none
|
||||
@ -492,17 +474,15 @@ integer(c_int32_t) function test_qmckl_ao_polynomial_vgl(context) bind(C)
|
||||
end function test_qmckl_ao_polynomial_vgl
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_ao.c
|
||||
#+BEGIN_SRC C :tangle test_qmckl_ao.c
|
||||
int test_qmckl_ao_polynomial_vgl(qmckl_context context);
|
||||
munit_assert_int(0, ==, test_qmckl_ao_polynomial_vgl(context));
|
||||
#+END_SRC
|
||||
#+END_SRC
|
||||
|
||||
** Gaussian basis functions
|
||||
|
||||
* Gaussian basis functions
|
||||
|
||||
|
||||
** =qmckl_ao_gaussians_vgl=
|
||||
*** =qmckl_ao_gaussians_vgl=
|
||||
|
||||
Computes the values, gradients and Laplacians at a given point of
|
||||
=n= Gaussian functions centered at the same point:
|
||||
@ -513,7 +493,7 @@ munit_assert_int(0, ==, test_qmckl_ao_polynomial_vgl(context));
|
||||
\[ \nabla_z v_i = -2 a_i (X_z - R_z) v_i \]
|
||||
\[ \Delta v_i = a_i (4 |X-R|^2 a_i - 6) v_i \]
|
||||
|
||||
*** Arguments
|
||||
**** Arguments
|
||||
|
||||
| =context= | input | Global state |
|
||||
| =X(3)= | input | Array containing the coordinates of the points |
|
||||
@ -523,7 +503,7 @@ munit_assert_int(0, ==, test_qmckl_ao_polynomial_vgl(context));
|
||||
| =VGL(ldv,5)= | output | Value, gradients and Laplacian of the Gaussians |
|
||||
| =ldv= | input | Leading dimension of array =VGL= |
|
||||
|
||||
*** Requirements
|
||||
**** Requirements
|
||||
|
||||
- =context= is not 0
|
||||
- =n= > 0
|
||||
@ -534,16 +514,16 @@ munit_assert_int(0, ==, test_qmckl_ao_polynomial_vgl(context));
|
||||
- =A= is allocated with at least $n \times 8$ bytes
|
||||
- =VGL= is allocated with at least $n \times 5 \times 8$ bytes
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_ao.h
|
||||
**** Header
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_ao_gaussians_vgl(const qmckl_context context,
|
||||
const double *X, const double *R,
|
||||
const int64_t *n, const int64_t *A,
|
||||
const double *VGL, const int64_t ldv);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.f90
|
||||
**** Source
|
||||
#+BEGIN_SRC f90 :tangle qmckl_ao.f90
|
||||
integer function qmckl_ao_gaussians_vgl_f(context, X, R, n, A, VGL, ldv) result(info)
|
||||
implicit none
|
||||
integer*8 , intent(in) :: context
|
||||
@ -605,8 +585,8 @@ integer function qmckl_ao_gaussians_vgl_f(context, X, R, n, A, VGL, ldv) result(
|
||||
end function qmckl_ao_gaussians_vgl_f
|
||||
#+END_SRC
|
||||
|
||||
*** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.f90
|
||||
**** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :tangle qmckl_ao.f90
|
||||
integer(c_int32_t) function qmckl_ao_gaussians_vgl(context, X, R, n, A, VGL, ldv) &
|
||||
bind(C) result(info)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -623,7 +603,7 @@ integer(c_int32_t) function qmckl_ao_gaussians_vgl(context, X, R, n, A, VGL, ldv
|
||||
end function qmckl_ao_gaussians_vgl
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_ao.fh
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer(c_int32_t) function qmckl_ao_gaussians_vgl(context, X, R, n, A, VGL, ldv) &
|
||||
bind(C)
|
||||
@ -636,8 +616,8 @@ end function qmckl_ao_gaussians_vgl
|
||||
end function qmckl_ao_gaussians_vgl
|
||||
end interface
|
||||
#+END_SRC
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle test_qmckl_ao_f.f90
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC f90 :tangle test_qmckl_ao_f.f90
|
||||
integer(c_int32_t) function test_qmckl_ao_gaussians_vgl(context) bind(C)
|
||||
use qmckl
|
||||
implicit none
|
||||
@ -704,27 +684,26 @@ integer(c_int32_t) function test_qmckl_ao_gaussians_vgl(context) bind(C)
|
||||
end function test_qmckl_ao_gaussians_vgl
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_ao.c
|
||||
#+BEGIN_SRC C :tangle test_qmckl_ao.c
|
||||
int test_qmckl_ao_gaussians_vgl(qmckl_context context);
|
||||
munit_assert_int(0, ==, test_qmckl_ao_gaussians_vgl(context));
|
||||
#+END_SRC
|
||||
#+END_SRC
|
||||
|
||||
|
||||
* TODO Slater basis functions
|
||||
** TODO Slater basis functions
|
||||
|
||||
* End of files :noexport:
|
||||
** End of files :noexport:
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_ao.h
|
||||
#endif
|
||||
#+END_SRC
|
||||
|
||||
*** Test
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_ao.c
|
||||
**** Test
|
||||
#+BEGIN_SRC C :tangle test_qmckl_ao.c
|
||||
if (qmckl_context_destroy(context) != QMCKL_SUCCESS)
|
||||
return QMCKL_FAILURE;
|
||||
return MUNIT_OK;
|
||||
}
|
||||
|
||||
#+END_SRC
|
||||
|
||||
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
|
@ -1,43 +1,24 @@
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
#+TITLE: Context
|
||||
* Context
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/lib/js/jquery.stickytableheaders.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
|
||||
This file is written in C because it is more natural to express the context in
|
||||
C than in Fortran.
|
||||
|
||||
2 files are produced:
|
||||
- a source file : =qmckl_context.c=
|
||||
- a test file : =test_qmckl_context.c=
|
||||
|
||||
This file is written in C because it is more natural to express the context in
|
||||
C than in Fortran.
|
||||
|
||||
3 files are produced:
|
||||
- a header file : =qmckl_context.h=
|
||||
- a source file : =qmckl_context.c=
|
||||
- a test file : =test_qmckl_context.c=
|
||||
|
||||
*** Header :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#ifndef QMCKL_CONTEXT_H
|
||||
#define QMCKL_CONTEXT_H
|
||||
** Headers :noexport:
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
#include "qmckl.h"
|
||||
#+END_SRC
|
||||
|
||||
*** Source :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
#include "qmckl.h"
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
#+BEGIN_SRC C :tangle test_qmckl_context.c
|
||||
#include "qmckl.h"
|
||||
#include "munit.h"
|
||||
MunitResult test_qmckl_context() {
|
||||
#+END_SRC
|
||||
|
||||
* Context
|
||||
** Context
|
||||
|
||||
The context variable is a handle for the state of the library, and
|
||||
is stored in the following data structure, which can't be seen
|
||||
@ -46,8 +27,15 @@ MunitResult test_qmckl_context() {
|
||||
into a 64-bit signed integer, defined in the =qmckl_context= type.
|
||||
A value of 0 for the context is equivalent to a =NULL= pointer.
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
#+END_SRC
|
||||
|
||||
**** Source
|
||||
|
||||
The tag is used internally to check if the memory domain pointed by
|
||||
a pointer is a valid context.
|
||||
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl_context.c
|
||||
typedef struct qmckl_context_struct {
|
||||
struct qmckl_context_struct * prev;
|
||||
uint32_t tag;
|
||||
@ -59,29 +47,24 @@ typedef struct qmckl_context_struct {
|
||||
#define INVALID_TAG 0xDEADBEEF
|
||||
#+END_SRC
|
||||
|
||||
The tag is used internally to check if the memory domain pointed by
|
||||
a pointer is a valid context.
|
||||
|
||||
*** Test :noexport:
|
||||
We declare here the variables used in the tests.
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
qmckl_context context;
|
||||
qmckl_context new_context;
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC C :tangle test_qmckl_context.c
|
||||
qmckl_context context;
|
||||
qmckl_context new_context;
|
||||
#+END_SRC
|
||||
|
||||
|
||||
** =qmckl_context_check=
|
||||
*** =qmckl_context_check=
|
||||
|
||||
Checks if the domain pointed by the pointer is a valid context.
|
||||
Returns the input =qmckl_context= if the context is valid, 0 otherwise.
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_context qmckl_context_check(const qmckl_context context) ;
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_context qmckl_context_check(const qmckl_context context) {
|
||||
|
||||
if (context == (qmckl_context) 0) return (qmckl_context) 0;
|
||||
@ -94,19 +77,18 @@ qmckl_context qmckl_context_check(const qmckl_context context) {
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
** =qmckl_context_create=
|
||||
*** =qmckl_context_create=
|
||||
|
||||
To create a new context, use =qmckl_context_create()=.
|
||||
- On success, returns a pointer to a context using the =qmckl_context= type
|
||||
- Returns 0 upon failure to allocate the internal data structure
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_context qmckl_context_create();
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_context qmckl_context_create() {
|
||||
|
||||
qmckl_context_struct* context =
|
||||
@ -124,8 +106,8 @@ qmckl_context qmckl_context_create() {
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int64_t) function qmckl_context_create() bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -133,14 +115,14 @@ qmckl_context qmckl_context_create() {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
context = qmckl_context_create();
|
||||
munit_assert_int64( context, !=, (qmckl_context) 0);
|
||||
munit_assert_int64( qmckl_context_check(context), ==, context);
|
||||
context = qmckl_context_create();
|
||||
munit_assert_int64( context, !=, (qmckl_context) 0);
|
||||
munit_assert_int64( qmckl_context_check(context), ==, context);
|
||||
#+END_SRC
|
||||
|
||||
** =qmckl_context_copy=
|
||||
*** =qmckl_context_copy=
|
||||
|
||||
This function makes a shallow copy of the current context.
|
||||
- Copying the 0-valued context returns 0
|
||||
@ -148,13 +130,12 @@ qmckl_context qmckl_context_create() {
|
||||
- Returns 0 upon failure to allocate the internal data structure
|
||||
for the new context
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_context qmckl_context_copy(const qmckl_context context);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_context qmckl_context_copy(const qmckl_context context) {
|
||||
|
||||
const qmckl_context checked_context = qmckl_context_check(context);
|
||||
@ -181,8 +162,8 @@ qmckl_context qmckl_context_copy(const qmckl_context context) {
|
||||
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int64_t) function qmckl_context_copy(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -191,28 +172,27 @@ qmckl_context qmckl_context_copy(const qmckl_context context) {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
new_context = qmckl_context_copy(context);
|
||||
munit_assert_int64(new_context, !=, (qmckl_context) 0);
|
||||
munit_assert_int64(new_context, !=, context);
|
||||
munit_assert_int64(qmckl_context_check(new_context), ==, new_context);
|
||||
new_context = qmckl_context_copy(context);
|
||||
munit_assert_int64(new_context, !=, (qmckl_context) 0);
|
||||
munit_assert_int64(new_context, !=, context);
|
||||
munit_assert_int64(qmckl_context_check(new_context), ==, new_context);
|
||||
#+END_SRC
|
||||
|
||||
** =qmckl_context_previous=
|
||||
*** =qmckl_context_previous=
|
||||
|
||||
Returns the previous context
|
||||
- On success, returns the ancestor of the current context
|
||||
- Returns 0 for the initial context
|
||||
- Returns 0 for the 0-valued context
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_context qmckl_context_previous(const qmckl_context context);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_context qmckl_context_previous(const qmckl_context context) {
|
||||
|
||||
const qmckl_context checked_context = qmckl_context_check(context);
|
||||
@ -225,8 +205,8 @@ qmckl_context qmckl_context_previous(const qmckl_context context) {
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int64_t) function qmckl_context_previous(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -235,15 +215,15 @@ qmckl_context qmckl_context_previous(const qmckl_context context) {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
munit_assert_int64(qmckl_context_previous(new_context), !=, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_previous(new_context), ==, context);
|
||||
munit_assert_int64(qmckl_context_previous(context), ==, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_previous((qmckl_context) 0), ==, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_previous(new_context), !=, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_previous(new_context), ==, context);
|
||||
munit_assert_int64(qmckl_context_previous(context), ==, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_previous((qmckl_context) 0), ==, (qmckl_context) 0);
|
||||
#+END_SRC
|
||||
|
||||
** =qmckl_context_destroy=
|
||||
*** =qmckl_context_destroy=
|
||||
|
||||
Destroys the current context, leaving the ancestors untouched.
|
||||
- Succeeds if the current context is properly destroyed
|
||||
@ -251,13 +231,12 @@ qmckl_context qmckl_context_previous(const qmckl_context context) {
|
||||
- Fails if the 0-valued context is given in argument
|
||||
- Fails if the the pointer is not a valid context
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_context_destroy(qmckl_context context);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_exit_code qmckl_context_destroy(const qmckl_context context) {
|
||||
|
||||
const qmckl_context checked_context = qmckl_context_check(context);
|
||||
@ -272,8 +251,8 @@ qmckl_exit_code qmckl_context_destroy(const qmckl_context context) {
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_destroy(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -282,18 +261,18 @@ qmckl_exit_code qmckl_context_destroy(const qmckl_context context) {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
munit_assert_int64(qmckl_context_check(new_context), ==, new_context);
|
||||
munit_assert_int64(new_context, !=, (qmckl_context) 0);
|
||||
munit_assert_int32(qmckl_context_destroy(new_context), ==, QMCKL_SUCCESS);
|
||||
munit_assert_int64(qmckl_context_check(new_context), !=, new_context);
|
||||
munit_assert_int64(qmckl_context_check(new_context), ==, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_destroy((qmckl_context) 0), ==, QMCKL_FAILURE);
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC C :tangle test_qmckl_context.c
|
||||
munit_assert_int64(qmckl_context_check(new_context), ==, new_context);
|
||||
munit_assert_int64(new_context, !=, (qmckl_context) 0);
|
||||
munit_assert_int32(qmckl_context_destroy(new_context), ==, QMCKL_SUCCESS);
|
||||
munit_assert_int64(qmckl_context_check(new_context), !=, new_context);
|
||||
munit_assert_int64(qmckl_context_check(new_context), ==, (qmckl_context) 0);
|
||||
munit_assert_int64(qmckl_context_destroy((qmckl_context) 0), ==, QMCKL_FAILURE);
|
||||
#+END_SRC
|
||||
|
||||
|
||||
* Precision
|
||||
** Precision
|
||||
|
||||
The following functions set and get the expected required precision
|
||||
and range. =precision= should be an integer between 2 and 53, and
|
||||
@ -303,14 +282,14 @@ qmckl_exit_code qmckl_context_destroy(const qmckl_context context) {
|
||||
The getter functions return the value, as a 32-bit integer.
|
||||
The update functions return =QMCKL_SUCCESS= or =QMCKL_FAILURE=.
|
||||
|
||||
** =qmckl_context_update_precision=
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
*** =qmckl_context_update_precision=
|
||||
Modifies the parameter for the numerical precision in a given context.
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_context_update_precision(const qmckl_context context, const int precision);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_exit_code qmckl_context_update_precision(const qmckl_context context, const int precision) {
|
||||
|
||||
if (precision < 2) return QMCKL_FAILURE;
|
||||
@ -324,8 +303,8 @@ qmckl_exit_code qmckl_context_update_precision(const qmckl_context context, cons
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_update_precision(context, precision) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -335,15 +314,15 @@ qmckl_exit_code qmckl_context_update_precision(const qmckl_context context, cons
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
** =qmckl_context_update_range=
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
**** TODO Tests :noexport:
|
||||
*** =qmckl_context_update_range=
|
||||
Modifies the parameter for the numerical range in a given context.
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_context_update_range(const qmckl_context context, const int range);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_exit_code qmckl_context_update_range(const qmckl_context context, const int range) {
|
||||
|
||||
if (range < 2) return QMCKL_FAILURE;
|
||||
@ -357,8 +336,8 @@ qmckl_exit_code qmckl_context_update_range(const qmckl_context context, const in
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_update_range(context, range) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -368,15 +347,15 @@ qmckl_exit_code qmckl_context_update_range(const qmckl_context context, const in
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
** =qmckl_context_set_precision=
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
**** TODO Tests :noexport:
|
||||
*** =qmckl_context_set_precision=
|
||||
Returns a copy of the context with a different precision parameter.
|
||||
#+BEGIN_SRC C :comments or :tangle qmckl.h
|
||||
qmckl_context qmckl_context_set_precision(const qmckl_context context, const int precision);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_context qmckl_context_set_precision(const qmckl_context context, const int precision) {
|
||||
qmckl_context new_context = qmckl_context_copy(context);
|
||||
if (new_context == 0) return 0;
|
||||
@ -387,8 +366,8 @@ qmckl_context qmckl_context_set_precision(const qmckl_context context, const int
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_set_precision(context, precision) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -398,15 +377,15 @@ qmckl_context qmckl_context_set_precision(const qmckl_context context, const int
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
** =qmckl_context_set_range=
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
**** TODO Tests :noexport:
|
||||
*** =qmckl_context_set_range=
|
||||
Returns a copy of the context with a different precision parameter.
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_context qmckl_context_set_range(const qmckl_context context, const int range);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
qmckl_context qmckl_context_set_range(const qmckl_context context, const int range) {
|
||||
qmckl_context new_context = qmckl_context_copy(context);
|
||||
if (new_context == 0) return 0;
|
||||
@ -417,8 +396,8 @@ qmckl_context qmckl_context_set_range(const qmckl_context context, const int ran
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_set_range(context, range) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -428,24 +407,24 @@ qmckl_context qmckl_context_set_range(const qmckl_context context, const int ran
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
**** TODO Tests :noexport:
|
||||
|
||||
** =qmckl_context_get_precision=
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
*** =qmckl_context_get_precision=
|
||||
Returns the value of the numerical precision in the context
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
int32_t qmckl_context_get_precision(const qmckl_context context);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
int qmckl_context_get_precision(const qmckl_context context) {
|
||||
const qmckl_context_struct* ctx = (qmckl_context_struct*) context;
|
||||
return ctx->precision;
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_get_precision(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -454,23 +433,23 @@ int qmckl_context_get_precision(const qmckl_context context) {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
** =qmckl_context_get_range=
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
**** TODO Tests :noexport:
|
||||
*** =qmckl_context_get_range=
|
||||
Returns the value of the numerical range in the context
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
int32_t qmckl_context_get_range(const qmckl_context context);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
int qmckl_context_get_range(const qmckl_context context) {
|
||||
const qmckl_context_struct* ctx = (qmckl_context_struct*) context;
|
||||
return ctx->range;
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer (c_int32_t) function qmckl_context_get_range(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -479,25 +458,24 @@ int qmckl_context_get_range(const qmckl_context context) {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
**** TODO Tests :noexport:
|
||||
|
||||
** =qmckl_context_get_epsilon=
|
||||
*** =qmckl_context_get_epsilon=
|
||||
Returns $\epsilon = 2 / \log_{10} 2^{n-1}$ where =n= is the precision
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
double qmckl_context_get_epsilon(const qmckl_context context);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.c
|
||||
**** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_context.c
|
||||
double qmckl_context_get_epsilon(const qmckl_context context) {
|
||||
const qmckl_context_struct* ctx = (qmckl_context_struct*) context;
|
||||
return 1.0 / ((double) ((int64_t) 1 << (ctx->precision-1)));
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
*** Fortran interface
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_context.fh
|
||||
**** Fortran interface
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
real (c_double) function qmckl_context_get_epsilon(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -506,24 +484,23 @@ double qmckl_context_get_epsilon(const qmckl_context context) {
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** TODO Tests :noexport:
|
||||
**** TODO Tests :noexport:
|
||||
|
||||
* Info about the molecular system
|
||||
** Info about the molecular system
|
||||
|
||||
** TODO =qmckl_context_set_nucl_coord=
|
||||
** TODO =qmckl_context_set_nucl_charge=
|
||||
** TODO =qmckl_context_set_elec_num=
|
||||
*** TODO =qmckl_context_set_nucl_coord=
|
||||
*** TODO =qmckl_context_set_nucl_charge=
|
||||
*** TODO =qmckl_context_set_elec_num=
|
||||
|
||||
* End of files :noexport:
|
||||
** End of files :noexport:
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_context.h
|
||||
#endif
|
||||
#+END_SRC
|
||||
|
||||
*** Test
|
||||
**** Test
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_context.c
|
||||
return MUNIT_OK;
|
||||
return MUNIT_OK;
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
|
||||
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
|
@ -1,30 +1,13 @@
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
#+TITLE: Computation of distances
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/lib/js/jquery.stickytableheaders.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
|
||||
* Computation of distances
|
||||
|
||||
Function for the computation of distances between particles.
|
||||
|
||||
4 files are produced:
|
||||
- a header file : =qmckl_distance.h=
|
||||
3 files are produced:
|
||||
- a source file : =qmckl_distance.f90=
|
||||
- a C test file : =test_qmckl_distance.c=
|
||||
- a Fortran test file : =test_qmckl_distance_f.f90=
|
||||
|
||||
*** Header :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_distance.h
|
||||
#ifndef QMCKL_DISTANCE_H
|
||||
#define QMCKL_DISTANCE_H
|
||||
#include "qmckl_context.h"
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
*** Headers :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_distance.c
|
||||
#include <math.h>
|
||||
#include "qmckl.h"
|
||||
@ -36,9 +19,9 @@ MunitResult test_qmckl_distance() {
|
||||
#+END_SRC
|
||||
|
||||
|
||||
* Squared distance
|
||||
** Squared distance
|
||||
|
||||
** =qmckl_distance_sq=
|
||||
*** =qmckl_distance_sq=
|
||||
|
||||
Computes the matrix of the squared distances between all pairs of
|
||||
points in two sets, one point within each set:
|
||||
@ -46,7 +29,7 @@ MunitResult test_qmckl_distance() {
|
||||
C_{ij} = \sum_{k=1}^3 (A_{k,i}-B_{k,j})^2
|
||||
\]
|
||||
|
||||
*** Arguments
|
||||
**** Arguments
|
||||
|
||||
| =context= | input | Global state |
|
||||
| =transa= | input | Array =A= is =N=: Normal, =T=: Transposed |
|
||||
@ -60,7 +43,7 @@ MunitResult test_qmckl_distance() {
|
||||
| =C(ldc,n)= | output | Array containing the $m \times n$ matrix $C$ |
|
||||
| =ldc= | input | Leading dimension of array =C= |
|
||||
|
||||
*** Requirements
|
||||
**** Requirements
|
||||
|
||||
- =context= is not 0
|
||||
- =m= > 0
|
||||
@ -74,13 +57,12 @@ MunitResult test_qmckl_distance() {
|
||||
- =B= is allocated with at least $3 \times n \times 8$ bytes
|
||||
- =C= is allocated with at least $m \times n \times 8$ bytes
|
||||
|
||||
*** Performance
|
||||
**** Performance
|
||||
|
||||
This function might be more efficient when =A= and =B= are
|
||||
transposed.
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_distance.h
|
||||
#+BEGIN_SRC C :comments org :tangle qmckl.h
|
||||
qmckl_exit_code qmckl_distance_sq(const qmckl_context context,
|
||||
const char transa, const char transb,
|
||||
const int64_t m, const int64_t n,
|
||||
@ -89,8 +71,8 @@ qmckl_exit_code qmckl_distance_sq(const qmckl_context context,
|
||||
const double *C, const int64_t ldc);
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_distance.f90
|
||||
**** Source
|
||||
#+BEGIN_SRC f90 :tangle qmckl_distance.f90
|
||||
integer function qmckl_distance_sq_f(context, transa, transb, m, n, A, LDA, B, LDB, C, LDC) result(info)
|
||||
implicit none
|
||||
integer*8 , intent(in) :: context
|
||||
@ -217,8 +199,8 @@ integer function qmckl_distance_sq_f(context, transa, transb, m, n, A, LDA, B, L
|
||||
end function qmckl_distance_sq_f
|
||||
#+END_SRC
|
||||
|
||||
*** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_distance.f90
|
||||
**** C interface :noexport:
|
||||
#+BEGIN_SRC f90 :tangle qmckl_distance.f90
|
||||
integer(c_int32_t) function qmckl_distance_sq(context, transa, transb, m, n, A, LDA, B, LDB, C, LDC) &
|
||||
bind(C) result(info)
|
||||
use, intrinsic :: iso_c_binding
|
||||
@ -238,7 +220,7 @@ integer(c_int32_t) function qmckl_distance_sq(context, transa, transb, m, n, A,
|
||||
end function qmckl_distance_sq
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :comments link :tangle qmckl_distance.fh
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
integer(c_int32_t) function qmckl_distance_sq(context, transa, transb, m, n, A, LDA, B, LDB, C, LDC) &
|
||||
bind(C)
|
||||
@ -257,12 +239,11 @@ end function qmckl_distance_sq
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC f90 :comments link :tangle test_qmckl_distance_f.f90
|
||||
**** Test :noexport:
|
||||
#+BEGIN_SRC f90 :tangle test_qmckl_distance_f.f90
|
||||
integer(c_int32_t) function test_qmckl_distance_sq(context) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
use qmckl
|
||||
implicit none
|
||||
include 'qmckl_distance.fh'
|
||||
integer(c_int64_t), intent(in), value :: context
|
||||
|
||||
double precision, allocatable :: A(:,:), B(:,:), C(:,:)
|
||||
@ -361,14 +342,8 @@ end function test_qmckl_distance_sq
|
||||
int test_qmckl_distance_sq(qmckl_context context);
|
||||
munit_assert_int(0, ==, test_qmckl_distance_sq(context));
|
||||
#+END_SRC
|
||||
* End of files :noexport:
|
||||
** End of files :noexport:
|
||||
|
||||
*** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_distance.h
|
||||
#endif
|
||||
#+END_SRC
|
||||
|
||||
*** Test
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_distance.c
|
||||
if (qmckl_context_destroy(context) != QMCKL_SUCCESS)
|
||||
return QMCKL_FAILURE;
|
||||
@ -376,3 +351,7 @@ munit_assert_int(0, ==, test_qmckl_distance_sq(context));
|
||||
}
|
||||
|
||||
#+END_SRC
|
||||
|
||||
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
|
13
src/qmckl_footer.org
Normal file
13
src/qmckl_footer.org
Normal file
@ -0,0 +1,13 @@
|
||||
* End of header files :noexport:
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
#endif
|
||||
#+END_SRC
|
||||
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
end module qmckl
|
||||
#+END_SRC
|
||||
|
||||
|
||||
# -*- mode: org -*-
|
||||
|
@ -1,52 +1,44 @@
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
#+TITLE: Memory management
|
||||
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/htmlize.css"/>
|
||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://www.pirilampo.org/styles/readtheorg/css/readtheorg.css"/>
|
||||
#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
||||
#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/lib/js/jquery.stickytableheaders.js"></script>
|
||||
#+HTML_HEAD: <script type="text/javascript" src="http://www.pirilampo.org/styles/readtheorg/js/readtheorg.js"></script>
|
||||
|
||||
* Memory management
|
||||
|
||||
We override the allocation functions to enable the possibility of
|
||||
optimized libraries to fine-tune the memory allocation.
|
||||
|
||||
3 files are produced:
|
||||
- a header file : =qmckl_memory.h=
|
||||
2 files are produced:
|
||||
- a source file : =qmckl_memory.c=
|
||||
- a test file : =test_qmckl_memory.c=
|
||||
|
||||
** Header :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.h
|
||||
#ifndef QMCKL_MEMORY_H
|
||||
#define QMCKL_MEMORY_H
|
||||
** Headers :noexport:
|
||||
#+BEGIN_SRC C :tangle qmckl_memory.c
|
||||
#include "qmckl.h"
|
||||
#+END_SRC
|
||||
|
||||
** Source :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.c
|
||||
#include <stdlib.h>
|
||||
#include "qmckl_memory.h"
|
||||
#+END_SRC
|
||||
|
||||
** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_memory.c
|
||||
#+BEGIN_SRC C :tangle test_qmckl_memory.c
|
||||
#include "qmckl.h"
|
||||
#include "munit.h"
|
||||
MunitResult test_qmckl_memory() {
|
||||
#+END_SRC
|
||||
|
||||
* =qmckl_malloc=
|
||||
Analogous of =malloc, but passing a context and a signed 64-bit integers as argument.=
|
||||
** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.h
|
||||
** =qmckl_malloc=
|
||||
|
||||
Memory allocation function, letting the library choose how the
|
||||
memory will be allocated, and a pointer is returned to the user.
|
||||
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
void* qmckl_malloc(const qmckl_context ctx, const size_t size);
|
||||
#+END_SRC
|
||||
|
||||
** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.c
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
type (c_ptr) function qmckl_malloc (context, size) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
integer (c_int64_t), intent(in), value :: context
|
||||
integer (c_int64_t), intent(in), value :: size
|
||||
end function qmckl_malloc
|
||||
end interface
|
||||
#+END_SRC
|
||||
|
||||
*** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_memory.c
|
||||
void* qmckl_malloc(const qmckl_context ctx, const size_t size) {
|
||||
if (ctx == (qmckl_context) 0) {
|
||||
/* Avoids unused parameter error */
|
||||
@ -57,47 +49,53 @@ void* qmckl_malloc(const qmckl_context ctx, const size_t size) {
|
||||
|
||||
#+END_SRC
|
||||
|
||||
** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_memory.c
|
||||
int *a;
|
||||
a = (int*) qmckl_malloc( (qmckl_context) 1, 3*sizeof(int));
|
||||
a[0] = 1;
|
||||
a[1] = 2;
|
||||
a[2] = 3;
|
||||
munit_assert_int(a[0], ==, 1);
|
||||
munit_assert_int(a[1], ==, 2);
|
||||
munit_assert_int(a[2], ==, 3);
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC C :tangle test_qmckl_memory.c
|
||||
int *a;
|
||||
a = (int*) qmckl_malloc( (qmckl_context) 1, 3*sizeof(int));
|
||||
a[0] = 1;
|
||||
a[1] = 2;
|
||||
a[2] = 3;
|
||||
munit_assert_int(a[0], ==, 1);
|
||||
munit_assert_int(a[1], ==, 2);
|
||||
munit_assert_int(a[2], ==, 3);
|
||||
#+END_SRC
|
||||
|
||||
* =qmckl_free=
|
||||
** =qmckl_free=
|
||||
|
||||
** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.h
|
||||
#+BEGIN_SRC C :tangle qmckl.h
|
||||
void qmckl_free(void *ptr);
|
||||
#+END_SRC
|
||||
|
||||
** Source
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.c
|
||||
#+BEGIN_SRC f90 :tangle qmckl_f.f90
|
||||
interface
|
||||
subroutine qmckl_free (ptr) bind(C)
|
||||
use, intrinsic :: iso_c_binding
|
||||
type (c_ptr), intent(in), value :: ptr
|
||||
end subroutine qmckl_free
|
||||
end interface
|
||||
#+END_SRC
|
||||
*** Source
|
||||
#+BEGIN_SRC C :tangle qmckl_memory.c
|
||||
void qmckl_free(void *ptr) {
|
||||
free(ptr);
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
** Test :noexport:
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_memory.c
|
||||
qmckl_free(a);
|
||||
*** Test :noexport:
|
||||
#+BEGIN_SRC C :tangle test_qmckl_memory.c
|
||||
qmckl_free(a);
|
||||
#+END_SRC
|
||||
|
||||
* End of files :noexport:
|
||||
** End of files :noexport:
|
||||
|
||||
** Header
|
||||
#+BEGIN_SRC C :comments link :tangle qmckl_memory.h
|
||||
#endif
|
||||
#+END_SRC
|
||||
|
||||
** Test
|
||||
#+BEGIN_SRC C :comments link :tangle test_qmckl_memory.c
|
||||
*** Test
|
||||
#+BEGIN_SRC C :comments org :tangle test_qmckl_memory.c
|
||||
return MUNIT_OK;
|
||||
}
|
||||
|
||||
#+END_SRC
|
||||
|
||||
|
||||
# -*- mode: org -*-
|
||||
# vim: syntax=c
|
||||
|
Loading…
Reference in New Issue
Block a user