Changeset 17050
- Timestamp:
- 12/23/13 13:38:42 (11 years ago)
- Location:
- issm/trunk-jpl/src/m/solve
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/solve/marshall.m ¶
r16514 r17050 8 8 % marshall(md) 9 9 10 disp(['marshalling file ' md.miscellaneous.name '.bin']); 10 if md.verbose.solution, 11 disp(['marshalling file ' md.miscellaneous.name '.bin']); 12 end 11 13 12 14 %open file for binary writing -
TabularUnified issm/trunk-jpl/src/m/solve/solve.m ¶
r15771 r17050 33 33 34 34 %check model consistency 35 disp('checking model consistency'); 35 if md.verbose.solution, 36 disp('checking model consistency'); 37 end 36 38 if (solutionenum == FlaimSolutionEnum()) 37 39 md.private.isconsistent=true; … … 75 77 %Stop here if batch mode 76 78 if strcmpi(options.batch,'yes') 77 disp('batch mode requested: not launching job interactively'); 78 disp('launch solution sequence on remote cluster by hand'); 79 if md.verbose.solution, 80 disp('batch mode requested: not launching job interactively'); 81 disp('launch solution sequence on remote cluster by hand'); 82 end 79 83 return; 80 84 end … … 96 100 %did we even try to run? if so, wait on lock 97 101 if strcmpi(options.upload,'on'), 98 disp('solve done uploading test decks'); 102 if md.verbose.solution, 103 disp('solve done uploading test decks'); 104 end 99 105 return; 100 106 end … … 113 119 %we wait for the done file 114 120 done=waitonlock(md); 115 disp('loading results from cluster'); 121 if md.verbose.solution, 122 disp('loading results from cluster'); 123 end 116 124 md=loadresultsfromcluster(md); 117 125 elseif md.settings.waitonlock==0,
Note:
See TracChangeset
for help on using the changeset viewer.