source:
issm/oecreview/Archive/19101-20495/ISSM-19655-19656.diff@
20498
Last change on this file since 20498 was 20498, checked in by , 9 years ago | |
---|---|
File size: 1.3 KB |
-
../trunk-jpl/src/m/qmu/dakota_in_write.m
82 82 83 83 % write the strategy section 84 84 85 strategy_write(fidi,params); 85 if IssmConfig('_DAKOTA_VERSION_') < 6, 86 strategy_write(fidi,params); 87 end 86 88 87 89 % write the method section 88 90 … … 228 230 param_write(fidi,'\t ','file_save','','\n',params); 229 231 elseif params.direct 230 232 % Error: asynchronous capability not yet supported in direct interfaces. 233 % Update: it is now possible to run in parallel in direct interfaces. 231 234 param_write(fidi,'\t','algebraic_mappings',' = ','\n',params); 232 235 param_write(fidi,'\t','direct','','\n',params); 233 236 param_write(fidi,'\t ','analysis_driver',' = ''','''\n',params); 234 param_write(fidi,'\t ','evaluation_static_scheduling','','\n',params); 237 if IssmConfig('_DAKOTA_VERSION_') < 6, 238 param_write(fidi,'\t ','evaluation_static_scheduling','','\n',params); 239 else 240 param_write(fidi,'\t ','evaluation_scheduling',' ','\n',params); 241 param_write(fidi,'\t ','processors_per_evaluation',' = ','\n',params); 242 end 235 243 if ~isempty(params.analysis_components) 236 244 [pathstr,name,ext] = fileparts(params.analysis_components); 237 245 if isempty(ext)
Note:
See TracBrowser
for help on using the repository browser.