Changeset 906 for trunk/src/series.m
- Timestamp:
- May 31, 2015, 7:49:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r905 r906 1719 1719 end 1720 1720 CPUTime=5;% job time estimated at 5 min per iteration (on index i and j) by default 1721 if isfield(Param , 'CPUTime') && ~isempty(Param.CPUTime)1722 CPUTime=Param. CPUTime;%Note: CpUTime for one iteration ref_i has to be multiplied by the number of j indices nbfield_j1721 if isfield(Param.Action, 'CPUTime') && ~isempty(Param.Action.CPUTime) 1722 CPUTime=Param.Action.CPUTime;%Note: CpUTime for one iteration ref_i has to be multiplied by the number of j indices nbfield_j 1723 1723 end 1724 1724 nbfield_j=numel(ref_j); % number of j indices … … 1853 1853 t=set(t,1,'name','Series'); 1854 1854 filexml=fullfile_uvmat(DirXml,'',Param.InputTable{1,3},'.xml',OutputNomType,... 1855 Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j) 1855 Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j); 1856 1856 save(t,filexml);% save the parameter file 1857 1857 … … 1939 1939 % end 1940 1940 filename_joblist=fullfile(DirExe,'0_job_list.txt');%create name of the global executable file 1941 filename_log=fullfile(DirLog,' 0_job_list.stdout');%file for output messages of the master oar process1942 filename_errors=fullfile(DirLog,' 0_job_list.stderr');%file for error messages of the master oar process1941 filename_log=fullfile(DirLog,'job_list.stdout');%file for output messages of the master oar process 1942 filename_errors=fullfile(DirLog,'job_list.stderr');%file for error messages of the master oar process 1943 1943 1944 1944 fid=fopen(filename_joblist,'w'); … … 1966 1966 '-t idempotent --checkpoint ' num2str(WallTimeOneJob*60) ' '... 1967 1967 '-l /core=' num2str(NbCore) ','... 1968 'walltime=' datestr(WallTime OneJob/24,13) ' '...1968 'walltime=' datestr(WallTimeTotal/24,13) ' '... 1969 1969 '-E ' filename_errors ' '... 1970 1970 '-O ' filename_log ' '...
Note: See TracChangeset
for help on using the changeset viewer.