Changes between Version 1 and Version 2 of cypress/GNUparallel


Ignore:
Timestamp:
03/02/23 14:52:47 (14 months ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/GNUparallel

    v1 v2  
    2626
    2727[https://www.gnu.org/software/parallel/parallel_tutorial.html]
     28
     29== Many Task Computing ==
     30For example, you have many scripts to run,
     31{{{
     32[fuji@cypress1 JobArray2]$ ls
     33hello2.py    script01.sh  script03.sh  script05.sh  script07.sh  script09.sh   slurmscript2
     34script00.sh  script02.sh  script04.sh  script06.sh  script08.sh  slurmscript1
     35}}}
     36
     37To run all distributed over 4 cores,
     38{{{
     39[fuji@cypress1 JobArray2]$ parallel -j 4 sh ::: script??.sh
     40}}}