We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
GOOD
Update all usage examples
The text was updated successfully, but these errors were encountered: