forked from abacusmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 232
Add WFN-history backend for Gamma-only NAO calculations #7442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Growl1234
wants to merge
10
commits into
deepmodeling:develop
Choose a base branch
from
Growl1234:wfn-history
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
4662ae5
Add WFN extrapolation option and NAO history buffer
Growl1234 e3e65d0
Add Gamma-only S-orthonormalization for NAO WFN extrapolation
Growl1234 3d41d38
Implement WfHistoryLCAO main apply logic
Growl1234 7227e88
Wire NAO WFN history into SCF initialization
Growl1234 826c1fc
Debugging & bug fixes
Growl1234 89b1d2b
Drop support for C++11 standard
Growl1234 fb3fbcd
Fix MPI parrallel problems
Growl1234 3334f96
Skip charge extrapolation when using WFN-based path
Growl1234 ab4df11
Add timer for WFN backend
Growl1234 ddc1a25
module_extrap/CMakeLists.txt: set objects rather than apeend
Growl1234 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ add_subdirectory(module_deltaspin) | |
|
|
||
| if(ENABLE_LCAO) | ||
| add_subdirectory(module_operator_lcao) | ||
| add_subdirectory(module_extrap) | ||
| list(APPEND objects | ||
| hamilt_lcao.cpp | ||
| module_operator_lcao/operator_lcao.cpp | ||
|
|
@@ -23,6 +24,8 @@ if(ENABLE_LCAO) | |
| module_operator_lcao/dspin_lcao.cpp | ||
| module_operator_lcao/dftu_lcao.cpp | ||
| module_operator_lcao/operator_force_stress_utils.cpp | ||
| module_extrap/wf_history_lcao.cpp | ||
| module_extrap/wf_orthonormalize_lcao.cpp | ||
|
Comment on lines
+27
to
+28
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. |
||
| dftu_lcao.cpp | ||
| pulay_fs_center2.cpp | ||
| FORCE_STRESS.cpp | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| set(objects | ||
| wf_history_lcao.cpp | ||
| wf_orthonormalize_lcao.cpp | ||
| ) | ||
|
|
||
| add_library( | ||
| lcao_extrap | ||
| OBJECT | ||
| ${objects} | ||
| ) | ||
|
|
||
| if(ENABLE_COVERAGE) | ||
| add_coverage(lcao_extrap) | ||
| endif() |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like
module_operator_lcaoalso acts like this, so I'm hesitating here...