Changeset 227
- Timestamp:
- 05/05/09 06:16:36 (16 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/loadresultsfromcluster.m
r114 r227 5 5 % md=loadresultsfromcluster(md,solutiontype); 6 6 7 %Get issm.rc location8 issm_rc_location=which('issm.rc');7 %Get cluster.rc location 8 cluster_rc_location=which('cluster.rc'); 9 9 10 10 %Figure out parameters for this particular cluster 11 [codepath,executionpath]= ProcessParallelParametersFromCieloRc(md.cluster,issm_rc_location);11 [codepath,executionpath]=ClusterParameters(md.cluster,cluster_rc_location); 12 12 13 13 %if we are running locally, no need to call ssh to recover the logs and results. We figure out by comparing the -
issm/trunk/src/m/classes/public/peek.m
r114 r227 7 7 % See also: QueueJobPeek 8 8 9 %Get issm.rc location10 issm_rc_location=which('issm.rc');9 %Get cluster.rc location 10 cluster_rc_location=which('cluster.rc'); 11 11 12 12 %Figure out parameters for this particular cluster 13 [codepath,executionpath]= ProcessParallelParametersFromCieloRc(md.cluster,issm_rc_location);13 [codepath,executionpath]=ClusterParameters(md.cluster,cluster_rc_location); 14 14 15 15 %peek at the queued job -
issm/trunk/src/m/classes/public/preparerun.m
r114 r227 20 20 end 21 21 22 %Get issm.rc location23 issm_rc_location=which('issm.rc');22 %Get cluster.rc location 23 cluster_rc_location=which('cluster.rc'); 24 24 25 25 %Figure out parameters for this particular cluster 26 [codepath,executionpath]= ProcessParallelParametersFromCieloRc(md.cluster,issm_rc_location);26 [codepath,executionpath]=ClusterParameters(md.cluster,cluster_rc_location); 27 27 28 28 %Marshall model data into a binary file. -
issm/trunk/src/m/classes/public/solveparallel.m
r114 r227 20 20 end 21 21 22 %Get issm.rc location23 issm_rc_location=which('issm.rc');22 %Get cluster.rc location 23 cluster_rc_location=which('cluster.rc'); 24 24 25 25 %Figure out parameters for this particular cluster 26 [codepath,executionpath]= ProcessParallelParametersFromCieloRc(md.cluster,issm_rc_location);26 [codepath,executionpath]=ClusterParameters(md.cluster,cluster_rc_location); 27 27 28 28 %Marshall model data into a binary file.
Note:
See TracChangeset
for help on using the changeset viewer.