mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 18:48:01 +00:00
20 lines
393 B
Bash
Executable file
20 lines
393 B
Bash
Executable file
nthreads=5
|
|
memory=40
|
|
on_login=0
|
|
queue="berg"
|
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="field_observer_velocity.py"
|
|
|
|
simname=${1}
|
|
|
|
pythoncm="$env $file --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
|