Changes between Version 4 and Version 5 of Matlab-Slurm


Ignore:
Timestamp:
07/15/21 13:33:20 (3 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Matlab-Slurm

    v4 v5  
    101101}}}
    102102See [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}}}
     107Location 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
    103111
    104112Save changes after modifying !AdditionalProperties for the above changes to persist between MATLAB sessions.
     
    211219{{{
    212220>> % If state is finished, fetch the results
    213 >> mayjob.fetchOutputs{:}
     221>> myjob.fetchOutputs{:}
    214222ans =
    215223
     
    224232{{{
    225233>> % Delete the job after results are no longer needed
    226 >> mayjob.delete
     234>> myjob.delete
    227235}}}
    228236To 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.