forked from abacusmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix-out-flag
- Loading branch information
Showing
332 changed files
with
8,847 additions
and
6,430 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,30 @@ | ||
############################################################################### | ||
# - Find LibComm | ||
# Find the native LibComm files. | ||
# | ||
# LIBCOMM_FOUND - True if LibComm is found. | ||
# LIBCOMM_DIR - Where to find LibComm files. | ||
|
||
find_path(LIBCOMM_DIR | ||
include/Comm/Comm_Tools.h | ||
HINTS ${LIBCOMM_DIR} | ||
HINTS ${LibComm_DIR} | ||
HINTS ${libcomm_DIR} | ||
) | ||
|
||
if(NOT LIBCOMM_DIR) | ||
include(FetchContent) | ||
FetchContent_Declare( | ||
LibComm | ||
URL https://github.com/abacusmodeling/LibComm/archive/refs/tags/v0.1.1.tar.gz | ||
) | ||
FetchContent_Populate(LibComm) | ||
set(LIBCOMM_DIR ${libcomm_SOURCE_DIR}) | ||
endif() | ||
# Handle the QUIET and REQUIRED arguments and | ||
# set LIBCOMM_FOUND to TRUE if all variables are non-zero. | ||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LibComm DEFAULT_MSG LIBCOMM_DIR) | ||
|
||
# Copy the results to the output variables and target. | ||
mark_as_advanced(LIBCOMM_DIR) |
This file contains 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,30 @@ | ||
############################################################################### | ||
# - Find LibRI | ||
# Find the native LibRI files. | ||
# | ||
# LIBRI_FOUND - True if LibRI is found. | ||
# LIBRI_DIR - Where to find LibRI files. | ||
|
||
find_path(LIBRI_DIR | ||
include/RI/version.h | ||
HINTS ${LIBRI_DIR} | ||
HINTS ${LibRI_DIR} | ||
HINTS ${libri_DIR} | ||
) | ||
|
||
if(NOT LIBRI_DIR) | ||
include(FetchContent) | ||
FetchContent_Declare( | ||
LibRI | ||
URL https://github.com/abacusmodeling/LibRI/archive/refs/tags/v0.2.1.1.tar.gz | ||
) | ||
FetchContent_Populate(LibRI) | ||
set(LIBRI_DIR ${libri_SOURCE_DIR}) | ||
endif() | ||
# Handle the QUIET and REQUIRED arguments and | ||
# set LIBRI_FOUND to TRUE if all variables are non-zero. | ||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LibRI DEFAULT_MSG LIBRI_DIR) | ||
|
||
# Copy the results to the output variables and target. | ||
mark_as_advanced(LIBRI_DIR) |
Submodule LibComm
deleted from
ec9845
Submodule LibRI
deleted from
bd299f
This file contains 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 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 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 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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
INPUT_PARAMETERS | ||
pseudo_dir ../../../tests/PP_ORB | ||
calculation scf | ||
ecutwfc 50 | ||
ecutwfc 60 ###Energy cutoff needs to be tested to ensure your calculation is reliable.[1] | ||
scf_thr 1e-08 | ||
scf_nmax 100 | ||
basis_type pw | ||
latname so | ||
|
||
|
||
### [1] Energy cutoff determines the quality of numerical quadratures in your calculations. | ||
### So it is strongly recommended to test whether your result (such as converged SCF energies) is | ||
### converged with respect to the energy cutoff. |
This file contains 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.