File tree Expand file tree Collapse file tree 4 files changed +2
-59
lines changed Expand file tree Collapse file tree 4 files changed +2
-59
lines changed Original file line number Diff line number Diff line change 1-
2-
31# User specific aliases and functions
42
53
@@ -37,4 +35,3 @@ alias runs='cd ~/runs'
3735alias rmg=' python-jl $rmgpy_path/rmg.py input.py > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)'
3836alias sb=' qsub submit.sh'
3937alias st=' qstat -u $USER'
40-
Original file line number Diff line number Diff line change 1111# If running on a local server, ARC's settings for ``local`` will be used.
1212execution_type = {
1313 'rmg' : 'local' ,
14- 'arc' : 'incore ' ,
14+ 'arc' : 'local ' ,
1515}
1616
1717servers = {
Original file line number Diff line number Diff line change 44
55# Submission scripts stored as a dictionary with software as the primary key.
66submit_scripts = {
7- # 'rmg': """#!/bin/bash -l
8- # #SBATCH -J {name}
9- # #SBATCH -t 05-00:00:00
10- # #SBATCH -o out.txt
11- # #SBATCH -e err.txt
12- # #SBATCH --ntasks={cpus}
13- # #SBATCH --mem-per-cpu={memory / cpus}
14- #
15- #
16- # export PYTHONPATH=$PYTHONPATH:~/Code/RMG-Py/
17- #
18- # conda activate rmg_env
19- #
20- # touch initial_time
21- #
22- # python-jl ~/Code/RMG-Py/rmg.py -n {cpus} input.py{max_iterations}
23- #
24- # touch final_time
25- #
26- # """,
27- # 'rmg': """Universe = vanilla
28- #
29- # +JobName = "{name}"
30- #
31- # log = job.log
32- # output = out.txt
33- # error = err.txt
34- #
35- # getenv = True
36- #
37- # should_transfer_files = no
38- #
39- # executable = job.sh
40- #
41- # request_cpus = {cpus}
42- # request_memory = {memory}MB
43- #
44- # queue
45- #
46- # """,
47- # 'rmg_job': """#!/bin/bash -l
48- #
49- # touch initial_time
50- #
51- # source /srv01/technion/$USER/.bashrc
52- #
53- # conda activate rmg_env
54- #
55- # python-jl /Local/ce_dana/Code/RMG-Py/rmg.py -n {cpus} input.py{max_iterations}
56- #
57- # touch final_time
58- #
59- # """,
607 'rmg' : """#!/bin/bash -l
618
629#PBS -N {name}
7320
7421touch initial_time
7522
76- python-jl ~/Code/RMG-Py/rmg.py -n {cpus} input.py{max_iterations}
23+ python-jl ~/Code/RMG-Py/rmg.py -n {cpus} input.py {max_iterations}
7724
7825touch final_time
7926
Original file line number Diff line number Diff line change @@ -13,4 +13,3 @@ cd $PBS_O_WORKDIR
1313conda activate arc_env
1414
1515python $arc_code /ARC.py input.yml
16-
You can’t perform that action at this time.
0 commit comments