Last active
October 21, 2019 18:09
-
-
Save marcusrussi/a8b98c3911dac4f7ef853d31861033d6 to your computer and use it in GitHub Desktop.
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
| N_JOBS=10 # number of jobs to run in parallel | |
| FOLDER='exp3' # where the results should be stored | |
| RESULT_FILE='results_top10.csv' # cols should be [run.id, seed, density, lk] (no header) | |
| parallel -j $N_JOBS --csv \ | |
| mkdir $FOLDER/{1} '&&' \ | |
| srun -p interactive -N1 -n1 --time=10 \ | |
| TBABM -t1 \ | |
| -n30000 \ | |
| -p {1}.json \ | |
| -s {2} \ | |
| -o $FOLDER/{1}/ \ | |
| -m1 \ | |
| :::: $RESULT_FILE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment