-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Han Lin Mai
committed
Jun 14, 2024
1 parent
ce488d5
commit c0caa08
Showing
35 changed files
with
4,171 additions
and
2,219 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
from utils.vasp.vasp_resubmitter import CalculationConverger | ||
import os | ||
|
||
vasp_resubmitter = CalculationConverger(parent_dir=os.getcwd(), | ||
script_template_dir="/home/hmai/CustodianJobfiles", | ||
max_submissions = 1000, | ||
submission_command = "sbatch", | ||
username="hmai") | ||
vasp_resubmitter = CalculationConverger( | ||
parent_dir=os.getcwd(), | ||
script_template_dir="/home/hmai/CustodianJobfiles", | ||
max_submissions=1000, | ||
submission_command="sbatch", | ||
username="hmai", | ||
) | ||
|
||
vasp_resubmitter.reconverge_all() | ||
vasp_resubmitter.reconverge_all() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='utils', | ||
version='0.1', | ||
packages=find_packages(where='utils'), | ||
package_dir={'': 'utils'}, | ||
name="utils", | ||
version="0.1", | ||
packages=find_packages(where="utils"), | ||
package_dir={"": "utils"}, | ||
install_requires=[ | ||
'pandas', | ||
'numpy', | ||
'pymatgen', | ||
"pandas", | ||
"numpy", | ||
"pymatgen", | ||
], | ||
scripts=[ | ||
'actual_usage/check_jobdir', | ||
'actual_usage/memory_check', | ||
'actual_usage/slurm_list_jobdir', | ||
'actual_usage/build_and_show_db', | ||
'actual_usage/compress_here', | ||
'actual_usage/qstat_slurm', | ||
'actual_usage/summarise_db', | ||
'actual_usage/setonix_refresh_mamba', | ||
'actual_usage/setonix_refresh_mamba', | ||
'actual_usage/update_failed_jobs_db', | ||
"actual_usage/check_jobdir", | ||
"actual_usage/memory_check", | ||
"actual_usage/slurm_list_jobdir", | ||
"actual_usage/build_and_show_db", | ||
"actual_usage/compress_here", | ||
"actual_usage/qstat_slurm", | ||
"actual_usage/summarise_db", | ||
"actual_usage/setonix_refresh_mamba", | ||
"actual_usage/setonix_refresh_mamba", | ||
"actual_usage/update_failed_jobs_db", | ||
], | ||
) |
Oops, something went wrong.