Changes between Version 46 and Version 47 of cypress/using


Ignore:
Timestamp:
02/02/2016 02:00:05 PM (10 years ago)
Author:
fuji
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • cypress/using

    v46 v47  
    241241
    242242
    243 
    244 
    245 
     243=== Notify Job-state-change by email ===
     244You can set to receive email when job becomes active and/or job finishes.
     245
     246For example, by adding following two lines into SLURM script, you will receive emails when the job begins and ends.
     247{{{#!bash
     248#SBATCH --mail-type=ALL
     249#SBATCH [email protected]
     250}}}
     251Valid values for '--mail-type=' are: BEGIN, END, FAIL, REQUEUE and ALL.
     252With ALL, you will get emails at any state change.
    246253
    247254== Submitting Interactive Jobs ==