Changeset 6084
- Timestamp:
- 09/29/10 18:06:34 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/clusters/pfe.m
r6074 r6084 53 53 disp(sprintf(' codepath: %s',cluster.codepath)); 54 54 disp(sprintf(' executionpath: %s',cluster.executionpath)); 55 disp(sprintf(' interactive: %i',cluster.interactive)); 55 56 end 56 57 %}}} … … 130 131 ' && cd ' md.runtimename ' && mv ../' md.runtimename '.tar.gz ./ && tar -zxf ' md.runtimename '.tar.gz && qsub ' md.name '.queue ']; 131 132 else 132 launchcommand=['cd ' cluster.executionpath '/Interactive && tar -zxf ' md.runtimename '.tar.gz'];133 launchcommand=['cd ' cluster.executionpath '/Interactive' num2str(cluster.interactive) ' && tar -zxf ' md.runtimename '.tar.gz']; 133 134 end 134 135 … … 149 150 issmscpout(cluster.name,cluster.executionpath,cluster.login,cluster.port,{[md.runtimename '.tar.gz']}); 150 151 else 151 issmscpout(cluster.name,[cluster.executionpath '/Interactive' ],cluster.login,cluster.port,{[md.runtimename '.tar.gz']});152 issmscpout(cluster.name,[cluster.executionpath '/Interactive' num2str(cluster.interactive)],cluster.login,cluster.port,{[md.runtimename '.tar.gz']}); 152 153 end 153 154 … … 178 179 directory=[cluster.executionpath '/' md.runtimename '/']; 179 180 else 180 directory=[cluster.executionpath '/Interactive /'];181 directory=[cluster.executionpath '/Interactive' num2str(cluster.interactive) '/']; 181 182 end 182 183
Note:
See TracChangeset
for help on using the changeset viewer.