I looked at your submission file and can find one error quickly that would present a problem. When you define
nproc=???
it's a fairly large number (I changed it before I realized that might be the problem).
This number should be identical to the number of nodes you request on the -l line. If not, MPI is trying to run all the jobs (let's say 360) on only 20 nodes. This will definitely have errors if you run any sort of job with large memory requests and might also be the cause of your current issue.
I changed the numbers (set to nproc=20) and ran it myself and it completed successfully. If it doesn't work for you still after you make this change, I can look into it again.
Nathan