Differences between revisions 4 and 5
Revision 4 as of 2021-08-04 15:31:37
Size: 922
Editor: jbjohnston
Comment:
Revision 5 as of 2021-08-04 15:35:24
Size: 1391
Editor: jbjohnston
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:

== Initial Cluster Configuration ==
In order to use parallel work and batch modes it is necessary to import cluster configuration settings into your MATLAB profile the first time you run it.

Please use the following:
{{{
module load MATLAB
matlab -nodisplay
>>configCluster
}}}

Note that if you run the "configCluster" MATLAB command more than once, it will erase and regenerate your cluster profile information, so it is only necessary to do this once.

MATLAB

Overview

Oakland University has obtained a campus wide license (CWL) for MATLAB. This permits any user to run MATLAB on Matilda without special permission or license files. This page describes some of the ways in which MATLAB can be run on the cluster.

Initial Cluster Configuration

In order to use parallel work and batch modes it is necessary to import cluster configuration settings into your MATLAB profile the first time you run it.

Please use the following:

module load MATLAB
matlab -nodisplay
>>configCluster

Note that if you run the "configCluster" MATLAB command more than once, it will erase and regenerate your cluster profile information, so it is only necessary to do this once.

Interactively Scheduled

A scheduled interactive job can be run on one of the cluster nodes using something like the following:

srun -N 1 -c 1 -t 30:00 --pty /bin/bash --login

Once the session has started, simply load MATLAB and launch the application:

module load MATLAB
matlab -nodisplay

Please see our documentation for more information on scheduling interactive jobs.

Interactive Parallel


CategoryHPC