Changeset 19625
- Timestamp:
- 10/08/15 11:14:36 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/pfe.m
r19617 r19625 151 151 if cluster.interactive, 152 152 fid=fopen([modelname '.run'],'w'); 153 if ~isvalgrind, 154 fprintf(fid,'mpiexec -np %i %s/issm.exe %s %s %s\n',cluster.np,cluster.codepath,EnumToString(solution),[cluster.executionpath '/Interactive' num2str(cluster.interactive)],modelname); 155 else 156 fprintf(fid,'mpiexec -np %i valgrind --leak-check=full %s/issm.exe %s %s %s\n',cluster.np,cluster.codepath,EnumToString(solution),[cluster.executionpath '/Interactive' num2str(cluster.interactive)],modelname); 153 if cluster.interactive==10, 154 fprintf(fid,'module unload mpi-mvapich2/1.4.1/gcc\n'); 155 fprintf(fid,'mpiexec -np %i %s/issm.exe %s %s %s\n',cluster.np,cluster.codepath,EnumToString(solution),[pwd() '/run'],modelname); 156 else 157 if ~isvalgrind, 158 fprintf(fid,'mpiexec -np %i %s/issm.exe %s %s %s\n',cluster.np,cluster.codepath,EnumToString(solution),[cluster.executionpath '/Interactive' num2str(cluster.interactive)],modelname); 159 else 160 fprintf(fid,'mpiexec -np %i valgrind --leak-check=full %s/issm.exe %s %s %s\n',cluster.np,cluster.codepath,EnumToString(solution),[cluster.executionpath '/Interactive' num2str(cluster.interactive)],modelname); 161 end 157 162 end 158 163 if ~io_gather, %concatenate the output files: … … 247 252 if cluster.interactive, 248 253 fid=fopen([modelname '.run'],'w'); 249 fprintf(fid,['mpiexec -np %i ./mitgcmuv && touch ' modelname '.lock %s\n'],np); 254 fprintf(fid,'module load mpi-mvapich2/1.4.1/gcc\n'); 255 fprintf(fid,['mpiexec -np %i ./mitgcmuv \n'],np); 256 fprintf(fid,['touch ' modelname '.lock %s\n']); 250 257 fclose(fid); 251 258 fid=fopen([modelname '.errlog'],'w'); … … 269 276 270 277 disp('uploading input file and queueing script'); 271 if cluster.interactive, 278 if cluster.interactive==10, 279 directory=[pwd() '/run/']; 280 elseif cluster.interactive, 272 281 directory=[cluster.executionpath '/Interactive' num2str(cluster.interactive)]; 273 282 else … … 297 306 launchcommand=['cd ' cluster.executionpath '/Interactive' num2str(cluster.interactive)]; 298 307 else 299 launchcommand=['cd ' cluster.executionpath '/Interactive' num2str(cluster.interactive) ' && tar -zxf ' dirname '.tar.gz']; 308 if cluster.interactive==10, 309 launchcommand=['cd ' pwd() '/run && tar -zxf ' dirname '.tar.gz']; 310 else 311 launchcommand=['cd ' cluster.executionpath '/Interactive' num2str(cluster.interactive) ' && tar -zxf ' dirname '.tar.gz']; 312 end 300 313 end 301 314 end … … 308 321 309 322 %copy files from cluster to current directory 310 if ~cluster.interactive, 323 if cluster.interactive==10, 324 directory=[pwd() '/run/']; 325 elseif ~cluster.interactive, 311 326 directory=[cluster.executionpath '/' dirname '/']; 312 327 else
Note:
See TracChangeset
for help on using the changeset viewer.