Changes between Version 63 and Version 64 of cypress/using


Ignore:
Timestamp:
09/27/21 18:47:34 (3 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/using

    v63 v64  
    369369
    370370=== Jobs Dependency ===
    371 Job dependencies are used to defer the start of a job until the specified dependencies have been satisfied. They are specified with the —dependency option to sbatch command.
    372 
     371Job dependencies are used to defer the start of a job until the specified dependencies have been satisfied. They are specified with the '''--dependency''' option to '''sbatch''' command.
     372{{{
    373373sbatch --dependency=<type:job_id[:job_id][,type:job_id[:job_id]]> ...
     374}}}
     375
    374376Dependency types:
    375 
    376 after:jobid[:jobid…] job can begin after the specified jobs have started
    377 afterany:jobid[:jobid…] job can begin after the specified jobs have terminated
    378 afternotok:jobid[:jobid…] job can begin after the specified jobs have failed
    379 afterok:jobid[:jobid…] job can begin after the specified jobs have run to completion with an exit code of zero (see the user guide for caveats).
     377* '''after:jobid[:jobid...]'''  job can begin after the specified jobs have started
     378* '''afterany:jobid[:jobid...]'''       job can begin after the specified jobs have terminated
     379* '''afternotok:jobid[:jobid...]'''     job can begin after the specified jobs have failed
     380* '''afterok:jobid[:jobid...]'''        job can begin after the specified jobs have run to completion with an exit code of zero (see the user guide for caveats).
    380381
    381382See [https://wiki.hpc.tulane.edu/trac/wiki/Workshops/cypress/JobDependency here] for more about job-dependency.