Changeset 6039 for issm/trunk
- Timestamp:
- 09/26/10 15:49:28 (15 years ago)
- Location:
- issm/trunk/src/m
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/clusters/astrid.m
r6038 r6039 94 94 disp('uploading input file and queueing script'); 95 95 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 96 97 disp('launching solution sequence on remote cluster'); 98 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 96 99 else 97 100 disp('batch mode requested: not launching job interactively'); … … 99 102 end 100 103 101 end 102 %}}} 104 end %}}} 105 function Download(cluster,md)%{{{1 106 107 %some check 108 if isempty(md.runtimename), 109 error('pfe Download error message: supply runtime name for results to be loaded!'); 110 end 111 112 %Figure out the directory where all the files are in: 113 directory=[executionpath '/' md.runtimename '/']; 114 115 %What packages are we picking up from remote cluster 116 packages={[md.name '.outlog'],[md.name '.errlog']}; 117 if md.qmu_analysis, 118 packages{end+1}=[md.name '.qmu.err']; 119 packages{end+1}=[md.name '.qmu.out']; 120 if isfield(md.qmu_params,'tabular_graphics_data'), 121 if md.qmu_params.tabular_graphics_data==true, 122 packages{end+1}='dakota_tabular.dat'; 123 end 124 end 125 else 126 packages{end+1}=[md.name '.outbin']; 127 end 128 129 %copy files from cluster to present directory 130 issmscpin(clustername, login, port, directory, packages); 131 end %}}} 103 132 end 104 133 end -
issm/trunk/src/m/clusters/castor.m
r6038 r6039 97 97 disp('uploading input file and queueing script'); 98 98 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 99 100 disp('launching solution sequence on remote cluster'); 101 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 102 99 103 else 100 104 disp('batch mode requested: not launching job interactively'); … … 104 108 end 105 109 %}}} 110 function Download(cluster,md)%{{{1 111 112 %some check 113 if isempty(md.runtimename), 114 error('pfe Download error message: supply runtime name for results to be loaded!'); 115 end 116 117 %Figure out the directory where all the files are in: 118 directory=[executionpath '/' md.runtimename '/']; 119 120 %What packages are we picking up from remote cluster 121 packages={[md.name '.outlog'],[md.name '.errlog']}; 122 if md.qmu_analysis, 123 packages{end+1}=[md.name '.qmu.err']; 124 packages{end+1}=[md.name '.qmu.out']; 125 if isfield(md.qmu_params,'tabular_graphics_data'), 126 if md.qmu_params.tabular_graphics_data==true, 127 packages{end+1}='dakota_tabular.dat'; 128 end 129 end 130 else 131 packages{end+1}=[md.name '.outbin']; 132 end 133 134 %copy files from cluster to present directory 135 issmscpin(clustername, login, port, directory, packages); 136 end %}}} 106 137 end 107 138 end -
issm/trunk/src/m/clusters/cosmos.m
r6038 r6039 96 96 disp('uploading input file and queueing script'); 97 97 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 98 99 disp('launching solution sequence on remote cluster'); 100 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 101 98 102 else 99 103 disp('batch mode requested: not launching job interactively'); … … 103 107 end 104 108 %}}} 109 function Download(cluster,md)%{{{1 110 111 %some check 112 if isempty(md.runtimename), 113 error('pfe Download error message: supply runtime name for results to be loaded!'); 114 end 115 116 %Figure out the directory where all the files are in: 117 directory=[executionpath '/' md.runtimename '/']; 118 119 %What packages are we picking up from remote cluster 120 packages={[md.name '.outlog'],[md.name '.errlog']}; 121 if md.qmu_analysis, 122 packages{end+1}=[md.name '.qmu.err']; 123 packages{end+1}=[md.name '.qmu.out']; 124 if isfield(md.qmu_params,'tabular_graphics_data'), 125 if md.qmu_params.tabular_graphics_data==true, 126 packages{end+1}='dakota_tabular.dat'; 127 end 128 end 129 else 130 packages{end+1}=[md.name '.outbin']; 131 end 132 133 %copy files from cluster to present directory 134 issmscpin(clustername, login, port, directory, packages); 135 end %}}} 105 136 end 106 137 end -
issm/trunk/src/m/clusters/ericmac.m
r6038 r6039 93 93 disp('uploading input file and queueing script'); 94 94 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 95 96 disp('launching solution sequence on remote cluster'); 97 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 98 95 99 else 96 100 disp('batch mode requested: not launching job interactively'); … … 100 104 end 101 105 %}}} 106 function Download(cluster,md)%{{{1 107 108 %some check 109 if isempty(md.runtimename), 110 error('pfe Download error message: supply runtime name for results to be loaded!'); 111 end 112 113 %Figure out the directory where all the files are in: 114 directory=[executionpath '/' md.runtimename '/']; 115 116 %What packages are we picking up from remote cluster 117 packages={[md.name '.outlog'],[md.name '.errlog']}; 118 if md.qmu_analysis, 119 packages{end+1}=[md.name '.qmu.err']; 120 packages{end+1}=[md.name '.qmu.out']; 121 if isfield(md.qmu_params,'tabular_graphics_data'), 122 if md.qmu_params.tabular_graphics_data==true, 123 packages{end+1}='dakota_tabular.dat'; 124 end 125 end 126 else 127 packages{end+1}=[md.name '.outbin']; 128 end 129 130 %copy files from cluster to present directory 131 issmscpin(clustername, login, port, directory, packages); 132 end %}}} 102 133 end 103 134 end -
issm/trunk/src/m/clusters/gemini.m
r6038 r6039 97 97 disp('uploading input file and queueing script'); 98 98 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 99 100 disp('launching solution sequence on remote cluster'); 101 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 102 99 103 else 100 104 disp('batch mode requested: not launching job interactively'); … … 104 108 end 105 109 %}}} 110 function Download(cluster,md)%{{{1 111 112 %some check 113 if isempty(md.runtimename), 114 error('pfe Download error message: supply runtime name for results to be loaded!'); 115 end 116 117 %Figure out the directory where all the files are in: 118 directory=[executionpath '/' md.runtimename '/']; 119 120 %What packages are we picking up from remote cluster 121 packages={[md.name '.outlog'],[md.name '.errlog']}; 122 if md.qmu_analysis, 123 packages{end+1}=[md.name '.qmu.err']; 124 packages{end+1}=[md.name '.qmu.out']; 125 if isfield(md.qmu_params,'tabular_graphics_data'), 126 if md.qmu_params.tabular_graphics_data==true, 127 packages{end+1}='dakota_tabular.dat'; 128 end 129 end 130 else 131 packages{end+1}=[md.name '.outbin']; 132 end 133 134 %copy files from cluster to present directory 135 issmscpin(clustername, login, port, directory, packages); 136 end %}}} 106 137 end 107 138 end -
issm/trunk/src/m/clusters/larsen.m
r6038 r6039 93 93 disp('uploading input file and queueing script'); 94 94 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 95 96 disp('launching solution sequence on remote cluster'); 97 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 98 95 99 else 96 100 disp('batch mode requested: not launching job interactively'); … … 100 104 end 101 105 %}}} 106 function Download(cluster,md)%{{{1 107 108 %some check 109 if isempty(md.runtimename), 110 error('pfe Download error message: supply runtime name for results to be loaded!'); 111 end 112 113 %Figure out the directory where all the files are in: 114 directory=[executionpath '/' md.runtimename '/']; 115 116 %What packages are we picking up from remote cluster 117 packages={[md.name '.outlog'],[md.name '.errlog']}; 118 if md.qmu_analysis, 119 packages{end+1}=[md.name '.qmu.err']; 120 packages{end+1}=[md.name '.qmu.out']; 121 if isfield(md.qmu_params,'tabular_graphics_data'), 122 if md.qmu_params.tabular_graphics_data==true, 123 packages{end+1}='dakota_tabular.dat'; 124 end 125 end 126 else 127 packages{end+1}=[md.name '.outbin']; 128 end 129 130 %copy files from cluster to present directory 131 issmscpin(clustername, login, port, directory, packages); 132 end %}}} 102 133 end 103 134 end -
issm/trunk/src/m/clusters/pfe.m
r6038 r6039 122 122 fclose(fid); 123 123 end 124 end 125 %}}} 124 end %}}} 126 125 function LaunchQueueJob(cluster,md,options)%{{{1 127 126 … … 139 138 compressstring=['tar -zcf ' md.runtimename '.tar.gz ' md.name '.bin ' md.name '.queue ' md.name '.petsc ']; 140 139 if md.qmu_analysis, 141 compressstring=[compressstring md.name '.qmu.in '];140 compressstring=[compressstring md.name '.qmu.in ']; 142 141 end 143 142 if cluster.interactive, … … 166 165 end 167 166 %}}} 167 function Download(cluster,md)%{{{1 168 169 %some check 170 if isempty(md.runtimename), 171 if ~cluster.interactive, 172 error('pfe Download error message: supply runtime name for results to be loaded!'); 173 end 174 end 175 176 %Figure out the directory where all the files are in: 177 if ~cluster.interactive, 178 directory=[executionpath '/' md.runtimename '/']; 179 else 180 directory=[executionpath '/Interactive/']; 181 end 182 183 %What packages are we picking up from remote cluster 184 packages={[md.name '.outlog'],[md.name '.errlog']}; 185 if md.qmu_analysis, 186 packages{end+1}=[md.name '.qmu.err']; 187 packages{end+1}=[md.name '.qmu.out']; 188 if isfield(md.qmu_params,'tabular_graphics_data'), 189 if md.qmu_params.tabular_graphics_data==true, 190 packages{end+1}='dakota_tabular.dat'; 191 end 192 end 193 else 194 packages{end+1}=[md.name '.outbin']; 195 end 196 197 %copy files from cluster to present directory 198 issmscpin(clustername, login, port, directory, packages); 199 end %}}} 168 200 end 169 201 end -
issm/trunk/src/m/clusters/pollux.m
r6038 r6039 97 97 disp('uploading input file and queueing script'); 98 98 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 99 100 disp('launching solution sequence on remote cluster'); 101 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 102 99 103 else 100 104 disp('batch mode requested: not launching job interactively'); … … 104 108 end 105 109 %}}} 110 function Download(cluster,md)%{{{1 111 112 %some check 113 if isempty(md.runtimename), 114 error('pfe Download error message: supply runtime name for results to be loaded!'); 115 end 116 117 %Figure out the directory where all the files are in: 118 directory=[executionpath '/' md.runtimename '/']; 119 120 %What packages are we picking up from remote cluster 121 packages={[md.name '.outlog'],[md.name '.errlog']}; 122 if md.qmu_analysis, 123 packages{end+1}=[md.name '.qmu.err']; 124 packages{end+1}=[md.name '.qmu.out']; 125 if isfield(md.qmu_params,'tabular_graphics_data'), 126 if md.qmu_params.tabular_graphics_data==true, 127 packages{end+1}='dakota_tabular.dat'; 128 end 129 end 130 else 131 packages{end+1}=[md.name '.outbin']; 132 end 133 134 %copy files from cluster to present directory 135 issmscpin(clustername, login, port, directory, packages); 136 end %}}} 106 137 end 107 138 end -
issm/trunk/src/m/clusters/wilkes.m
r6038 r6039 93 93 disp('uploading input file and queueing script'); 94 94 issmscpout(md.cluster.name,md.cluster.executionpath,md.cluster.login,md.cluster.port,{[md.runtimename '.tar.gz']}); 95 96 disp('launching solution sequence on remote cluster'); 97 issmssh(md.cluster.name,md.cluster.login,md.cluster.port,launchcommand); 98 95 99 else 96 100 disp('batch mode requested: not launching job interactively'); … … 100 104 end 101 105 %}}} 106 function Download(cluster,md)%{{{1 107 108 %some check 109 if isempty(md.runtimename), 110 error('pfe Download error message: supply runtime name for results to be loaded!'); 111 end 112 113 %Figure out the directory where all the files are in: 114 directory=[executionpath '/' md.runtimename '/']; 115 116 %What packages are we picking up from remote cluster 117 packages={[md.name '.outlog'],[md.name '.errlog']}; 118 if md.qmu_analysis, 119 packages{end+1}=[md.name '.qmu.err']; 120 packages{end+1}=[md.name '.qmu.out']; 121 if isfield(md.qmu_params,'tabular_graphics_data'), 122 if md.qmu_params.tabular_graphics_data==true, 123 packages{end+1}='dakota_tabular.dat'; 124 end 125 end 126 else 127 packages{end+1}=[md.name '.outbin']; 128 end 129 130 %copy files from cluster to present directory 131 issmscpin(clustername, login, port, directory, packages); 132 end %}}} 102 133 end 103 134 end -
issm/trunk/src/m/model/loadresultsfromcluster.m
r5963 r6039 5 5 % md=loadresultsfromcluster(md,runtimename); 6 6 7 %Figure out parameters for this particular cluster 8 codepath=md.cluster.codepath; 9 executionpath=md.cluster.executionpath; 10 login=md.cluster.login; 11 port=md.cluster.port; 12 clustername=md.cluster.name; 7 %retrieve cluster, to be able to call its methods 8 cluster=md.cluster; 13 9 14 10 if nargin==2, … … 16 12 end 17 13 18 if isempty(md.runtimename), 19 error('supply runtime name for results to be loaded!'); 20 end 21 22 %Figure out the directory where all the files are in: 23 directory=[executionpath '/' md.runtimename '/']; 24 25 %What packages are we picking up from remote cluster 26 packages={[md.name '.outlog'],[md.name '.errlog']}; 27 if md.qmu_analysis, 28 packages{end+1}=[md.name '.qmu.err']; 29 packages{end+1}=[md.name '.qmu.out']; 30 if isfield(md.qmu_params,'tabular_graphics_data'), 31 if md.qmu_params.tabular_graphics_data==true, 32 packages{end+1}='dakota_tabular.dat'; 33 end 34 end 35 else 36 packages{end+1}=[md.name '.outbin']; 37 end 38 39 %copy files from cluster to present directory 40 issmscpin(clustername, login, port, directory, packages); 14 %Download outputs from the cluster 15 cluster.Download(md); 41 16 42 17 %read log files onto fields
Note:
See TracChangeset
for help on using the changeset viewer.