-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added an argparser for sbatch scripts
- Loading branch information
1 parent
2355ebd
commit 3f39588
Showing
5 changed files
with
85 additions
and
24 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/1/2_analysis/1_cluster/c0-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/1/2_analysis/1_cluster/c1-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/1/2_analysis/1_cluster/c2-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/1/2_analysis/1_cluster/c3-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/2/2_analysis/1_cluster/c0-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/2/2_analysis/1_cluster/c1-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/2/2_analysis/1_cluster/c2-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/2/2_analysis/1_cluster/c3-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/3/2_analysis/1_cluster/c0-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/3/2_analysis/1_cluster/c1-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/3/2_analysis/1_cluster/c2-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/3/2_analysis/1_cluster/c3-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/4/2_analysis/1_cluster/c0-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/4/2_analysis/1_cluster/c1-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/4/2_analysis/1_cluster/c2-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/4/2_analysis/1_cluster/c3-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/5/2_analysis/1_cluster/c0-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/5/2_analysis/1_cluster/c1-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/5/2_analysis/1_cluster/c2-opt/ | ||
/home/kastner/projects/mimochromes/mc6/2_oxo/3_md/5/2_analysis/1_cluster/c3-opt/ |
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,24 @@ | ||
#$ -S /bin/bash # Specifies interpreting shell for the job | ||
#$ -N pyEF # Identifier for the job | ||
#$ -l h_rt=48:00:00 # Specify maximum runtime | ||
#$ -l h_rss=40G # Specify requested memory | ||
#$ -q gpusnew # Specify which queue to submit the job to | ||
#$ -l gpus=1 # Always set to 1 no matter how many gpus are used. | ||
#$ -pe smp 2 # Number of parallel processes to run (defines how many GPUs) | ||
# -fin job_paths.in | ||
# -fin metal_indices.in | ||
|
||
export OMP_NUM_THREADS=2 # Number of threads to be spawned (needs to be the same as -smp) | ||
source ~/.bashrc | ||
conda activate molsimp | ||
|
||
# --geom Whether to perform a geometry check | ||
# --esp Whether to perform ESP analysis | ||
# --jobs_file Paths to all the QM jobs | ||
# --metals_file The indices of the metals for each job | ||
|
||
RUN="/home/kastner/packages/pyEF/pyef/run.py" | ||
JOBS="/home/kastner/packages/pyEF/demo/jobs.in" | ||
METALS="/home/kastner/packages/pyEF/demo/metals.in" | ||
python $RUN --geom --esp --jobs_file $JOBS --metals_file $METALS > pyEF.log | ||
|
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,20 @@ | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 | ||
486 |
This file was deleted.
Oops, something went wrong.
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