You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Pass in the maximum number of nodes to use at once
nodes=$4
# pass in number of threads. since wahab has 40 threads per node, when we have ram limitation issues
#suggested values: 20 (2 jobs per node on wahab), 40 (1 job per node on wahab)
threads=$5
# ramPerThread. In the bash file, we have the number of threads allowed to run for a job being 1, so this is the ram per 1 thread or 1 node. Ultimately, the previous threads command controlls how many jobs can run on one node, eg 20 = 2 jobs/wahab node and 40 = 1 job per wahab node
# suggested values: 180g, 233g, 360g
ramPerThread=$6
# queue to submit job to
# suggested values: main or himem
queue=$7
SCRIPTPATH=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )