Skip to content
Snippets Groups Projects
Commit 5a1800f2 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix

parent ccda3846
No related merge requests found
...@@ -34,6 +34,12 @@ echo "Detected GPUS: $GPUS" ...@@ -34,6 +34,12 @@ echo "Detected GPUS: $GPUS"
PROCESSORS=$(getconf _NPROCESSORS_ONLN) PROCESSORS=$(getconf _NPROCESSORS_ONLN)
echo "Detected processors: $PROCESSORS" echo "Detected processors: $PROCESSORS"
NUM_JOBS=$GPUS
if [ "$NUM_JOBS" -eq "0" ]; then
NUM_JOBS=1
fi
echo "Num jobs: $NUM_JOBS"
export PYTHONUNBUFFERED=1 export PYTHONUNBUFFERED=1
for kind in with_mass_spec no_mass_spec for kind in with_mass_spec no_mass_spec
...@@ -48,7 +54,7 @@ do ...@@ -48,7 +54,7 @@ do
--out-models-dir models.${kind} \ --out-models-dir models.${kind} \
--worker-log-dir "$SCRATCH_DIR/$DOWNLOAD_NAME" \ --worker-log-dir "$SCRATCH_DIR/$DOWNLOAD_NAME" \
--verbosity 0 \ --verbosity 0 \
--num-jobs $GPUS --max-tasks-per-worker 1 --gpus $GPUS --max-workers-per-gpu 1 --num-jobs $NUM_JOBS --max-tasks-per-worker 1 --gpus $GPUS --max-workers-per-gpu 1
done done
cp $SCRIPT_ABSOLUTE_PATH . cp $SCRIPT_ABSOLUTE_PATH .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment