Changeset 912 for trunk/src/series.m
- Timestamp:
- Jun 16, 2015, 8:15:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r911 r912 1929 1929 end 1930 1930 end 1931 filename_joblist=fullfile(DirOAR,' 0_job_list.txt');%create name of the global executable file1931 filename_joblist=fullfile(DirOAR,'job_list.txt');%create name of the global executable file 1932 1932 filename_log=fullfile(DirLog,'job_list.stdout');%file for output messages of the master oar process 1933 1933 filename_errors=fullfile(DirLog,'job_list.stderr');%file for error messages of the master oar process … … 1947 1947 % shorter than the wall time: in the time interval 'checkpoint' (WallTimeOneJob) before the end of the allowed duration, 1948 1948 % the oar job restarts when an individual job ends. 1949 JobTime=CPUTime*BlockLength*nbfield_j % estimated time for one individual job (in minutes)1949 JobTime=CPUTime*BlockLength*nbfield_j;% estimated time for one individual job (in minutes) 1950 1950 % wall time (in hours ) for each oar job, allowing 10 individual jobs, but limited to 23 h: 1951 1951 WallTimeTotal=min(23,4*JobTime/60); 1952 disp(['WallTimeTotal: ' num2str(WallTimeTotal) ' hours'])1952 %disp(['WallTimeTotal: ' num2str(WallTimeTotal) ' hours']) 1953 1953 % estimated time of an individual job (in min), with a margin of error 1954 1954 WallTimeOneJob=min(4*JobTime+10,WallTimeTotal*60/2);% estimated max time of an individual job for checkpoint … … 3396 3396 elseif isequal(Civ,4) || isequal(Civ,5) 3397 3397 imax=3; 3398 else if isequal(Civ,6) %patch23398 else%if isequal(Civ,6) %patch2 3399 3399 imax=4; 3400 3400 end
Note: See TracChangeset
for help on using the changeset viewer.