1
1
#include " gint_tools.h"
2
2
#include " module_base/timer.h"
3
3
#include " module_base/ylm.h"
4
+
4
5
namespace Gint_Tools {
6
+
5
7
void mult_psi_DMR (
6
8
const Grid_Technique& gt,
7
9
const int bxyz,
@@ -19,9 +21,11 @@ void mult_psi_DMR(
19
21
const UnitCell& ucell = *gt.ucell ;
20
22
21
23
// parameters for lapack subroutines
22
- constexpr char side = ' L' , uplo = ' U' ;
24
+ constexpr char side = ' L' ;
25
+ constexpr char uplo = ' U' ;
23
26
const char trans = ' N' ;
24
- const double alpha = 1.0 , beta = 1.0 ;
27
+ const double alpha = 1.0 ;
28
+ const double beta = 1.0 ;
25
29
const double alpha1 = if_symm ? 2.0 : 1.0 ;
26
30
27
31
for (int ia1 = 0 ; ia1 < na_grid; ia1++)
@@ -31,37 +35,40 @@ void mult_psi_DMR(
31
35
const int T1 = ucell.iat2it [iat1];
32
36
const int I1 = ucell.iat2ia [iat1];
33
37
34
- // ~~~~~~~~~~~~~~~~
35
- // get cell R1, this step is redundant in gamma_only case.
36
- // ~~~~~~~~~~~~~~~~
38
+ // ! get cell R1, this step is redundant in gamma_only case.
37
39
const int id1 = gt.which_unitcell [bcell1];
38
40
const int R1x = gt.ucell_index2x [id1];
39
41
const int R1y = gt.ucell_index2y [id1];
40
42
const int R1z = gt.ucell_index2z [id1];
41
43
42
- if (if_symm) // density
44
+ // ! density
45
+ if (if_symm)
43
46
{
44
- // ia2==ia1
47
+ // ! ia2==ia1
45
48
const auto tmp_matrix = DM->find_matrix (iat1, iat1, 0 , 0 , 0 );
46
- // maybe the check "tmp_matrix == nullptr" is not necessary
49
+
50
+ // ! maybe checking "tmp_matrix == nullptr" is not necessary
47
51
if (tmp_matrix == nullptr )
48
52
{
49
53
continue ;
50
54
}
55
+
51
56
const auto cal_info = Gint_Tools::cal_info (bxyz, ia1, ia1, cal_flag);
52
57
const int ib_start = cal_info.first ;
53
58
const int ib_len = cal_info.second ;
59
+
54
60
if (ib_len == 0 )
55
61
{
56
62
continue ;
57
63
}
64
+
58
65
const auto tmp_matrix_ptr = tmp_matrix->get_pointer ();
59
66
const int idx1 = block_index[ia1];
60
67
dsymm_ (&side, &uplo, &block_size[ia1], &ib_len, &alpha, tmp_matrix_ptr, &block_size[ia1],
61
68
&psi[ib_start][idx1], &LD_pool, &beta, &psi_DMR[ib_start][idx1], &LD_pool);
62
69
}
63
70
64
- // get (j,beta,R2)
71
+ // ! get (j,beta,R2)
65
72
const int start = if_symm ? ia1 + 1 : 0 ;
66
73
67
74
for (int ia2 = start; ia2 < na_grid; ia2++)
@@ -70,18 +77,14 @@ void mult_psi_DMR(
70
77
const int T2 = ucell.iat2it [gt.which_atom [bcell2]];
71
78
const int iat2 = gt.which_atom [bcell2];
72
79
const int id2 = gt.which_unitcell [bcell2];
73
-
74
- // ---------------
75
- // get cell R2, this step is redundant in gamma_only case.
76
- // ---------------
80
+
81
+ // ! get cell R2, this step is redundant in gamma_only case.
77
82
const int R2x = gt.ucell_index2x [id2];
78
83
const int R2y = gt.ucell_index2y [id2];
79
84
const int R2z = gt.ucell_index2z [id2];
80
85
81
- // ------------------------------------------------
82
- // calculate the 'offset': R2 position relative
83
- // to R1 atom, this step is redundant in gamma_only case.
84
- // ------------------------------------------------
86
+ // ! calculate the 'offset': R2 position relative
87
+ // ! to R1 atom, this step is redundant in gamma_only case.
85
88
const int dRx = R1x - R2x;
86
89
const int dRy = R1y - R2y;
87
90
const int dRz = R1z - R2z;
@@ -103,10 +106,12 @@ void mult_psi_DMR(
103
106
}
104
107
const int idx1 = block_index[ia1];
105
108
const int idx2 = block_index[ia2];
109
+
106
110
dgemm_ (&trans, &trans, &block_size[ia2], &ib_len, &block_size[ia1], &alpha1, tmp_matrix_ptr, &block_size[ia2],
107
111
&psi[ib_start][idx1], &LD_pool, &beta, &psi_DMR[ib_start][idx2], &LD_pool);
108
112
109
- } // ia2
110
- } // ia1
111
- }
112
- }
113
+ } // ia2
114
+ } // ia1
115
+ }// End of mult_psi_DMR
116
+
117
+ }// End of Gint_Tools
0 commit comments