Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b31ed6a
refactor: shorten long filenames in source (phase 1)
Aug 10, 2026
334391a
refactor: shorten long filenames in source (phase 2)
Aug 10, 2026
cf02d81
refactor: shorten long filenames in source (phase 3)
Aug 10, 2026
1d72486
refactor: shorten long filenames in source (phase 4)
Aug 10, 2026
301c118
refactor: shorten long filenames in source (phase 4)
Aug 10, 2026
8c336be
refactor: shorten long filenames in source (phase 5, revised)
Aug 10, 2026
82f448b
refactor: normalize LCAO_ prefix filenames to lowercase (phase A)
Aug 10, 2026
829da33
refactor: normalize ORB_ prefix filenames to lowercase (phase B)
Aug 10, 2026
5d7c566
refactor: normalize ORB_ prefix filenames to lowercase (phase B)
Aug 10, 2026
c8a98dd
refactor: normalize H_/FORCE_/forces_ filenames (phase C)
Aug 10, 2026
c0317b7
refactor: normalize Matrix_/Mix_/RI_/RPA_/LRI_ filenames (phase D)
Aug 10, 2026
efab52d
refactor: replace dashes with underscores in filenames (phase E)
Aug 10, 2026
8814e96
refactor: normalize remaining uppercase filenames to lowercase (phase F)
Aug 10, 2026
7569c7b
Rename test files to follow source file renames
Aug 10, 2026
9b00acc
update
Aug 10, 2026
8d83710
Simplify test file names using standard abbreviations (Phase G2)
Aug 10, 2026
4d8bba8
Replace dashes with underscores in test file names (Phase G3)
Aug 10, 2026
6335265
Rename: normalize source file naming across modules
Aug 10, 2026
4918f95
Merge upstream/develop into 2026-08-10-b
Aug 11, 2026
7732d83
update makefile in module_pw
Aug 11, 2026
50d5f88
solve conflict
Aug 11, 2026
3da00cb
Merge upstream/develop into 2026-08-10-b
Aug 11, 2026
b661c39
Fix psi_init_atom_rand to match updated base class interface
Aug 11, 2026
762819d
Add missing pw_basis_k.h include to psi_init_atom_rand.cpp
Aug 11, 2026
5117591
Merge upstream/develop into 2026-08-10-b
Aug 12, 2026
6821497
Merge remote-tracking branch 'upstream/develop' into 2026-08-10-b
Aug 12, 2026
d3b5bb8
Merge remote-tracking branch 'upstream/develop' into 2026-08-10-b
Aug 12, 2026
0be2efa
Merge remote-tracking branch 'upstream/develop' into 2026-08-10-b
Aug 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion python/pyabacus/src/ModuleBase/py_base_math.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "source_base/math_sphbes.h"
#include "source_base/math_integral.h"
#include "source_base/spherical_bessel_transformer.h"
#include "source_base/sph_bessel_tf.h"

#include "../utils/pybind_utils.h"

Expand Down
2 changes: 1 addition & 1 deletion source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ list(APPEND device_srcs
source_hamilt/module_xc/kernels/xc_functional_op.cpp
source_pw/module_pwdft/kernels/cal_density_real_op.cpp
source_pw/module_pwdft/kernels/mul_potential_op.cpp
source_pw/module_pwdft/kernels/vec_mul_vec_complex_op.cpp
source_pw/module_pwdft/kernels/vec_mul_cx_op.cpp
source_pw/module_pwdft/kernels/exx_cal_energy_op.cpp)

if(USE_CUDA)
Expand Down
Loading
Loading