forked from cdt-data-science/cluster-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
but weirdly, my run_experiment script is broken
getopts appears to have changed behaviour
all examples where you want to supply slurm args are wrong, you now need to insert a -- between normal and slurm args to avoid error
e.g.
BAD
run_experiment -b example/slurm_arrayjob.sh -e example/experiments.txt \\
-m 12 --cpus-per-task=4 --gres=gpu:1 --mem=8000
GOOD
run_experiment -b example/slurm_arrayjob.sh -e example/experiments.txt \\
-m 12 -- --cpus-per-task=4 --gres=gpu:1 --mem=8000
Update all usage examples
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working