Changeset 1010 for trunk/src/series.m


Ignore:
Timestamp:
Sep 22, 2017, 12:33:16 PM (7 years ago)
Author:
sommeria
Message:

multimask introduced

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series.m

    r1009 r1010  
    20452045        WallTimeOneJob=min(4*JobTime+10,WallTimeTotal*60/2); % estimated max time of an individual job for checkpoint
    20462046        disp(['WallTimeOneJob: ' num2str(WallTimeOneJob) ' minutes'])
     2047        if NbProcess>=8
     2048            bigiojob_string=['+{type = ' char(39) 'bigiojob' char(39) '}/licence=1'];% char(39) is quote - bigiojob limit UVmat parallel launch on cluster to avoid saturation of disk access to data
     2049        else
     2050            bigiojob_string='';
     2051        end
    20472052        oar_command=['oarsub -n UVmat_' ActionFullName ' '...
    20482053            '-t idempotent --checkpoint ' num2str(WallTimeOneJob*60) ' '...
    20492054            '-l "/core=' num2str(NbCore)...
    2050             '+{type = ' char(39) 'bigiojob' char(39) '}/licence=1'... % char(39) is quote - bigiojob limit UVmat parallel launch on cluster
     2055            bigiojob_string... % char(39) is quote - bigiojob limit UVmat parallel launch on cluster
    20512056            ',walltime=' datestr(WallTimeTotal/24,13) '" '...
    20522057            '-E ' filename_errors ' '...
Note: See TracChangeset for help on using the changeset viewer.