Skip to content

Commit 898d15a

Browse files
committed
Rebased with main and updated submit.sh for RMG and T3 settings/submit
1 parent bd2da9c commit 898d15a

File tree

4 files changed

+2
-59
lines changed

4 files changed

+2
-59
lines changed

Servers/Zeus/.bashrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
# User specific aliases and functions
42

53

@@ -37,4 +35,3 @@ alias runs='cd ~/runs'
3735
alias rmg='python-jl $rmgpy_path/rmg.py input.py > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)'
3836
alias sb='qsub submit.sh'
3937
alias st='qstat -u $USER'
40-

Servers/Zeus/.t3/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# If running on a local server, ARC's settings for ``local`` will be used.
1212
execution_type = {
1313
'rmg': 'local',
14-
'arc': 'incore',
14+
'arc': 'local',
1515
}
1616

1717
servers = {

Servers/Zeus/.t3/t3_submit.py

Lines changed: 1 addition & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -4,59 +4,6 @@
44

55
# Submission scripts stored as a dictionary with software as the primary key.
66
submit_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}
@@ -73,7 +20,7 @@
7320
7421
touch 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
7825
touch final_time
7926

Servers/Zeus/ARC/submit.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ cd $PBS_O_WORKDIR
1313
conda activate arc_env
1414

1515
python $arc_code/ARC.py input.yml
16-

0 commit comments

Comments
 (0)