Changeset 19625


Ignore:
Timestamp:
10/08/15 11:14:36 (9 years ago)
Author:
seroussi
Message:

fixed interactive mitgcm/issm coupling on pleiades

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/pfe.m

    r19617 r19625  
    151151                         if cluster.interactive,
    152152                                 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
    157162                                 end
    158163                                 if ~io_gather, %concatenate the output files:
     
    247252                         if cluster.interactive,
    248253                                 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']);
    250257                                 fclose(fid);
    251258                                 fid=fopen([modelname '.errlog'],'w');
     
    269276
    270277                         disp('uploading input file and queueing script');
    271                          if cluster.interactive,
     278                         if cluster.interactive==10,
     279                                 directory=[pwd() '/run/'];
     280                         elseif cluster.interactive,
    272281                                 directory=[cluster.executionpath '/Interactive' num2str(cluster.interactive)];
    273282                         else
     
    297306                                         launchcommand=['cd ' cluster.executionpath '/Interactive' num2str(cluster.interactive)];
    298307                                 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
    300313                                 end
    301314                         end
     
    308321
    309322                         %copy files from cluster to current directory
    310                          if ~cluster.interactive,
     323                         if cluster.interactive==10,
     324                                 directory=[pwd() '/run/'];
     325                         elseif ~cluster.interactive,
    311326                                 directory=[cluster.executionpath '/' dirname '/'];
    312327                         else
Note: See TracChangeset for help on using the changeset viewer.