Changeset 22942
- Timestamp:
- 07/13/18 14:23:07 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/loadresultsfromcluster.m
r19335 r22942 1 function md=loadresultsfromcluster(md, runtimename)1 function md=loadresultsfromcluster(md,varargin) 2 2 %LOADRESULTSFROMCLUSTER - load results of solution sequence from cluster 3 3 % 4 4 % Usage: 5 % md=loadresultsfromcluster(md,runtimename); 5 % md=loadresultsfromcluster(md,varargin); 6 % options include runtimename and nolog. 7 8 %process options: 9 options=pairoptions(varargin{:}); 10 nolog=getfieldvalue(options,'nolog',0); 6 11 7 12 %retrieve cluster, to be able to call its methods 8 13 cluster=md.cluster; 9 14 10 if nargin==2,11 md.private.runtimename= runtimename;15 if exist(options,'runtimename'), 16 md.private.runtimename=getfieldvalue(optoins,'runtimename'); 12 17 end 13 18 14 19 %Download outputs from the cluster 15 filelist={[md.miscellaneous.name '.outlog'],[md.miscellaneous.name '.errlog']}; 20 if ~nolog, 21 filelist={[md.miscellaneous.name '.outlog'],[md.miscellaneous.name '.errlog']}; 22 else 23 filelist={}; 24 end 16 25 if md.qmu.isdakota, 17 26 filelist{end+1}=[md.miscellaneous.name '.qmu.err']; … … 35 44 delete([['qmu' num2str(feature('GetPid')) '/'] md.miscellaneous.name '.errlog']); 36 45 else 37 delete([md.miscellaneous.name '.outlog']); 38 delete([md.miscellaneous.name '.errlog']); 46 if ~nolog, 47 delete([md.miscellaneous.name '.outlog']); 48 delete([md.miscellaneous.name '.errlog']); 49 end 39 50 delete([md.miscellaneous.name '.outbin']); 40 51 if exist([md.private.runtimename '.tar.gz']) & ~ispc(),
Note:
See TracChangeset
for help on using the changeset viewer.