diff --git a/bin/slurm_calibrate.sh b/bin/slurm_calibrate.sh index 9f54463439b4f32676afe5c91073cd048ec3005e..0e22b20ca25f2367017a340aba3e247201ea7b6e 100755 --- a/bin/slurm_calibrate.sh +++ b/bin/slurm_calibrate.sh @@ -3,7 +3,7 @@ # set paths to use nb_path=$1 python_path=$2 -uuid=$3 +ipcluster_profile=$3 notebook=$4 detector=$5 caltype=$6 @@ -14,7 +14,7 @@ cluster_cores=$9 echo "Running with the following parameters:" echo "Notebook path: $nb_path" echo "Python path: $python_path" -echo "IP-Cluster profile: $uuid" +echo "IP-Cluster profile: $ipcluster_profile" echo "notebook: $notebook" echo "detector: $detector" echo "caltype: $caltype" @@ -39,8 +39,8 @@ export MPLBACKEND=AGG # start an ip cluster if requested if [ "${uuid}" != "NO_CLUSTER" ] then - ${python_path} -m IPython profile create ${uuid} --parallel - ${python_path} -m ipyparallel.cluster start --n=${cluster_cores} --profile=${uuid} --daemon & + ${python_path} -m IPython profile create ${ipcluster_profile} --parallel + ${python_path} -m ipyparallel.cluster start --n=${cluster_cores} --profile=${ipcluster_profile} --daemon & sleep 15 fi @@ -51,8 +51,8 @@ ${python_path} -m nbconvert --to rst --ExecutePreprocessor.timeout=36000 --Execu # stop the cluster if requested if [ "${uuid}" != "NO_CLUSTER" ] then - ${python_path} -m ipyparallel.cluster stop --profile=${uuid} - profile_path=$(${python_path} -m IPython locate profile ${uuid}) + ${python_path} -m ipyparallel.cluster stop --profile=${ipcluster_profile} + profile_path=$(${python_path} -m IPython locate profile ${ipcluster_profile}) echo "Removing cluster profile from: $profile_path" rm -rf $profile_path fi