Changes between Version 5 and Version 6 of Matlab-Slurm


Ignore:
Timestamp:
07/12/22 19:20:31 (2 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Matlab-Slurm

    v5 v6  
    5151See [https://www.mathworks.com/help/matlab/ref/userpath.html here] to view or change default user work folder on MATLAB.
    5252
     53
     54> ***If your local Matlab version is newer than 2020a, you need to modify 'configCluster.m' file.***
     55>
     56> {{{
     57> % The version of MATLAB being supported
     58> release = ['R' version('-release')];
     59> release = 'R2020a' # force to r2020a
     60> }}}
     61
    5362==== Run the configCluster.m Script to Create a Cluster Profile ====
    5463Configure MATLAB to run parallel jobs on your cluster by calling '''configCluster'''.  This only needs to be called '''once''' per version of MATLAB.
     
    152161>> p.delete
    153162}}}
     163 
     164*** If you get a pop-up window 'Use identity file to login to cypress.tulane.edu', press 'NO' ***
     165
    154166
    155167== INDEPENDENT BATCH JOB ==
     
    257269}}}
    258270
    259 === Running Parallel Job ==
     271=== Running Parallel Job ===
    260272Users can also submit parallel workflows with the batch command.  Let’s use the following example for a parallel job, which is saved as {{{parallel_example.m}}} that uses the '''parfor''' statement to parallelize the '''for''' loop
    261273