Changeset 20500 for issm/trunk/src/m/classes/clusters/greenplanet.m
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/m/classes/clusters/greenplanet.m
r19105 r20500 21 21 memory = 2; 22 22 end 23 properties (SetAccess=private) 24 np=20*8; 25 % }}} 26 end 23 %}}} 27 24 methods 28 25 function cluster=greenplanet(varargin) % {{{ … … 52 49 end 53 50 %}}} 51 function numprocs=np(cluster) % {{{ 52 %compute number of processors 53 numprocs=cluster.numnodes*cluster.cpuspernode; 54 end 55 %}}} 54 56 function md = checkconsistency(cluster,md,solution,analyses) % {{{ 55 57 … … 71 73 if(isvalgrind), disp('valgrind not supported by cluster, ignoring...'); end 72 74 if(isgprof), disp('gprof not supported by cluster, ignoring...'); end 73 74 %compute number of processors75 cluster.np=cluster.numnodes*cluster.cpuspernode;76 75 77 76 %write queuing script … … 97 96 end 98 97 %}}} 99 function BuildQueueScript(cluster,dirname,modelname,solution,io_gather,isvalgrind,isgprof ) % {{{98 function BuildQueueScript(cluster,dirname,modelname,solution,io_gather,isvalgrind,isgprof,isdakota) % {{{ 100 99 101 100 if(isvalgrind), disp('valgrind not supported by cluster, ignoring...'); end 102 101 if(isgprof), disp('gprof not supported by cluster, ignoring...'); end 103 102 104 %compute number of processors105 cluster.np=cluster.numnodes*cluster.cpuspernode;106 107 103 %write queuing script 108 104 fid=fopen([modelname '.queue'],'w'); 109 fprintf(fid,'#PBS -S /bin/bash\n'); 110 fprintf(fid,'#PBS -N %s\n',modelname); 111 fprintf(fid,'#PBS -q %s \n',cluster.queue); 112 fprintf(fid,'#PBS -l nodes=%i:ppn=%i\n',cluster.numnodes, ... 113 cluster.cpuspernode); 114 fprintf(fid,'#PBS -l walltime=%i\n',cluster.time*60); %walltime is in seconds. 115 fprintf(fid,'#PBS -l mem=%igb\n',cluster.memory); 116 fprintf(fid,'#PBS -m bea\n'); 117 fprintf(fid,'#PBS -M mmorligh@uci.edu\n'); 118 fprintf(fid,'#PBS -o %s.outlog \n',modelname); 119 fprintf(fid,'#PBS -e %s.errlog \n\n',modelname); 105 fprintf(fid,'#!/bin/bash\n'); 106 fprintf(fid,'#SBATCH --job-name=%s\n',modelname); 107 fprintf(fid,'#SBATCH -p %s \n',cluster.queue); 108 fprintf(fid,'#SBATCH -N %i -n %i\n',cluster.numnodes,cluster.cpuspernode); 109 fprintf(fid,'#SBATCH --time=%i\n',cluster.time*60); %walltime is in seconds. 110 fprintf(fid,'#SBATCH --mem-per-cpu=%igb\n',cluster.memory); 111 fprintf(fid,'#SBATCH -o %s.outlog \n',modelname); 112 fprintf(fid,'#SBATCH -e %s.errlog \n\n',modelname); 120 113 fprintf(fid,'export ISSM_DIR="%s/../"\n',cluster.codepath); %FIXME 121 114 fprintf(fid,'source $ISSM_DIR/etc/environment.sh\n'); %FIXME … … 141 134 end 142 135 end %}}} 143 function LaunchQueueJob(cluster,modelname,dirname,filelist)% {{{136 function UploadQueueJob(cluster,modelname,dirname,filelist)% {{{ 144 137 145 138 %compress the files into one zip. … … 156 149 issmscpout(cluster.name,cluster.executionpath,cluster.login,cluster.port,{[dirname '.tar.gz']}); 157 150 151 end %}}} 152 function LaunchQueueJob(cluster,modelname,dirname,filelist,restart)% {{{ 153 158 154 disp('launching solution sequence on remote cluster'); 159 launchcommand=['cd ' cluster.executionpath ' && rm -rf ./' dirname ' && mkdir ' dirname ... 160 ' && cd ' dirname ' && mv ../' dirname '.tar.gz ./ && tar -zxf ' dirname '.tar.gz && hostname && qsub ' modelname '.queue ']; 155 if ~isempty(restart) 156 launchcommand=['cd ' cluster.executionpath ' && cd ' dirname ' && hostname && qsub ' modelname '.queue ']; 157 else 158 launchcommand=['cd ' cluster.executionpath ' && rm -rf ./' dirname ' && mkdir ' dirname ... 159 ' && cd ' dirname ' && mv ../' dirname '.tar.gz ./ && tar -zxf ' dirname '.tar.gz && hostname && qsub ' modelname '.queue ']; 160 end 161 161 issmssh(cluster.name,cluster.login,cluster.port,launchcommand); 162 162 end %}}}
Note:
See TracChangeset
for help on using the changeset viewer.