LCOV - code coverage report
Current view: top level - src/grid/cpu - grid_cpu_integrate.c (source / functions) Hit Total Coverage
Test: CP2K Regtests (git:b1f098b) Lines: 63 63 100.0 %
Date: 2024-05-05 06:30:09 Functions: 2 2 100.0 %

          Line data    Source code
       1             : /*----------------------------------------------------------------------------*/
       2             : /*  CP2K: A general program to perform molecular dynamics simulations         */
       3             : /*  Copyright 2000-2024 CP2K developers group <https://cp2k.org>              */
       4             : /*                                                                            */
       5             : /*  SPDX-License-Identifier: BSD-3-Clause                                     */
       6             : /*----------------------------------------------------------------------------*/
       7             : 
       8             : #include <assert.h>
       9             : #include <limits.h>
      10             : #include <math.h>
      11             : #include <stdio.h>
      12             : #include <stdlib.h>
      13             : #include <string.h>
      14             : 
      15             : #define GRID_DO_COLLOCATE 0
      16             : #include "../common/grid_common.h"
      17             : #include "grid_cpu_collint.h"
      18             : #include "grid_cpu_integrate.h"
      19             : 
      20             : /*******************************************************************************
      21             :  * \brief Cab matrix container to be passed through get_force/virial to cab_get.
      22             :  * \author Ole Schuett
      23             :  ******************************************************************************/
      24             : typedef struct {
      25             :   const double *data;
      26             :   const int m1;
      27             : } cab_store;
      28             : 
      29             : /*******************************************************************************
      30             :  * \brief Returns matrix element cab[idx(b)][idx(a)].
      31             :  * \author Ole Schuett
      32             :  ******************************************************************************/
      33  5003366703 : static inline double cab_get(const cab_store *cab, const orbital a,
      34             :                              const orbital b) {
      35  5003366703 :   return cab->data[idx(b) * cab->m1 + idx(a)];
      36             : }
      37             : 
      38             : #include "../common/grid_process_vab.h"
      39             : 
      40             : /*******************************************************************************
      41             :  * \brief Integrates a single task. See grid_cpu_integrate.h for details.
      42             :  * \author Ole Schuett
      43             :  ******************************************************************************/
      44    85654207 : void grid_cpu_integrate_pgf_product(
      45             :     const bool orthorhombic, const bool compute_tau, const int border_mask,
      46             :     const int la_max, const int la_min, const int lb_max, const int lb_min,
      47             :     const double zeta, const double zetb, const double dh[3][3],
      48             :     const double dh_inv[3][3], const double ra[3], const double rab[3],
      49             :     const int npts_global[3], const int npts_local[3], const int shift_local[3],
      50             :     const int border_width[3], const double radius, const int o1, const int o2,
      51    85654207 :     const int n1, const int n2, const double *grid, double hab[n2][n1],
      52             :     const double pab[n2][n1], double forces[2][3], double virials[2][3][3],
      53             :     double hdab[n2][n1][3], double hadb[n2][n1][3],
      54    85654207 :     double a_hdab[n2][n1][3][3]) {
      55             : 
      56    85654207 :   const bool calculate_forces = (forces != NULL || hdab != NULL);
      57    85654207 :   const bool calculate_virial = (virials != NULL || a_hdab != NULL);
      58    85654207 :   assert(!calculate_virial || calculate_forces);
      59    85654207 :   const process_ldiffs ldiffs =
      60    85654207 :       process_get_ldiffs(calculate_forces, calculate_virial, compute_tau);
      61    85654207 :   int la_max_local = la_max + ldiffs.la_max_diff;
      62    85654207 :   int lb_max_local = lb_max + ldiffs.lb_max_diff;
      63    85654207 :   int la_min_local = imax(0, la_min + ldiffs.la_min_diff);
      64    85654207 :   int lb_min_local = imax(0, lb_min + ldiffs.lb_min_diff);
      65             : 
      66    85654207 :   const int m1 = ncoset(la_max_local);
      67    85654207 :   const int m2 = ncoset(lb_max_local);
      68    85654207 :   double cab[m2 * m1];
      69    85654207 :   memset(cab, 0, m2 * m1 * sizeof(double));
      70             : 
      71    85654207 :   const cab_store cab_obj = {.data = cab, .m1 = m1};
      72             : 
      73    85654207 :   const double rscale = 1.0; // TODO: remove rscale from cab_to_grid
      74    85654207 :   cab_to_grid(orthorhombic, border_mask, la_max_local, la_min_local,
      75             :               lb_max_local, lb_min_local, zeta, zetb, rscale, dh, dh_inv, ra,
      76             :               rab, npts_global, npts_local, shift_local, border_width, radius,
      77             :               cab, grid);
      78             : 
      79             :   //  cab contains all the information needed to find the elements of hab
      80             :   //  and optionally of derivatives of these elements
      81   205249379 :   for (int la = la_min; la <= la_max; la++) {
      82   294328055 :     for (int ax = 0; ax <= la; ax++) {
      83   412954815 :       for (int ay = 0; ay <= la - ax; ay++) {
      84   238221932 :         const int az = la - ax - ay;
      85   238221932 :         const orbital a = {{ax, ay, az}};
      86   625034588 :         for (int lb = lb_min; lb <= lb_max; lb++) {
      87   998669525 :           for (int bx = 0; bx <= lb; bx++) {
      88  1496020966 :             for (int by = 0; by <= lb - bx; by++) {
      89   884164097 :               const int bz = lb - bx - by;
      90   884164097 :               const orbital b = {{bx, by, bz}};
      91             : 
      92             :               // Update hab block.
      93   884164097 :               hab[o2 + idx(b)][o1 + idx(a)] +=
      94   884164097 :                   get_hab(a, b, zeta, zetb, &cab_obj, compute_tau);
      95             : 
      96             :               // Update forces.
      97   884164097 :               if (forces != NULL) {
      98   138449492 :                 const double pabval = pab[o2 + idx(b)][o1 + idx(a)];
      99   553797968 :                 for (int i = 0; i < 3; i++) {
     100   415348476 :                   forces[0][i] += pabval * get_force_a(a, b, i, zeta, zetb,
     101             :                                                        &cab_obj, compute_tau);
     102   415348476 :                   forces[1][i] += pabval * get_force_b(a, b, i, zeta, zetb, rab,
     103             :                                                        &cab_obj, compute_tau);
     104             :                 }
     105             :               }
     106             : 
     107             :               // Update virials.
     108   884164097 :               if (virials != NULL) {
     109    20807484 :                 const double pabval = pab[o2 + idx(b)][o1 + idx(a)];
     110    83229936 :                 for (int i = 0; i < 3; i++) {
     111   249689808 :                   for (int j = 0; j < 3; j++) {
     112   187267356 :                     virials[0][i][j] +=
     113   187267356 :                         pabval * get_virial_a(a, b, i, j, zeta, zetb, &cab_obj,
     114             :                                               compute_tau);
     115   187267356 :                     virials[1][i][j] +=
     116   187267356 :                         pabval * get_virial_b(a, b, i, j, zeta, zetb, rab,
     117             :                                               &cab_obj, compute_tau);
     118             :                   }
     119             :                 }
     120             :               }
     121             : 
     122             :               // Update hdab, hadb, and a_hdab (not used in batch mode).
     123   884164097 :               if (hdab != NULL) {
     124       13655 :                 assert(!compute_tau);
     125       54620 :                 for (int i = 0; i < 3; i++) {
     126       40965 :                   hdab[o2 + idx(b)][o1 + idx(a)][i] +=
     127       40965 :                       get_force_a(a, b, i, zeta, zetb, &cab_obj, false);
     128             :                 }
     129             :               }
     130   884164097 :               if (hadb != NULL) {
     131        4887 :                 assert(!compute_tau);
     132       19548 :                 for (int i = 0; i < 3; i++) {
     133       14661 :                   hadb[o2 + idx(b)][o1 + idx(a)][i] +=
     134       14661 :                       get_force_b(a, b, i, zeta, zetb, rab, &cab_obj, false);
     135             :                 }
     136             :               }
     137   884164097 :               if (a_hdab != NULL) {
     138         360 :                 assert(!compute_tau);
     139        1440 :                 for (int i = 0; i < 3; i++) {
     140        4320 :                   for (int j = 0; j < 3; j++) {
     141        3240 :                     a_hdab[o2 + idx(b)][o1 + idx(a)][i][j] +=
     142        3240 :                         get_virial_a(a, b, i, j, zeta, zetb, &cab_obj, false);
     143             :                   }
     144             :                 }
     145             :               }
     146             :             }
     147             :           }
     148             :         }
     149             :       }
     150             :     }
     151             :   }
     152    85654207 : }
     153             : 
     154             : // EOF

Generated by: LCOV version 1.15