diff --git a/README.html b/README.html index fddef91..e00a566 100644 --- a/README.html +++ b/README.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + QMCkl source code documentation @@ -338,7 +338,7 @@ for the JavaScript code in this tag.
  • Molecular Orbitals
  • Slater Determinant
  • Sherman-Morrison-Woodbury
  • -
  • Jastrow Factor
  • +
  • CHAMP Jastrow Factor
  • Local Energy
  • TREXIO I/O library
  • Data for Tests
  • @@ -375,7 +375,7 @@ and bug reports should be submitted at

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl.html b/qmckl.html index 0d35428..a88a514 100644 --- a/qmckl.html +++ b/qmckl.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Introduction @@ -346,36 +346,36 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Installing QMCkl

    +
    +

    1 Installing QMCkl

    The latest version fo QMCkl can be downloaded @@ -384,8 +384,8 @@ The latest version fo QMCkl can be downloaded

    -
    -

    1.1 Installing from the released tarball (for end users)

    +
    +

    1.1 Installing from the released tarball (for end users)

    QMCkl is built with GNU Autotools, so the usual @@ -400,8 +400,8 @@ options are defined using CFLAGS and FCFLAGS.

    -
    -

    1.2 Installing from the source repository (for developers)

    +
    +

    1.2 Installing from the source repository (for developers)

    To compile from the source repository, additional dependencies are @@ -422,8 +422,8 @@ to be executed first.

    -
    -

    2 Using QMCkl

    +
    +

    2 Using QMCkl

    The qmckl.h header file installed in the ${prefix}/include directory @@ -452,12 +452,12 @@ Both files are located in the include/ directory.

    -
    -

    3 Developing in QMCkl

    +
    +

    3 Developing in QMCkl

    -
    -

    3.1 Literate programming

    +
    +

    3.1 Literate programming

    In a traditional source code, most of the lines of source files of a program @@ -507,8 +507,8 @@ tarball contains the generated source code.

    -
    -

    3.2 Source code editing

    +
    +

    3.2 Source code editing

    For a tutorial on literate programming with org-mode, follow this link. @@ -539,8 +539,8 @@ org-mode.

    -
    -

    3.3 Choice of the programming language

    +
    +

    3.3 Choice of the programming language

    Most of the codes of the TREX CoE are written in Fortran with some @@ -604,8 +604,8 @@ For more guidelines on using Fortran to generate a C interface, see

    -
    -

    3.4 Coding rules

    +
    +

    3.4 Coding rules

    The authors should follow the recommendations of the C99 @@ -625,8 +625,8 @@ make cppcheck ; cat cppcheck.out

    -
    -

    3.5 Design of the library

    +
    +

    3.5 Design of the library

    The proposed API should allow the library to: deal with memory transfers @@ -637,8 +637,8 @@ functions (see below).

    -
    -

    3.6 Naming conventions

    +
    +

    3.6 Naming conventions

    To avoid namespace collisions, we use qmckl_ as a prefix for all exported @@ -659,8 +659,8 @@ form is allowed.

    -
    -

    3.7 Application programming interface

    +
    +

    3.7 Application programming interface

    In the C language, the number of bits used by the integer types can change @@ -692,15 +692,15 @@ bindings in other languages in other repositories.

    -
    -

    3.8 Global state

    +
    +

    3.8 Global state

    Global variables should be avoided in the library, because it is possible that one single program needs to use multiple instances of the library. To solve this problem we propose to use a pointer to a context variable, built by the library with the -qmckl_context_create function. The =context= contains the global +qmckl_context_create function. The =context= contains the global state of the library, and is used as the first argument of many QMCkl functions.

    @@ -714,8 +714,8 @@ the state is done by setters and getters, prefixed by
    -
    -

    3.9 Headers

    +
    +

    3.9 Headers

    A single qmckl.h header to be distributed by the library @@ -803,8 +803,8 @@ and the types definitions should be written in the *fh_type.f90 fil

    -
    -

    3.10 Low-level functions

    +
    +

    3.10 Low-level functions

    Low-level functions are very simple functions which are leaves of @@ -813,14 +813,14 @@ the function call tree (they don't call any other QMCkl function).

    These functions are pure, and unaware of the QMCkl -context. They are not allowed to allocate/deallocate memory, and +context. They are not allowed to allocate/deallocate memory, and if they need temporary memory it should be provided in input.

    -
    -

    3.11 High-level functions

    +
    +

    3.11 High-level functions

    High-level functions are at the top of the function call tree. @@ -832,8 +832,8 @@ temporary storage, to simplify the use of accelerators.

    -
    -

    3.12 Numerical precision

    +
    +

    3.12 Numerical precision

    The minimal number of bits of precision required for a function @@ -841,7 +841,7 @@ should be given as an input of low-level computational functions. This input will be used to define the values of the different thresholds that might be used to avoid computing unnecessary noise. High-level functions will use the precision -specified in the context variable. +specified in the context variable.

    @@ -909,8 +909,8 @@ following points :

    -
    -

    3.13 Algorithms

    +
    +

    3.13 Algorithms

    Reducing the scaling of an algorithm usually implies also reducing @@ -926,7 +926,7 @@ implemented adapted to different problem sizes.

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_ao.html b/qmckl_ao.html index 7e60501..648c127 100644 --- a/qmckl_ao.html +++ b/qmckl_ao.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Atomic Orbitals @@ -346,61 +346,61 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Introduction

    +
    +

    1 Introduction

    The atomic basis set is defined as a list of shells. Each shell \(s\) is @@ -463,19 +463,19 @@ gradients and Laplacian of the atomic basis functions.

    -
    -

    2 Context

    +
    +

    2 Context

    -
    -

    2.1 Constant data

    +
    +

    2.1 Constant data

    The following arrays are stored in the context, and need to be set when initializing the library:

    - +
    @@ -709,7 +709,7 @@ calling the functions:

    -
    qmckl_exit_code qmckl_set_ao_basis_$V$ ( qmckl_context context,
    +
    qmckl_exit_code qmckl_set_ao_basis_$V$ ( qmckl_context context,
                                              const $type_of_V$ $V$);
     
     qmckl_exit_code qmckl_get_ao_basis_$V$ ( const qmckl_context context,
    @@ -746,7 +746,7 @@ For array variables, use the rule:
     

    -
    qmckl_exit_code qmckl_set_ao_basis_$V$ ( qmckl_context context,
    +
    qmckl_exit_code qmckl_set_ao_basis_$V$ ( qmckl_context context,
                                              const $type_of_V$ $V$,
                                              const int64_t size_max);
     
    @@ -784,17 +784,17 @@ For array variables, use the rule:
     
    -
    -

    2.1.1 Initialization functions

    +
    +

    2.1.1 Initialization functions

    size_max is the dimension of the input array, which should be -equal of larger than the value given in the table of section 2. +equal of larger than the value given in the table of section 2.

    -
    -
    2.1.1.1 C interface
    +
    +
    2.1.1.1 C interface

    To set the basis set, all the following functions need to be @@ -918,8 +918,8 @@ called.

    -
    -
    2.1.1.2 Fortran interface
    +
    +
    2.1.1.2 Fortran interface
    interface
    @@ -1102,17 +1102,17 @@ called.
     
    -
    -

    2.1.2 Access functions

    +
    +

    2.1.2 Access functions

    size_max is the dimension of the input array, which should be -equal of larger than the value given in the table of section 2. +equal of larger than the value given in the table of section 2.

    -
    -
    2.1.2.1 C interface
    +
    +
    2.1.2.1 C interface
    qmckl_exit_code
    @@ -1234,8 +1234,8 @@ function returns true.
     
    -
    -
    2.1.2.2 Fortran interface
    +
    +
    2.1.2.2 Fortran interface
    interface
    @@ -1419,8 +1419,8 @@ function returns true.
     
    -
    -

    2.2 Computed data

    +
    +

    2.2 Computed data

    The following data is computed as described in the next sections: @@ -1495,8 +1495,8 @@ The following data is computed as described in the next sections:

    -
    -

    2.2.1 After initialization

    +
    +

    2.2.1 After initialization

    When the basis set is completely entered, extra data structures may be @@ -1510,8 +1510,8 @@ the context.

    -
    -

    2.2.2 TODO HPC-specific data structures

    +
    +

    2.2.2 TODO HPC-specific data structures

    For faster access, we provide extra arrays for the shell information as: @@ -1541,8 +1541,8 @@ which is a matrix-vector product.

    -
    -

    2.2.3 Access functions

    +
    +

    2.2.3 Access functions

    qmckl_exit_code
    @@ -1555,7 +1555,7 @@ which is a matrix-vector product.
     

    Returns the array of values, gradients an Laplacian of primitive basis functions evaluated at the current coordinates. -See section 3.2. +See section 3.2.

    @@ -1568,7 +1568,7 @@ See section 3.2.

    Returns the array of values, gradients an Laplacian of contracted shells -evaluated at the current coordinates. See section 3.3. +evaluated at the current coordinates. See section 3.3.

    @@ -1582,7 +1582,7 @@ evaluated at the current coordinates. See section 3.3.

    Returns the array of values, gradients an Laplacian of the atomic orbitals evaluated at the current coordinates. -See section 5. +See section 5.

    @@ -1607,7 +1607,7 @@ Uses the given array to compute the VGL.

    Returns the array of values of the atomic orbitals evaluated at -the current coordinates. See section 5. +the current coordinates. See section 5.

    @@ -1626,12 +1626,12 @@ Uses the given array to compute the value.

    -
    -

    3 Radial part

    +
    +

    3 Radial part

    -
    -

    3.1 General functions for Gaussian basis functions

    +
    +

    3.1 General functions for Gaussian basis functions

    qmckl_ao_gaussian_vgl computes the values, gradients and @@ -1802,10 +1802,10 @@ Requirements:

    -
    -

    3.2 Computation of primitives

    +
    +

    3.2 Computation of primitives

    - +
    @@ -1964,10 +1964,10 @@ Requirements: -
    -

    3.3 Computation of shells

    +
    +

    3.3 Computation of shells

    -
    +
    @@ -2219,8 +2219,8 @@ Requirements: -
    -

    4 Polynomial part

    +
    +

    4 Polynomial part

    Going from the atomic basis set to AOs implies a systematic @@ -2240,8 +2240,8 @@ f & : & f_{xxx}, f_{xxy}, f_{xxz}, f_{xyy}, f_{xyz}, f_{xzz}, f_{yyy}, f_{yyz}, \end{eqnarray}

    -
    -

    4.1 General functions for Powers of \(x-X_i\)

    +
    +

    4.1 General functions for Powers of \(x-X_i\)

    The qmckl_ao_power function computes all the powers of the n @@ -2253,7 +2253,7 @@ the \(n\) points: \[ P_{ik} = X_i^k \]

    -
    +
    @@ -2391,8 +2391,8 @@ Requirements: -
    -

    4.2 General functions for Value, Gradient and Laplacian of a polynomial

    +
    +

    4.2 General functions for Value, Gradient and Laplacian of a polynomial

    A polynomial is centered on a nucleus \(\mathbf{R}_i\) @@ -2437,7 +2437,7 @@ Laplacians at a given point in space, of all polynomials with an angular momentum up to lmax.

    -
    +
    @@ -3216,18 +3216,18 @@ For example, with a=0, b=2 and c=1 the string is "yyz" -
    -

    5 Combining radial and polynomial parts

    +
    +

    5 Combining radial and polynomial parts

    -
    -

    5.1 Values only

    +
    +

    5.1 Values only

    -
    -

    5.1.1 Unoptimized version

    +
    +

    5.1.1 Unoptimized version

    -
    +
    @@ -3463,10 +3463,10 @@ For example, with a=0, b=2 and c=1 the string is "yyz" -
    -

    5.1.2 HPC version

    +
    +

    5.1.2 HPC version

    -
    +
    @@ -3624,8 +3624,8 @@ For example, with a=0, b=2 and c=1 the string is "yyz" -
    -

    5.1.3 Interfaces

    +
    +

    5.1.3 Interfaces

    qmckl_exit_code qmckl_compute_ao_value_doc (
    @@ -3674,14 +3674,14 @@ For example, with a=0, b=2 and c=1 the string is "yyz"
     
    -
    -

    5.2 Value, gradients, Laplacian

    +
    +

    5.2 Value, gradients, Laplacian

    -
    -

    5.2.1 Reference version

    +
    +

    5.2.1 Reference version

    -
    +
    @@ -3946,10 +3946,10 @@ For example, with a=0, b=2 and c=1 the string is "yyz" -
    -

    5.2.2 HPC version

    +
    +

    5.2.2 HPC version

    -
    +
    @@ -4108,8 +4108,8 @@ For example, with a=0, b=2 and c=1 the string is "yyz" -
    -

    5.2.3 Interfaces

    +
    +

    5.2.3 Interfaces

    qmckl_exit_code qmckl_compute_ao_vgl_doc (
    @@ -4161,7 +4161,7 @@ For example, with a=0, b=2 and c=1 the string is "yyz"
     

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_blas.html b/qmckl_blas.html index 56f1160..80619f7 100644 --- a/qmckl_blas.html +++ b/qmckl_blas.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + BLAS functions @@ -346,55 +346,55 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    -

    -
    +
    +

    -

    +

    Basic linear algebra data types and operations are described in this file. The data types are private, so that HPC implementations can use @@ -408,12 +408,12 @@ are not intended to be passed to external codes.

    -
    -

    1 Data types

    +
    +

    1 Data types

    -
    -

    1.1 Vector

    +
    +

    1.1 Vector

    @@ -467,8 +467,8 @@ Allocates a new vector. If the allocation failed the size is zero. -
    -

    1.2 Matrix

    +
    +

    1.2 Matrix

    @@ -528,8 +528,8 @@ Allocates a new matrix. If the allocation failed the sizes are zero. -
    -

    1.3 Tensor

    +
    +

    1.3 Tensor

    @@ -596,16 +596,16 @@ is zero. -
    -

    1.4 Reshaping

    +
    +

    1.4 Reshaping

    Reshaping occurs in-place and the pointer to the data is copied.

    -
    -

    1.4.1 Vector -> Matrix

    +
    +

    1.4.1 Vector -> Matrix

    qmckl_matrix
    @@ -621,8 +621,8 @@ Reshapes a vector into a matrix.
     
    -
    -

    1.4.2 Vector -> Tensor

    +
    +

    1.4.2 Vector -> Tensor

    qmckl_tensor
    @@ -638,8 +638,8 @@ Reshapes a vector into a tensor.
     
    -
    -

    1.4.3 Matrix -> Vector

    +
    +

    1.4.3 Matrix -> Vector

    qmckl_vector
    @@ -653,8 +653,8 @@ Reshapes a matrix into a vector.
     
    -
    -

    1.4.4 Matrix -> Tensor

    +
    +

    1.4.4 Matrix -> Tensor

    qmckl_tensor
    @@ -670,8 +670,8 @@ Reshapes a matrix into a tensor.
     
    -
    -

    1.4.5 Tensor -> Vector

    +
    +

    1.4.5 Tensor -> Vector

    qmckl_vector
    @@ -685,8 +685,8 @@ Reshapes a tensor into a vector.
     
    -
    -

    1.4.6 Tensor -> Matrix

    +
    +

    1.4.6 Tensor -> Matrix

    qmckl_matrix
    @@ -703,8 +703,8 @@ Reshapes a tensor into a vector.
     
    -
    -

    1.5 Access macros

    +
    +

    1.5 Access macros

    Macros are provided to ease the access to vectors, matrices and @@ -728,12 +728,12 @@ For example:

    -
    -

    1.6 Set all elements

    +
    +

    1.6 Set all elements

    -
    -

    1.6.1 Vector

    +
    +

    1.6.1 Vector

    qmckl_vector
    @@ -743,8 +743,8 @@ For example:
     
    -
    -

    1.6.2 Matrix

    +
    +

    1.6.2 Matrix

    qmckl_matrix
    @@ -754,8 +754,8 @@ For example:
     
    -
    -

    1.6.3 Tensor

    +
    +

    1.6.3 Tensor

    qmckl_tensor
    @@ -766,8 +766,8 @@ For example:
     
    -
    -

    1.7 Copy to/from to double*

    +
    +

    1.7 Copy to/from to double*

    qmckl_exit_code
    @@ -849,8 +849,8 @@ Converts a double* to a tensor.
     
    -
    -

    1.8 Allocate and copy to double*

    +
    +

    1.8 Allocate and copy to double*

    double* qmckl_alloc_double_of_vector(const qmckl_context context,
    @@ -874,12 +874,12 @@ Converts a double* to a tensor.
     
    -
    -

    2 Matrix operations

    +
    +

    2 Matrix operations

    -
    -

    2.1 qmckl_dgemm

    +
    +

    2.1 qmckl_dgemm

    Matrix multiplication with a BLAS interface: @@ -891,7 +891,7 @@ Matrix multiplication with a BLAS interface: \]

    -
    +
    @@ -1050,8 +1050,8 @@ Requirements: -
    -

    2.2 qmckl_dgemm_safe

    +
    +

    2.2 qmckl_dgemm_safe

    "Size-safe" proxy function with the same functionality as qmckl_dgemm @@ -1060,7 +1060,7 @@ are required primarily for the Python API, where compatibility with NumPy arrays implies that sizes of the input and output arrays are provided.

    -
    +
    @@ -1246,8 +1246,8 @@ Requirements: -
    -

    2.3 qmckl_matmul

    +
    +

    2.3 qmckl_matmul

    Matrix multiplication using the qmckl_matrix data type: @@ -1259,7 +1259,7 @@ Matrix multiplication using the qmckl_matrix data type: \]

    -
    +
    @@ -1353,8 +1353,8 @@ Matrix multiplication using the qmckl_matrix data type: -
    -

    2.4 qmckl_adjugate

    +
    +

    2.4 qmckl_adjugate

    Given a matrix \(\mathbf{A}\), the adjugate matrix @@ -1372,7 +1372,7 @@ of \(\mathbf{A}\). See also: https://en.wikipedia.org/wiki/Adjugate_matrix

    -
    +
    @@ -1568,8 +1568,8 @@ determinant with the inverse: -
    -

    2.5 qmckl_adjugate_safe

    +
    +

    2.5 qmckl_adjugate_safe

    "Size-safe" proxy function with the same functionality as qmckl_adjugate @@ -1579,7 +1579,7 @@ NumPy arrays implies that sizes of the input and output arrays are provided.

    -
    +
    @@ -1701,13 +1701,13 @@ LAPACK library.

    -
    -

    2.5.1 C interface

    +
    +

    2.5.1 C interface

    -
    -

    2.6 qmckl_transpose

    +
    +

    2.6 qmckl_transpose

    Transposes a matrix: \(A^\dagger_{ji} = A_{ij}\). @@ -1770,7 +1770,7 @@ Transposes a matrix: \(A^\dagger_{ji} = A_{ij}\).

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_context.html b/qmckl_context.html index 0ede2f0..75c12c5 100644 --- a/qmckl_context.html +++ b/qmckl_context.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Context @@ -324,21 +324,21 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Context handling

    +
    +

    1 Context handling

    The context variable is a handle for the state of the library, @@ -351,7 +351,7 @@ A value of QMCKL_NULL_CONTEXT for the context is equivalent to a

    -
    typedef int64_t qmckl_context ;
    +
    typedef int64_t qmckl_context ;
     #define QMCKL_NULL_CONTEXT (qmckl_context) 0
     
    @@ -369,8 +369,8 @@ and ctx is a qmckl_context_struct* pointer.

    -
    -

    1.1 Data structure

    +
    +

    1.1 Data structure

    The qmcklextra pointer lets the other implementation of the library @@ -406,7 +406,7 @@ to be recomputed. The date is incremented when the context is touched.

    When a new element is added to the context, the functions -qmckl_context_create qmckl_context_destroy and qmckl_context_copy +qmckl_context_create qmckl_context_destroy and qmckl_context_copy should be updated in order to make deep copies.

    @@ -427,8 +427,8 @@ This has the effect to increment the date of the context.
    -
    -

    1.2 Creation

    +
    +

    1.2 Creation

    To create a new context, qmckl_context_create() should be used. @@ -445,8 +445,8 @@ To create a new context, qmckl_context_create() should be used.

    -
    -

    1.3 Locking

    +
    +

    1.3 Locking

    For thread safety, the context may be locked/unlocked. The lock is @@ -462,8 +462,8 @@ number of times the thread has locked it is saved in the

    -
    -

    1.4 TODO Copy

    +
    +

    1.4 TODO Copy

    qmckl_context_copy makes a deep copy of a context. It returns @@ -471,8 +471,8 @@ number of times the thread has locked it is saved in the

    -
    -

    1.5 Destroy

    +
    +

    1.5 Destroy

    The context is destroyed with qmckl_context_destroy, leaving the ancestors untouched. @@ -490,7 +490,7 @@ It frees the context, and returns the previous context.

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_determinant.html b/qmckl_determinant.html index 6f47f8b..5260e5b 100644 --- a/qmckl_determinant.html +++ b/qmckl_determinant.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Slater Determinant @@ -324,32 +324,32 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Context

    +
    +

    1 Context

    The following arrays are stored in the context: @@ -535,8 +535,8 @@ Computed data:

    -
    -

    1.1 Data structure

    +
    +

    1.1 Data structure

    typedef struct qmckl_determinant_struct {
    @@ -604,8 +604,8 @@ this mechanism.
     
    -
    -

    1.2 Access functions

    +
    +

    1.2 Access functions

    When all the data for the slater determinants have been provided, the following @@ -619,8 +619,8 @@ function returns true.

    -
    -

    1.3 Initialization functions

    +
    +

    1.3 Initialization functions

    To set the basis set, all the following functions need to be @@ -643,24 +643,24 @@ computed to accelerate the calculations.

    -
    -

    1.4 Fortran Interfaces

    +
    +

    1.4 Fortran Interfaces

    -
    -

    1.5 Test

    +
    +

    1.5 Test

    -
    -

    2 Computation

    +
    +

    2 Computation

    -
    -

    2.1 Determinant matrix

    +
    +

    2.1 Determinant matrix

    -
    -

    2.1.1 Get

    +
    +

    2.1.1 Get

    qmckl_exit_code qmckl_get_det_vgl_alpha(qmckl_context context, double* const det_vgl_alpha);
    @@ -670,14 +670,14 @@ computed to accelerate the calculations.
     
    -
    -

    2.1.2 Provide

    +
    +

    2.1.2 Provide

    -
    -

    2.1.3 Compute alpha

    +
    +

    2.1.3 Compute alpha

    - +
    @@ -851,10 +851,10 @@ computed to accelerate the calculations. -
    -

    2.1.4 Compute beta

    +
    +

    2.1.4 Compute beta

    -
    +
    @@ -1028,18 +1028,18 @@ computed to accelerate the calculations. -
    -

    2.1.5 Test

    +
    +

    2.1.5 Test

    -
    -

    2.2 Inverse of Determinant matrix

    +
    +

    2.2 Inverse of Determinant matrix

    -
    -

    2.2.1 Get

    +
    +

    2.2.1 Get

    qmckl_exit_code qmckl_get_det_inv_matrix_alpha(qmckl_context context, double* const det_inv_matrix_alpha);
    @@ -1053,14 +1053,14 @@ computed to accelerate the calculations.
     
    -
    -

    2.2.2 Provide

    +
    +

    2.2.2 Provide

    -
    -

    2.2.3 Compute alpha

    +
    +

    2.2.3 Compute alpha

    -
    +
    @@ -1222,10 +1222,10 @@ computed to accelerate the calculations. -
    -

    2.2.4 Compute beta

    +
    +

    2.2.4 Compute beta

    -
    +
    @@ -1392,7 +1392,7 @@ computed to accelerate the calculations.

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_distance.html b/qmckl_distance.html index b342eec..773ee3d 100644 --- a/qmckl_distance.html +++ b/qmckl_distance.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - +Inter-particle distances @@ -346,54 +346,54 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Squared distance

    +
    +

    1 Squared distance

    -
    -

    1.1 qmckl_distance_sq

    +
    +

    1.1 qmckl_distance_sq

    qmckl_distance_sq computes the matrix of the squared distances @@ -406,7 +406,7 @@ between all pairs of points in two sets, one point within each set: \]

    -
    +
    @@ -672,8 +672,8 @@ Requirements: -
    -

    1.1.1 Performance

    +
    +

    1.1.1 Performance

    This function is more efficient when A and B are @@ -683,12 +683,12 @@ transposed.

    -
    -

    2 Distance

    +
    +

    2 Distance

    -
    -

    2.1 qmckl_distance

    +
    +

    2.1 qmckl_distance

    qmckl_distance computes the matrix of the distances between all @@ -706,7 +706,7 @@ If the input array is normal ('N'), the xyz coordinates are in the leading dimension: [n][3] in C and (3,n) in Fortran.

    -
    +
    @@ -807,8 +807,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
    -
    -

    2.1.1 Requirements

    +
    +

    2.1.1 Requirements

    • context is not QMCKL_NULL_CONTEXT
    • @@ -826,8 +826,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
    -
    -

    2.1.2 C header

    +
    +

    2.1.2 C header

    qmckl_exit_code qmckl_distance (
    @@ -847,8 +847,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
     
    -
    -

    2.1.3 Source

    +
    +

    2.1.3 Source

    integer function qmckl_distance_f(context, transa, transb, m, n, &
    @@ -1015,8 +1015,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
     
    -
    -

    2.1.4 Performance

    +
    +

    2.1.4 Performance

    This function is more efficient when A and B are transposed. @@ -1026,12 +1026,12 @@ This function is more efficient when A and B are trans

    -
    -

    3 Rescaled Distance

    +
    +

    3 Rescaled Distance

    -
    -

    3.1 qmckl_distance_rescaled

    +
    +

    3.1 qmckl_distance_rescaled

    qmckl_distance_rescaled computes the matrix of the rescaled distances between all @@ -1049,7 +1049,7 @@ If the input array is normal ('N'), the xyz coordinates are in the leading dimension: [n][3] in C and (3,n) in Fortran.

    - +
    @@ -1157,8 +1157,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
    -
    -

    3.1.1 Requirements

    +
    +

    3.1.1 Requirements

    • context is not QMCKL_NULL_CONTEXT
    • @@ -1176,8 +1176,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
    -
    -

    3.1.2 C header

    +
    +

    3.1.2 C header

    qmckl_exit_code qmckl_distance_rescaled (
    @@ -1198,8 +1198,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
     
    -
    -

    3.1.3 Source

    +
    +

    3.1.3 Source

    integer function qmckl_distance_rescaled_f(context, transa, transb, m, n, &
    @@ -1369,8 +1369,8 @@ the leading dimension: [n][3] in C and (3,n) in Fortra
     
    -
    -

    3.1.4 Performance

    +
    +

    3.1.4 Performance

    This function is more efficient when A and B are transposed. @@ -1379,12 +1379,12 @@ This function is more efficient when A and B are trans

    -
    -

    4 Rescaled Distance Derivatives

    +
    +

    4 Rescaled Distance Derivatives

    -
    -

    4.1 qmckl_distance_rescaled_deriv_e

    +
    +

    4.1 qmckl_distance_rescaled_deriv_e

    qmckl_distance_rescaled_deriv_e computes the matrix of the gradient and laplacian of the @@ -1451,7 +1451,7 @@ If the input array is normal ('N'), the xyz coordinates are in the leading dimension: [n][3] in C and (3,n) in Fortran.

    - +
    @@ -1789,7 +1789,7 @@ This function is more efficient when A and B are trans

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_electron.html b/qmckl_electron.html index 91d2027..aaa5238 100644 --- a/qmckl_electron.html +++ b/qmckl_electron.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - +Electrons @@ -346,59 +346,59 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Context

    +
    +

    1 Context

    The following data stored in the context: @@ -539,8 +539,8 @@ Computed data:

    -
    -

    1.1 Data structure

    +
    +

    1.1 Data structure

    @@ -609,8 +609,8 @@ this mechanism.
     
    -
    -

    1.2 Initialization functions

    +
    +

    1.2 Initialization functions

    To set the data relative to the electrons in the context, the @@ -683,8 +683,8 @@ in the context.

    -
    -

    1.3 Access functions

    +
    +

    1.3 Access functions

    Access functions return QMCKL_SUCCESS when the data has been @@ -696,12 +696,12 @@ contains the requested data. Otherwise, this variable is untouched.

    -
    -

    1.3.1 Number of electrons

    +
    +

    1.3.1 Number of electrons

    -
    -

    1.3.2 Number of walkers

    +
    +

    1.3.2 Number of walkers

    A walker is a set of electron coordinates that are arguments of @@ -710,8 +710,8 @@ the wave function. walk_num is the number of walkers.

    -
    -

    1.3.3 Electron coordinates

    +
    +

    1.3.3 Electron coordinates

    Returns the current electron coordinates. The pointer is assumed @@ -761,8 +761,8 @@ current points.

    -
    -

    1.4 Test

    +
    +

    1.4 Test

    /* Reference input data */
    @@ -841,8 +841,8 @@ rc = qmckl_get_electron_coord (context, 'N'
     
    -
    -

    2 Computation

    +
    +

    2 Computation

    The computed data is stored in the context so that it can be reused @@ -855,12 +855,12 @@ current date is stored.

    -
    -

    2.1 Electron-electron distances

    +
    +

    2.1 Electron-electron distances

    -
    -

    2.1.1 Get

    +
    +

    2.1.1 Get

    qmckl_exit_code qmckl_get_electron_ee_distance(qmckl_context context, double* const distance);
    @@ -869,10 +869,10 @@ current date is stored.
     
    -
    -

    2.1.2 Compute

    +
    +

    2.1.2 Compute

    - +
    @@ -977,8 +977,8 @@ current date is stored. -
    -

    2.1.3 Test

    +
    +

    2.1.3 Test

    assert(qmckl_electron_provided(context));
    @@ -1012,8 +1012,8 @@ rc = qmckl_get_electron_ee_distance(context, ee_distance);
     
    -
    -

    2.2 Electron-electron potential

    +
    +

    2.2 Electron-electron potential

    ee_potential is given by @@ -1031,8 +1031,8 @@ distance.

    -
    -

    2.2.1 Get

    +
    +

    2.2.1 Get

    qmckl_exit_code qmckl_get_electron_ee_potential(qmckl_context context, double* const ee_potential);
    @@ -1041,10 +1041,10 @@ distance.
     
    -
    -

    2.2.2 Compute

    +
    +

    2.2.2 Compute

    -
    +
    @@ -1160,8 +1160,8 @@ distance. -
    -

    2.2.3 Test

    +
    +

    2.2.3 Test

    double ee_potential[walk_num];
    @@ -1173,12 +1173,12 @@ rc = qmckl_get_electron_ee_potential(context, &(ee_potential[0]));
     
    -
    -

    2.3 Electron-nucleus distances

    +
    +

    2.3 Electron-nucleus distances

    -
    -

    2.3.1 Get

    +
    +

    2.3.1 Get

    qmckl_exit_code qmckl_get_electron_en_distance(qmckl_context context, double* distance);
    @@ -1187,10 +1187,10 @@ rc = qmckl_get_electron_ee_potential(context, &(ee_potential[0]));
     
    -
    -

    2.3.2 Compute

    +
    +

    2.3.2 Compute

    -
    +
    @@ -1297,8 +1297,8 @@ rc = qmckl_get_electron_ee_potential(context, &(ee_potential[0])); -
    -

    2.3.3 Test

    +
    +

    2.3.3 Test

    @@ -1346,8 +1346,8 @@ rc = qmckl_get_electron_en_distance(context, &(en_distance[0][0][0]));
     
    -
    -

    2.4 Electron-nucleus potential

    +
    +

    2.4 Electron-nucleus potential

    en_potential stores the en potential energy @@ -1365,8 +1365,8 @@ distance and \[Z_A\] is the nuclear charge.

    -
    -

    2.4.1 Get

    +
    +

    2.4.1 Get

    qmckl_exit_code qmckl_get_electron_en_potential(qmckl_context context, double* const en_potential);
    @@ -1375,10 +1375,10 @@ distance and \[Z_A\] is the nuclear charge.
     
    -
    -

    2.4.2 Compute

    +
    +

    2.4.2 Compute

    -
    +
    @@ -1512,8 +1512,8 @@ distance and \[Z_A\] is the nuclear charge. -
    -

    2.4.3 Test

    +
    +

    2.4.3 Test

    double en_potential[walk_num];
    @@ -1526,14 +1526,14 @@ rc = qmckl_get_electron_en_potential(context, &(en_potential[0]));
     
    -
    -

    2.5 Generate initial coordinates

    +
    +

    2.5 Generate initial coordinates

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_error.html b/qmckl_error.html index 524775d..6080ca7 100644 --- a/qmckl_error.html +++ b/qmckl_error.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Error handling @@ -324,29 +324,29 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    -

    -
    +
    +

    -

    +

    The library should never make the calling programs abort, nor perform any input/output operations. This decision has to be taken @@ -357,7 +357,7 @@ by the developer of the code calling the library. All the functions return with an exit code, defined as

    -
    typedef int32_t qmckl_exit_code;
    +
    typedef int32_t qmckl_exit_code;
     
    @@ -374,7 +374,7 @@ error code is returned to the program. Here is the complete list of exit codes.

    -
    +
    @@ -582,8 +582,8 @@ string is assumed to be large enough to contain the error message -
    -

    1 Decoding errors

    +
    +

    1 Decoding errors

    To decode the error messages, qmckl_string_of_error converts an @@ -601,8 +601,8 @@ The text strings are extracted from the previous table.

    -
    -

    2 Data structure in context

    +
    +

    2 Data structure in context

    The strings are declared internally with a maximum fixed size to avoid @@ -625,8 +625,8 @@ dynamic memory allocation.

    -
    -

    3 Updating errors in the context

    +
    +

    3 Updating errors in the context

    The error is updated in the context using qmckl_set_error. @@ -645,8 +645,8 @@ explaining the error. The exit code can't be QMCKL_SUCCESS.

    -
    -

    4 Get the error

    +
    +

    4 Get the error

    Upon error, the error type and message can be obtained from the @@ -665,8 +665,8 @@ function name and message is mandatory.

    -
    -

    5 Failing

    +
    +

    5 Failing

    To make a function fail, the qmckl_failwith function should be @@ -703,8 +703,8 @@ For example, this function can be used as

    -
    -

    6 Last error

    +
    +

    6 Last error

    Returns a string describing the last error, using qmckl_get_error. @@ -716,13 +716,13 @@ Returns a string describing the last error, using qmckl_get_error.

    -
    -

    6.1 Fortran inteface

    +
    +

    6.1 Fortran inteface

    -
    -

    7 Helper functions for debugging

    +
    +

    7 Helper functions for debugging

    The following function prints to stderr an error message is the return code is @@ -748,14 +748,14 @@ It should be used as:

    -
    -

    7.1 Fortran inteface

    +
    +

    7.1 Fortran inteface

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_examples.html b/qmckl_examples.html index 198a2d3..f6e2051 100644 --- a/qmckl_examples.html +++ b/qmckl_examples.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Code examples @@ -346,27 +346,27 @@ for the JavaScript code in this tag.

    Table of Contents

    -
    -

    1 Python

    +
    +

    1 Python

    -
    -

    1.1 Check numerically that MOs are orthonormal

    +
    +

    1.1 Check numerically that MOs are orthonormal

    In this example, we will compute numerically the overlap @@ -542,12 +542,12 @@ and finally we compute the overlap between all the MOs as

    -
    -

    2 Fortran

    +
    +

    2 Fortran

    -
    -

    2.1 Checking errors

    +
    +

    2.1 Checking errors

    All QMCkl functions return an error code. A convenient way to handle @@ -556,7 +556,7 @@ error in text format and exits the program.

    -
    subroutine qmckl_check_error(rc, message)
    +
    subroutine qmckl_check_error(rc, message)
       use qmckl
       implicit none
       integer(qmckl_exit_code), intent(in) :: rc
    @@ -574,8 +574,8 @@ error in text format and exits the program.
     
    -
    -

    2.2 Computing an atomic orbital on a grid

    +
    +

    2.2 Computing an atomic orbital on a grid

    The following program, in Fortran, computes the values of an atomic @@ -794,7 +794,7 @@ We finally print the value and Laplacian of the AO:

    Author: TREX CoE

    -

    Created: 2023-03-30 Thu 10:35

    +

    Created: 2023-03-30 Thu 15:08

    Validate

    diff --git a/qmckl_jastrow.html b/qmckl_jastrow_champ.html similarity index 89% rename from qmckl_jastrow.html rename to qmckl_jastrow_champ.html index 372ce1c..4afc028 100644 --- a/qmckl_jastrow.html +++ b/qmckl_jastrow_champ.html @@ -3,10 +3,10 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + -Jastrow Factor +CHAMP Jastrow Factor