Many of the examples have scripts that assume the user is running in Slurm. This is fine for production at a specific site, but examples should generally assume local development. Or the scripts should be clearly named like run_slurm.sh or run_local.sh. Most (all?) of the examples seem to be setup this way now.
The dev toolkit setup should also not be hard-coded into script the script like this:
#!/usr/bin/scl enable devtoolset-8 -- /bin/bash
Any example that is actually be used for production should be migrated to a directory under prod.
Many of the examples have scripts that assume the user is running in Slurm. This is fine for production at a specific site, but examples should generally assume local development. Or the scripts should be clearly named like
run_slurm.sh
orrun_local.sh
. Most (all?) of the examples seem to be setup this way now.The dev toolkit setup should also not be hard-coded into script the script like this:
#!/usr/bin/scl enable devtoolset-8 -- /bin/bash
Any example that is actually be used for production should be migrated to a directory under
prod
.