How can I launch a script as an LSF job from the Matlab console?

25 Ansichten (letzte 30 Tage)
Is there a way to launch a matlab script as an LSF bjob on a specified cluster name with specific memory and CPU request settings from the matlab console? Is "batch" the command to do this? If so it seems I need to set up a cluster profile - I'm not sure how to do this or where to find the documentation for it.
Thank you,
Bill

Akzeptierte Antwort

Edric Ellis
Edric Ellis am 12 Dez. 2018
Yes, you can use the batch command to do this. You'll need Parallel Computing Toolbox installed on your desktop MATLAB client, and MATLAB Distributed Computing Server installed on the cluster.
To set up specific options for your batch submission, you should set up SubmitArguments for your cluster object. You can do this either through the "Cluster Profile Manager", or at the command-line. Here's an example, presuming you've already set up your basic profile.
myCluster = parcluster('myLSFProfile');
myCluster.SubmitArguments = '-R rusage[mem=100]';
myJob = batch(myCluster, 'myScriptName');
This will submit myJob to your LSF cluster, to run the script called myScriptName, and it will add the specified SubmitArguments to the bsub command-line.

Weitere Antworten (1)

Bill Huff
Bill Huff am 14 Dez. 2018
Thank you very much for the reply Edric
I did get a bit stuck on the LSF cluster setup. I think I need someone with a big more CAD / IT expertise than I have to help me with it. I'll start looking for that support and let you know how it goes.
Thank you very much and have a great day,
Bill Huff

Kategorien

Mehr zu Cluster Configuration finden Sie in Help Center und File Exchange

Produkte


Version

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by