Skip to content

Commit f20de93

Browse files
committed
change new_grid_tech to new_gint
1 parent c9b37f2 commit f20de93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+28
-29
lines changed

source/module_elecstate/elecstate_lcao.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "module_hamilt_pw/hamilt_pwdft/global.h"
1010
#include "module_parameter/parameter.h"
1111

12-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint_interface.h"
12+
#include "module_hamilt_lcao/module_gint/new_gint/gint_interface.h"
1313

1414
#include <vector>
1515

source/module_elecstate/elecstate_lcao_cal_tau.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "elecstate_lcao.h"
2-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint_interface.h"
2+
#include "module_hamilt_lcao/module_gint/new_gint/gint_interface.h"
33

44
#include "module_base/timer.h"
55

source/module_esolver/esolver_ks_lcao.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// for grid integration
66
#include "module_hamilt_lcao/module_gint/gint_gamma.h"
77
#include "module_hamilt_lcao/module_gint/gint_k.h"
8-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint_info.h"
9-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint.h"
8+
#include "module_hamilt_lcao/module_gint/new_gint/gint_info.h"
9+
#include "module_hamilt_lcao/module_gint/new_gint/gint.h"
1010
#ifdef __DEEPKS
1111
#include "module_hamilt_lcao/module_deepks/LCAO_deepks.h"
1212
#endif

source/module_hamilt_lcao/hamilt_lcaodft/operator_lcao/veff_lcao.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "module_base/tool_title.h"
55
#include "module_hamilt_general/module_xc/xc_functional.h"
66
#include "module_cell/unitcell.h"
7-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint_interface.h"
7+
#include "module_hamilt_lcao/module_gint/new_gint/gint_interface.h"
88
namespace hamilt
99
{
1010

source/module_hamilt_lcao/hamilt_lcaodft/pulay_force_stress_gint.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "module_hamilt_lcao/hamilt_lcaodft/stress_tools.h"
44
#include "module_hamilt_general/module_xc/xc_functional.h"
55
#include "module_parameter/parameter.h"
6-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint_interface.h"
6+
#include "module_hamilt_lcao/module_gint/new_gint/gint_interface.h"
77
namespace PulayForceStress
88
{
99
template<typename TK, typename TR>

source/module_hamilt_lcao/module_gint/CMakeLists.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -31,26 +31,26 @@ list(APPEND objects
3131

3232
if(NEW_GINT)
3333
list(APPEND objects
34-
new_grid_tech/biggrid_info.cpp
35-
new_grid_tech/biggrid.cpp
36-
new_grid_tech/divide_info.cpp
37-
new_grid_tech/gint_atom.cpp
38-
new_grid_tech/gint_info.cpp
39-
new_grid_tech/gint.cpp
40-
new_grid_tech/gint_vl.cpp
41-
new_grid_tech/gint_vl_metagga.cpp
42-
new_grid_tech/gint_vl_nspin4.cpp
43-
new_grid_tech/gint_vl_metagga_nspin4.cpp
44-
new_grid_tech/gint_rho.cpp
45-
new_grid_tech/gint_tau.cpp
46-
new_grid_tech/gint_fvl.cpp
47-
new_grid_tech/gint_fvl_meta.cpp
48-
new_grid_tech/localcell_info.cpp
49-
new_grid_tech/phi_operator.cpp
50-
new_grid_tech/set_ddphi.cpp
51-
new_grid_tech/unitcell_info.cpp
52-
new_grid_tech/gint_common.cpp
53-
new_grid_tech/gint_interface.cpp
34+
new_gint/biggrid_info.cpp
35+
new_gint/biggrid.cpp
36+
new_gint/divide_info.cpp
37+
new_gint/gint_atom.cpp
38+
new_gint/gint_info.cpp
39+
new_gint/gint.cpp
40+
new_gint/gint_vl.cpp
41+
new_gint/gint_vl_metagga.cpp
42+
new_gint/gint_vl_nspin4.cpp
43+
new_gint/gint_vl_metagga_nspin4.cpp
44+
new_gint/gint_rho.cpp
45+
new_gint/gint_tau.cpp
46+
new_gint/gint_fvl.cpp
47+
new_gint/gint_fvl_meta.cpp
48+
new_gint/localcell_info.cpp
49+
new_gint/phi_operator.cpp
50+
new_gint/set_ddphi.cpp
51+
new_gint/unitcell_info.cpp
52+
new_gint/gint_common.cpp
53+
new_gint/gint_interface.cpp
5454
)
5555
endif()
5656

source/module_hamilt_lcao/module_gint/grid_technique.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "module_hamilt_pw/hamilt_pwdft/global.h"
1111
#include "module_hsolver/kernels/cuda/helper_cuda.h"
1212

13-
#include "module_hamilt_lcao/module_gint/new_grid_tech/gint_helper.h"
13+
#include "module_hamilt_lcao/module_gint/new_gint/gint_helper.h"
1414

1515
Grid_Technique::Grid_Technique() {
1616
#if ((defined __CUDA) /* || (defined __ROCM) */)
@@ -382,7 +382,6 @@ void Grid_Technique::init_atoms_on_grid2(const int* index2normal,
382382
std::vector<double> coords3(bxyz * 3, 0.0);
383383
for(int iat = 0; iat < ucell.nat; iat++)
384384
{
385-
// printf("tau_in_bigcell[%d] = %f %f %f\n", iat, this->tau_in_bigcell[iat][0], this->tau_in_bigcell[iat][1], this->tau_in_bigcell[iat][2]);
386385
const int it = ucell.iat2it[iat];
387386
const double rcut_square = this->rcuts[it] * this->rcuts[it];
388387
// zero bigcell of meshball indicate ?

0 commit comments

Comments
 (0)