The generic scheduler interface provides flexibility to configure the interaction of the MATLAB® client, MATLAB workers, and a third-party scheduler. Use the generic scheduler interface when you want complete customization for interfacing MATLAB with your scheduler setup.
You must use the generic scheduler interface when:
Interfacing MATLAB with third-party schedulers not already supported by direct integration. Schedulers supported by direct integration include SLURM, PBS Pro, Torque, LSF, and HPC Server.
Interfacing MATLAB and third-party schedulers that do not have a shared file system between the MATLAB client and the cluster nodes.
Using a MATLAB client machine that does not have the third-party scheduler utilities installed.
The generic scheduler interface provides a means of getting tasks from your Parallel Computing Toolbox™ client session to your scheduler and cluster nodes. To achieve this, you must provide the generic scheduler with a set of plugin scripts. The scripts contain instructions specific to your cluster infrastructure, such as how to communicate with the job scheduler, and how to transfer job and task data to cluster nodes.
To support usage of the generic scheduler interface, MathWorks® provides plugin scripts for the following third-party schedulers:
Each installer provides scripts for three possible submission modes:
Shared – When the client can submit directly to the scheduler, and the client and the cluster machines have a shared file system.
Remote – When the client and cluster machines have a shared file
system, but the client machine cannot submit directly to the scheduler,
such as when the client utilities of the scheduler are not installed. In
this case, a remote host submits commands to the scheduler using the
ssh
protocol.
Nonshared – When the client and cluster machines do not have a shared
file system. This mode uses the ssh
protocol to
submit commands to the scheduler using a remote host, and it uses the
sftp
protocol to copy job and task files to the
cluster file system.
Each submission mode has its own subfolder within the installation folder.
These subfolders contain a README
file that provides specific
instructions on how to use the scripts. Before using the scripts, decide which
submission mode describes your network setup.
To run the installer, download the appropriate support package for your scheduler, and open it in your MATLAB client. The installer includes a wizard to guide you through creating a cluster profile for your cluster configuration.
If you want to customize the behavior of the plugin scripts, you can set
additional properties, such as AdditionalSubmitArgs
. For
more information, see Customize Behavior of Sample Plugin Scripts.
If your scheduler or cluster configuration is not supported by one of the support packages, it is recommended that you modify the scripts of one of these packages. For more information on how to write a set of plugin scripts for generic schedulers, see Plugin Scripts for Generic Schedulers (Parallel Computing Toolbox).
This example shows how to set up your cluster profile to use the generic scheduler interface. It shows the set up of an LSF scheduler in a network without a shared file system between the client and the cluster machines. The following diagram illustrates the cluster setup:
In this type of configuration, job data is copied from the client host running
a Windows operating system to a host on the cluster (cluster login node) running
a UNIX® operating system. From the cluster login node, the LSF
bsub
command submits the job to the scheduler. When the
job finishes, its output is copied back to the client host.
The setup must meet the following conditions:
The client node and cluster login node must support
ssh
and sftp
.
The cluster login node must be able to call the
bsub
command to submit a job to an LSF scheduler.
You can find more about this in the README
file in
the nonshared
subfolder within the installation
folder.
Download the installer for LSF from here.
Run the installer by opening the file from within your MATLAB client.
The installer downloads the plugin scripts to the nonshared
subfolder within the installation folder. The installer wizard guides you
through the steps to create and validate a cluster profile.
You can specify the number of workers to use when validating your profile. If you do not specify the number of workers in the Validation tab, then the validation process attempts to use as many workers as the value specified by the NumWorkers property on the Properties tab. You can specify a smaller number of workers to validate your configuration without occupying the whole cluster.
Start the Cluster Profile Manager from the MATLAB desktop. On the Home tab, in the Environment area, select Parallel > Manage Cluster Profiles.
Select your cluster profile in the listing.
Click the Validation tab.
Use the checkboxes to choose all tests, or a subset of the validation stages, and specify the number of workers to use when validating your profile.
Click Validate.
The Validation results tab shows the output. The following figure shows the results of a profile that passed all validation tests.
If your validation fails any stage, contact the MathWorks install support team.
If your validation passes, you have a valid profile that you can use in other parallel applications. You can make any modifications to your profile that are appropriate for your applications, such as NumWorkersRange, AttachedFiles, or AdditionalPaths.
To save your profile for other users, select the profile, and click Export. Then save your profile to a file in a convenient location. When running the Cluster Profile Manager, other users can import your profile by clicking Import.
To learn how to distribute a generic cluster profile and plugin scripts for others to use, see Distribute a Generic Cluster Profile and Plugin Scripts.
If you want to modify an existing generic cluster profile, you can configure the profile manually. If you are creating the profile for the first time and you are using one of the provided support scripts, use the installer wizard instead: Run the LSF Installer.The following steps reproduce manually the configuration performed by the installer. You can modify any of these options depending on your setup.
Start a MATLAB session on the client host.
Start the Cluster Profile Manager from the MATLAB desktop. On the Home tab, in the Environment area, select Parallel > Manage Cluster Profiles.
Create a new profile in the Cluster Profile Manager by selecting Add > Custom > Generic.
With the new profile selected in the list, select Rename and change the profile name to
InstallTest
. Press Enter.
In the Properties tab, select Edit and provide settings for the following fields:
Set the Description field to For testing installation.
Set the JobStorageLocation to
the location where you want job and task data to be stored on
the client machine (not the cluster location), for example,
C:\Temp\joblocation
.
You must not share JobStorageLocation among parallel computing products running different versions. Each version on your cluster must have its own JobStorageLocation.
Set NumWorkers to the number of workers for which you want to test your installation.
Set NumThreads to the number of threads to use on each worker.
Set ClusterMatlabRoot to the installation location of MATLAB to run on the worker machines.
If the cluster uses online licensing, set RequiresOnlineLicensing to true.
If you set
RequiresOnlineLicensing to
true
, enter your
LicenseNumber.
Set OperatingSystem to the operating system of your cluster worker machines.
Set HasSharedFilesystem to
false
. This setting indicates that the
client node and worker nodes cannot share the same data
location.
Set the PluginScriptsLocation to the
location of your plugin scripts. In this example, the location
is the nonshared
subfolder within the LSF
installation folder. As part of using the example scripts in
nonshared
submission mode, set the
properties in steps k
and
l
.
In the AdditionalProperties table, select
Add. Specify a new property with name
ClusterHost
, value
cluster-host-name
, and type
String
.
In the AdditionalProperties table, select
Add. Specify a new property
with name RemoteJobStorageLocation
, value
/network/share/joblocation
, and type
String
.
Click Done to save your cluster profile changes. The dialog box looks as follows:
To check that the profile works, perform a validation following the steps in Validate Cluster Profile and Installation.
Depending on your cluster architecture, you might need to perform additional tasks before you connect to your generic scheduler.
You can use an MPI build that differs from the one provided with Parallel Computing Toolbox. For more information about using this option with the generic scheduler interface, see Use Different MPI Builds on UNIX Systems.
The sample scripts for Grid Engine family rely on the presence of a
matlab
parallel environment. Parallel environments (PE)
are programming environments designed for parallel computing in clusters. To run
communicating jobs with MATLAB
Parallel Server™ and a Grid Engine family cluster, you must establish a
matlab
parallel environment.
Create the Parallel Environment. The following steps create the parallel environment, and then make it runnable on all queues. As a best practice, perform these steps on the head node of your cluster. Some steps require administrator access.
Download and run the installer for Grid Engine from Grid Engine family.
Navigate to the location of the relevant plugin scripts for your submission mode in the installation folder.
Modify the contents of matlabpe.template
to use
the number of slots you want and the correct location of the
startmatlabpe.sh
and
stopmatlabpe.sh
files. These files can exist
in a shared location accessible by all hosts, or you can copy them
to the same location on each host. You can also change other values
or add additional values to matlabpe.template
to
suit your cluster. For more information, refer to the
sge_pe
documentation provided with your
scheduler.
Add the matlab
parallel environment, using a
shell command such
as:
qconf -Ap matlabpe.template
Make the matlab
parallel environment runnable
on all queues:
qconf -mq all.q
pe_list
, and add
matlab
.Ensure you can submit a trivial job to the PE:
$ echo "hostname" | qsub -pe matlab 1
Use qstat
to check that the job runs correctly,
and check that the output file contains the name of the host that
ran the job. The default file name for the output file is
~/STDIN.o###
, where ###
is
the Grid Engine job number.
If you change the name of the parallel environment to something other
than matlab
, also change the submit functions.
If you are using Windows firewalls on your cluster nodes, you can add MATLAB as an allowed program.
In the following instructions, matlabroot refers to the MATLAB installation location.
Log in as a user with administrative privileges.
Execute the following script in a DOS command window:
matlabroot\toolbox\parallel\bin\addMatlabToWindowsFirewall.bat
If you are using other firewalls, you must configure these separately to add MATLAB as an allowed program.