Created
February 2, 2019 21:22
-
-
Save kailaix/d73b89c0fe57c00bfb536805cc969be2 to your computer and use it in GitHub Desktop.
Running jobs in parallel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for n in 50 60 70 80 90 100 | |
| do | |
| julia euro_main.jl $n 2>&1 | tee -a euro$n.log & | |
| done | |
| wait %1 %2 %3 %4 %5 %6 | |
| for n in 50 70 90 110 130 150 | |
| do | |
| julia flap_main.jl $n 2>&1 | tee -a flap$n.log & | |
| done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the case where we want to submit a job using
slurm, use