mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 20:48:02 +00:00
24 lines
425 B
Bash
24 lines
425 B
Bash
|
nthreads=6
|
||
|
memory=16
|
||
|
on_login=${1}
|
||
|
queue="berg"
|
||
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
||
|
file="fit_init.py"
|
||
|
|
||
|
|
||
|
simname="csiborg2_varysmall"
|
||
|
nsims="-1"
|
||
|
|
||
|
|
||
|
pythoncm="$env $file --nsims $nsims --simname $simname"
|
||
|
if [ $on_login -eq 1 ]; then
|
||
|
echo $pythoncm
|
||
|
$pythoncm
|
||
|
else
|
||
|
cm="addqueue -q $queue -n $nthreads -m $memory $pythoncm"
|
||
|
echo "Submitting:"
|
||
|
echo $cm
|
||
|
echo
|
||
|
eval $cm
|
||
|
fi
|