Changes between Version 4 and Version 5 of Matlab-Slurm
- Timestamp:
- 07/15/21 13:33:20 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Matlab-Slurm
v4 v5 101 101 }}} 102 102 See [https://wiki.hpc.tulane.edu/trac/wiki/cypress/about#SLURMresourcemanager here] for the maximum walltime. 103 104 {{{ 105 >> c.AdditionalProperties.RemoteJobStorageLocation='/lustre/project/group/userid/MATLAB' 106 }}} 107 Location to store job files on the cluster. The default is your home directory but it may be better to change it to ''lustre'' file system. 108 109 ---- 110 103 111 104 112 Save changes after modifying !AdditionalProperties for the above changes to persist between MATLAB sessions. … … 211 219 {{{ 212 220 >> % If state is finished, fetch the results 213 >> m ayjob.fetchOutputs{:}221 >> myjob.fetchOutputs{:} 214 222 ans = 215 223 … … 224 232 {{{ 225 233 >> % Delete the job after results are no longer needed 226 >> m ayjob.delete234 >> myjob.delete 227 235 }}} 228 236 To retrieve a list of currently running or completed jobs, call parcluster to retrieve the cluster object. The cluster object stores an array of jobs that were run, are running, or are queued to run. This allows us to fetch the results of completed jobs. Retrieve and view the list of jobs as shown below.