Changeset 17049
- Timestamp:
- 12/23/13 13:38:28 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/waitonlock.m
r16112 r17049 16 16 timelimit = md.settings.waitonlock; 17 17 cluster = md.cluster; 18 lockfilename = [executionpath '/' md.private.runtimename '/' md.miscellaneous.name '.lock']; 19 logfilename = [executionpath '/' md.private.runtimename '/' md.miscellaneous.name '.outlog']; 18 19 if ~isa(cluster,'generic') & cluster.interactive, 20 lockfilename = [executionpath '/Interactive' num2str(cluster.interactive) '/' md.miscellaneous.name '.lock']; 21 logfilename = [executionpath '/Interactive' num2str(cluster.interactive) '/' md.miscellaneous.name '.outlog']; 22 else 23 lockfilename = [executionpath '/' md.private.runtimename '/' md.miscellaneous.name '.lock']; 24 logfilename = [executionpath '/' md.private.runtimename '/' md.miscellaneous.name '.outlog']; 25 end 26 20 27 21 28 %If we are using the generic cluster in interactive mode, job is already complete
Note:
See TracChangeset
for help on using the changeset viewer.