Changes between Version 1 and Version 2 of cypress/GNUparallel
- Timestamp:
- 03/02/23 14:52:47 (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/GNUparallel
v1 v2 26 26 27 27 [https://www.gnu.org/software/parallel/parallel_tutorial.html] 28 29 == Many Task Computing == 30 For example, you have many scripts to run, 31 {{{ 32 [fuji@cypress1 JobArray2]$ ls 33 hello2.py script01.sh script03.sh script05.sh script07.sh script09.sh slurmscript2 34 script00.sh script02.sh script04.sh script06.sh script08.sh slurmscript1 35 }}} 36 37 To run all distributed over 4 cores, 38 {{{ 39 [fuji@cypress1 JobArray2]$ parallel -j 4 sh ::: script??.sh 40 }}}