Actions

Difference between revisions of "MATLAB"

From Montana Tech High Performance Computing

(Created page with "MATLAB and the Parallel Computing Toolbox is installed. The Distributed Computing Server is not installed, so calculations are limited to single compute nodes. MATLAB jobs tha...")
 
Line 1: Line 1:
 
MATLAB and the Parallel Computing Toolbox is installed. The Distributed Computing Server is not installed, so calculations are limited to single compute nodes. MATLAB jobs that do and do not use the Parallel Computing Toolbox can be submitted to [[TORQUE]] via a script containing:
 
MATLAB and the Parallel Computing Toolbox is installed. The Distributed Computing Server is not installed, so calculations are limited to single compute nodes. MATLAB jobs that do and do not use the Parallel Computing Toolbox can be submitted to [[TORQUE]] via a script containing:
  
: <code style=display:block>#!/bin/sh<br>#PBS -l nodes=1:ppn=12<br>#PBS -N MatlabJob<br>#PBS -d /home/mtech/username<br>#PBS -S /bin/bash<br>#PBS -j oe<br>#PBS -l walltime=00:15:00<br>matlab -nodesktop -nosplash -r "your_matlab_program(input_parameters);quit;"</code>
+
: <code style=display:block>#!/bin/sh<br>#PBS -l nodes=1:ppn=16<br>#PBS -N MatlabJob<br>#PBS -d /home/mtech/username<br>#PBS -S /bin/bash<br>#PBS -j oe<br>#PBS -l walltime=00:15:00<br>matlab -nodesktop -nosplash -r "your_matlab_program(input_parameters);quit;"</code>
  
 
+
Since MATLAB is multithreaded, you should request 12 ppn even if you are not using the Parallel Computing Toolbox. For parallel MATLAB jobs, the matlabpool is limited to the physical core only, that is 16 workers per compute node..  
Since MATLAB is multithreaded, you should request 12 ppn even if you are not using the Parallel Computing Toolbox. Even for parallel MATLAB jobs, the matlabpool is limited to 12 workers.  
 
  
 
Use msub to submit your job script to TORQUE.
 
Use msub to submit your job script to TORQUE.

Revision as of 13:20, 29 January 2018

MATLAB and the Parallel Computing Toolbox is installed. The Distributed Computing Server is not installed, so calculations are limited to single compute nodes. MATLAB jobs that do and do not use the Parallel Computing Toolbox can be submitted to TORQUE via a script containing:

#!/bin/sh
#PBS -l nodes=1:ppn=16
#PBS -N MatlabJob
#PBS -d /home/mtech/username
#PBS -S /bin/bash
#PBS -j oe
#PBS -l walltime=00:15:00
matlab -nodesktop -nosplash -r "your_matlab_program(input_parameters);quit;"

Since MATLAB is multithreaded, you should request 12 ppn even if you are not using the Parallel Computing Toolbox. For parallel MATLAB jobs, the matlabpool is limited to the physical core only, that is 16 workers per compute node..

Use msub to submit your job script to TORQUE.

msub matlabjob

where matlabjob contains the above script updated with your program and username info.

If you wish to run MATLAB interactively without the Desktop GUI, start an interactive job on a compute node with:

msub -I -l nodes=1:ppn=12

This will return with a command prompt on a compute node, for example:

[smith@scyld Matlab]$ qsub -I -l nodes=1:ppn=12
qsub: waiting for job 4007.scyld.localdomain to start
qsub: job 4007.scyld.localdomain ready

[smith@n0 ~]$

The MATLAB Desktop GUI is currently limited to the management node. You will need to either use NX or run an xserver. Please respect other users and avoid long computational runs on the management node if other users are on the system.