Changes between Version 6 and Version 7 of Matlab-Slurm
- Timestamp:
- 01/18/23 11:46:18 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Matlab-Slurm
v6 v7 34 34 35 35 === Prerequisites === 36 * You need to have MATLAB installed on your laptop/desktop thatmust be the same version of MATLAB on Cypress (r2020a or later).36 * You need to have MATLAB installed on your laptop/desktop which must be the same version of MATLAB on Cypress (r2020a or later). 37 37 * You must have the Matlab '''Parallel Computing Toolbox''' installed. To see what toolboxes are installed, type the '''ver''' command in the Matlab command window. You should see '''Parallel Computing Toolbox''' listed. 38 38 * Make sure you have an account on Cypress and can ''ssh'' to Cypress from your local laptop/desktop. 39 39 40 40 === Installation and Configuration === 41 In order to submit MATLAB jobs to Cypress from your laptop/desktop, you need to install acustom Matlab plugin scripts that are configured to interact with the Slurm job scheduler on Cypress. Use the link below to download the script package to your laptop/desktop.41 In order to submit MATLAB jobs to Cypress from your laptop/desktop, you need to install custom Matlab plugin scripts that are configured to interact with the Slurm job scheduler on Cypress. Use the link below to download the script package to your laptop/desktop. 42 42 43 43 [https://wiki.hpc.tulane.edu/trac/attachment/wiki/Matlab-Slurm/TU.nonshared.R2021a.zip TU.nonshared.R2021a.zip] … … 49 49 }}} 50 50 51 See [https://www.mathworks.com/help/matlab/ref/userpath.html here] to view or change default user work folder on MATLAB.51 See [https://www.mathworks.com/help/matlab/ref/userpath.html here] to view or change the default user work folder on MATLAB. 52 52 53 53 … … 67 67 }}} 68 68 69 Submission to theCypress requires SSH credentials. You will be prompted for your ssh username and password or identity file (private key). The username and location of the private key will be stored in MATLAB for future sessions.69 Submission to Cypress requires SSH credentials. You will be prompted for your ssh username and password or identity file (private key). The username and location of the private key will be stored in MATLAB for future sessions. 70 70 71 71 … … 140 140 141 141 == INTERACTIVE JOBS - MATLAB client on Cypress == 142 Note this is for '''MATLAB client on Cypress'''. 143 142 144 To run an interactive pool job on the cluster, continue to use parpool as you’ve done before. 143 145 {{{ … … 198 200 }}} 199 201 202 *** If you get a pop-up window 'Use identity file to login to cypress.tulane.edu', press 'NO' *** 203 200 204 {{{ 201 205 >> % Wait for the job to finish. … … 297 301 >> myjob = batch(c,'parallel_example','pool', 8, 'AutoAddClientPath',false) 298 302 }}} 303 304 *** If you get a pop-up window 'Use identity file to login to cypress.tulane.edu', press 'NO' *** 299 305 300 306 {{{