Changeset 418 for trunk/src


Ignore:
Timestamp:
May 9, 2012, 6:58:58 PM (12 years ago)
Author:
g7moreau
Message:
  • Fix max walltime to 12h for oar-parexec No problem if need more, idempotent job !
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/civ.m

    r417 r418  
    16081608        case 'oar'
    16091609           
     1610            max_walltime=3600*12; % 12h max
    16101611            oar_modes={'oar-parexec','oar-dispatch','mpilauncher'};
    16111612            text={'Batch processing on servcalcul3 LEGI';...
    16121613                'Please choose one of the followint modes';...
    1613                 '* oar-parexec : best choice';...
     1614                '* oar-parexec : default and best choice';...
    16141615                '* oar-dispatch : jobs in a container of several cores';...
    16151616                '* mpilauncher : one single parallel mpi job using several cores';...
     
    16331634                        '-t idempotent --checkpoint ' num2str(walltime_onejob+60) ' '...
    16341635                        '-l /core=' num2str(ncores) ','...
    1635                             'walltime=' datestr(1.05*walltime_onejob/86400*max(length(batch_file_list),ncores)/ncores,13) ' '...
     1636                            'walltime=' datestr(max(1.05*walltime_onejob/86400*max(length(batch_file_list),ncores)/ncores,max_walltime),13) ' '...
    16361637                        '-E ' regexprep(filename_joblist,'\.txt\>','.stderr') ' '...
    16371638                        '-O ' regexprep(filename_joblist,'\.txt\>','.stdout') ' '...
Note: See TracChangeset for help on using the changeset viewer.