Changeset 27228


Ignore:
Timestamp:
08/25/22 16:22:30 (3 years ago)
Author:
Eric.Larour
Message:

CHG: new pfeuq class and some disp modifications.

Location:
issm/branches/trunk-larour-SLPS2022/src/m/classes/clusters
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-SLPS2022/src/m/classes/clusters/pfe.m

    r27224 r27228  
    4949                        disp(sprintf('    np: %i',cluster.nprocs()));
    5050                        disp(sprintf('    port: %i',cluster.port));
    51                         disp(sprintf('    queue: %i',cluster.queue));
     51                        disp(sprintf('    queue: %s',cluster.queue));
    5252                        disp(sprintf('    time: %i',cluster.time));
    53                         disp(sprintf('    processor: %i',cluster.processor));
     53                        disp(sprintf('    processor: %sn',cluster.processor));
    5454                        disp(sprintf('    srcpath: %s',cluster.srcpath));
    5555                        disp(sprintf('    extpkgpath: %s',cluster.extpkgpath));
     
    181181                        fprintf(fid,'cd %s/%s/\n\n',cluster.executionpath,dirname);
    182182                        if ~isvalgrind,
    183                                 fprintf(fid,'/u/scicon/tools/bin/toss3/several_tries mpiexec -np %i /u/scicon/tools/bin/mbind.x -cs -n%i %s/%s %s %s/%s %s\n',cluster.nprocs(),cluster.cpuspernode,cluster.codepath,executable,solution,cluster.executionpath,dirname,modelname);
     183                                fprintf(fid,'mpiexec -np %i /u/scicon/tools/bin/mbind.x -cs -n%i %s/%s %s %s/%s %s\n',cluster.nprocs(),cluster.cpuspernode,cluster.codepath,executable,solution,cluster.executionpath,dirname,modelname);
    184184                        else
    185185                                fprintf(fid,'mpiexec -np %i valgrind --leak-check=full %s/%s %s %s %s\n',cluster.nprocs(),cluster.codepath,executable,solution,[cluster.executionpath '/' dirname],modelname);
  • issm/branches/trunk-larour-SLPS2022/src/m/classes/clusters/pfeuq.m

    r27224 r27228  
    165165                        fprintf(fid,'source $ISSM_DIR/etc/environment.sh\n');       %FIXME
    166166                        fprintf(fid,'cd %s/%s/\n\n',cluster.executionpath,dirname);
    167                         fprintf(fid,'/u/scicon/tools/bin/several_tries mpiexec -np %i /u/scicon/tools/bin/mbind.x -v  %s/%s %s %s/%s %s\n',cluster.concurrent_evaluations*cluster.numnodes_per_evaluation*cluster.cpuspernode+1,...
     167                        fprintf(fid,'mpiexec -np %i /u/scicon/tools/bin/mbind.x -v  %s/%s %s %s/%s %s\n',cluster.concurrent_evaluations*cluster.numnodes_per_evaluation*cluster.cpuspernode+1,...
    168168                                                                                                                                                                                                                                                                         cluster.codepath,executable,solution,cluster.executionpath,dirname,modelname);
    169169                        if ~io_gather, %concatenate the output files:
     
    177177                                if cluster.interactive==10,
    178178                                                fprintf(fid,'module unload mpi-mvapich2/1.4.1/gcc\n');
    179                                                 fprintf(fid,'/u/scicon/tools/bin/several_tries mpiexec -np %i /u/scicon/tools/bin/mbind.x -v  %s/%s %s %s/Interactive%i %s\n',cluster.concurrent_evaluations*cluster.numnodes_per_evaluation*cluster.cpuspernode+1,...
     179                                                fprintf(fid,'mpiexec -np %i /u/scicon/tools/bin/mbind.x -v  %s/%s %s %s/Interactive%i %s\n',cluster.concurrent_evaluations*cluster.numnodes_per_evaluation*cluster.cpuspernode+1,...
    180180                                                                                                                                                                                                                                                                         cluster.codepath,executable,solution,cluster.executionpath,cluster.interactive,modelname);
    181181                                else
Note: See TracChangeset for help on using the changeset viewer.