mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 17:28:02 +00:00
25 lines
499 B
Bash
Executable file
25 lines
499 B
Bash
Executable file
nthreads=3
|
|
memory=40
|
|
on_login=${1}
|
|
queue="berg"
|
|
env="/mnt/users/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="field_los.py"
|
|
|
|
catalogue=${2}
|
|
nsims="-1"
|
|
simname="csiborg2_main"
|
|
MAS="SPH"
|
|
grid=1024
|
|
|
|
|
|
pythoncm="$env $file --catalogue $catalogue --nsims $nsims --simname $simname --MAS $MAS --grid $grid"
|
|
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
|